Skip to content
Snippets Groups Projects
syscall.c 270 B
Newer Older
#include "kernel.h"
#include "syscall.h"

int Create (int priority, void (*code)()) {
    // assemble args into a Request
    // then call syscallHandler
    // return TaskID of new Task