mirror of
https://github.com/drasko/codezero.git
synced 2026-02-21 22:33:28 +01:00
Added preliminary support for execve(). Updates to clone, fork, exit, task handling.
It turned out we used one version of kmalloc for malloc() and another for kfree()! Now fixed. Added parent-child relationship to tasks. Need to polish handling CLONE_PARENT and THREAD.
This commit is contained in:
@@ -23,6 +23,7 @@
|
||||
#include <utcb.h>
|
||||
#include <mmap.h>
|
||||
#include <test.h>
|
||||
#include <boot.h>
|
||||
|
||||
void handle_requests(void)
|
||||
{
|
||||
@@ -67,7 +68,7 @@ void handle_requests(void)
|
||||
|
||||
case L4_IPC_TAG_TASKDATA:
|
||||
/* Send runnable task information to fs0 */
|
||||
ret = send_task_data(sender);
|
||||
ret = vfs_send_task_data(sender);
|
||||
break;
|
||||
|
||||
case L4_IPC_TAG_SHMGET: {
|
||||
|
||||
Reference in New Issue
Block a user