heap_release() now gets the stage2_args as well, to pass them to

platform_release_heap().


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@4966 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2003-10-07 22:48:46 +00:00
parent d1ae059dec
commit a4fab93eee

View File

@ -172,9 +172,9 @@ free_chunk::SetToAllocated(void *allocated)
void void
heap_release(void) heap_release(stage2_args *args)
{ {
platform_release_heap(sHeapBase); platform_release_heap(args, sHeapBase);
} }