Files
device_xiaomi_rosemary/libinit/include/libinit_dalvik_heap.h
Sebastiano Barezzi 4637c21025 rosemary: libinit: Import changes from sm8250-common
Change-Id: I31f1083fba0bebe5c23fcb140225bf47bc1d1c6b
2023-04-25 17:59:38 +02:00

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