Implemented basic support for function pointers
This commit is contained in:
@ -22,6 +22,10 @@ munmap(address Pointer, length Int) -> Int {
|
||||
return syscall(11, address, length)
|
||||
}
|
||||
|
||||
nanosleep(requested Pointer, remaining Pointer) -> Int {
|
||||
return syscall(35, requested, remaining)
|
||||
}
|
||||
|
||||
clone(flags Int, stack Pointer) -> Int {
|
||||
return syscall(56, flags, stack)
|
||||
}
|
||||
|
Reference in New Issue
Block a user