| 2802 | } |
| 2803 | |
| 2804 | void KProcess::free(U32 address) { |
| 2805 | BOXEDWINE_CRITICAL_SECTION_WITH_MUTEX(heapMutex); |
| 2806 | heap.free(memory, address); |
| 2807 | } |
| 2808 | |
| 2809 | U32 KProcess::createString(KThread* thread, const BString& str) { |
| 2810 | U32 result = thread->process->alloc(thread, str.length() + 1); |
no outgoing calls
no test coverage detected