mirror of
https://github.com/Zeal-Operating-System/ZealOS.git
synced 2024-12-25 23:10:32 +00:00
Merge branch 'Slapparoo-malloc-freeall'
This commit is contained in:
commit
bddebe8e44
2 changed files with 10 additions and 1 deletions
|
@ -555,6 +555,7 @@ public extern U8 *ReAlloc( U8 *src, U64 size, CTask *mem_task=NU
|
|||
public _extern _MHEAP_CTRL CHeapCtrl *MHeapCtrl( U8 *src);
|
||||
public _extern _MSIZE I64 MSize( U8 *src); //size of heap object
|
||||
public _extern _MSIZE2 I64 MSize2( U8 *src); //Internal size
|
||||
public extern U0 FreeAll(...); //Free all pointers passed
|
||||
|
||||
#help_index "Memory/HeapCtrl"
|
||||
public extern U0 HeapCtrlDel( CHeapCtrl *hc);
|
||||
|
|
|
@ -504,3 +504,11 @@ U8 *SysStrNew(U8 *buf)
|
|||
{//Alloc copy of string in System task's heap.
|
||||
return StrNew(buf, sys_task);
|
||||
}
|
||||
|
||||
U0 FreeAll(...)
|
||||
{// Free all pointers passed
|
||||
U64 cur_arg = 0;
|
||||
|
||||
while (argc--)
|
||||
Free(argv[cur_arg++]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue