mirror of
https://github.com/PixelExperience-Devices/device_xiaomi_sm6250-common.git
synced 2025-05-01 11:37:17 +09:00
* This libinit has been made to commonize device variants props handling [dereference23: Adapt for Xiaomi SM6250] Signed-off-by: Alexander Winkowski <dereference23@outlook.com> Change-Id: Iab68ff451ab1d6e861fb4cda4ef07fad3123ecde
24 lines
479 B
C++
24 lines
479 B
C++
/*
|
|
* Copyright (C) 2021 The LineageOS Project
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef LIBINIT_DALVIK_HEAP_H
|
|
#define LIBINIT_DALVIK_HEAP_H
|
|
|
|
#include <string>
|
|
|
|
typedef struct dalvik_heap_info {
|
|
std::string heapstartsize;
|
|
std::string heapgrowthlimit;
|
|
std::string heapsize;
|
|
std::string heapminfree;
|
|
std::string heapmaxfree;
|
|
std::string heaptargetutilization;
|
|
} dalvik_heap_info_t;
|
|
|
|
void set_dalvik_heap(void);
|
|
|
|
#endif // LIBINIT_DALVIK_HEAP_H
|