![]() |
ZenWINX Architecture - Reference Manual - Guides |
|
Functions | |
void *__stdcall | winx_virtual_alloc (SIZE_T size) |
Allocates a block of virtual memory. | |
void __stdcall | winx_virtual_free (void *addr, SIZE_T size) |
Releases a block of virtual memory. | |
void *__stdcall | winx_heap_alloc (SIZE_T size) |
Allocates a block of memory from the global growable heap. | |
void __stdcall | winx_heap_free (void *addr) |
Frees a previously allocated memory block. |
void* __stdcall winx_virtual_alloc | ( | SIZE_T | size | ) |
Allocates a block of virtual memory.
[in] | size | the size of the block to be allocated, in bytes. Note that the allocated block may be bigger than the requested size. |
Definition at line 47 of file mem.c.
Referenced by winx_dbg_print().
void __stdcall winx_virtual_free | ( | void * | addr, | |
SIZE_T | size | |||
) |
Releases a block of virtual memory.
[in] | addr | the memory block pointer. |
[in] | size | the size of the block to be released, in bytes. |
Definition at line 62 of file mem.c.
Referenced by winx_dbg_print().
void* __stdcall winx_heap_alloc | ( | SIZE_T | size | ) |
Allocates a block of memory from the global growable heap.
size | the size of the block to be allocated, in bytes. |
Definition at line 72 of file mem.c.
Referenced by winx_dbg_print_ex(), winx_fopen(), winx_get_drive_type(), winx_get_filesystem_name(), winx_get_volume_size(), winx_get_windows_boot_options(), winx_list_insert_item(), winx_printf(), winx_prompt(), and winx_unregister_boot_exec_command().
void __stdcall winx_heap_free | ( | void * | addr | ) |
Frees a previously allocated memory block.
[in] | addr | the memory block pointer. |
Definition at line 82 of file mem.c.
Referenced by winx_dbg_print_ex(), winx_fclose(), winx_get_drive_type(), winx_get_filesystem_name(), winx_get_volume_size(), winx_get_windows_boot_options(), winx_list_destroy(), winx_list_remove_item(), winx_printf(), winx_prompt(), winx_register_boot_exec_command(), winx_unregister_boot_exec_command(), and winx_windows_in_safe_mode().