Method Summary |
|
native public static long | calloc(long num, int sz) Allocates an array in memory with elements initialized to 0. |
native public static void | free(long mem) Deallocates or frees a memory block. |
native public static int | getpid() Get current process pid. |
native public static int | getppid() Get current process parent pid. |
native public static long | malloc(int sz) Allocates memory blocks. |
native public static boolean | memread(byte[] dst, long src, int sz) |
native public static boolean | memset(long dst, int c, int sz) |
native public static boolean | memwrite(long dst, byte[] src, int sz) |
native public static long | realloc(long mem, int sz) Reallocate memory blocks. |