git://scm.lunaixsky.com
/
lunaix-os.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
feat: add signal handling support (not tested!)
[lunaix-os.git]
/
lunaix-os
/
kernel
/
asm
/
x86
/
syscall.S
diff --git
a/lunaix-os/kernel/asm/x86/syscall.S
b/lunaix-os/kernel/asm/x86/syscall.S
index 2e361967295265bd8bc900a265cfb9464b15ff98..e97cc6f1fc56a383d2bbc457a0de07814472243e 100644
(file)
--- a/
lunaix-os/kernel/asm/x86/syscall.S
+++ b/
lunaix-os/kernel/asm/x86/syscall.S
@@
-18,6
+18,9
@@
.long __lxsys_exit
.long __lxsys_wait
.long __lxsys_waitpid /* 10 */
+ .long __lxsys_sigreturn
+ .long __lxsys_sigprocmask
+ .long __lxsys_signal
2:
.rept __SYSCALL_MAX - (2b - 1b)/4
.long 0
@@
-58,6
+61,4
@@
popl %ebp
- ret
-
-
+ ret
\ No newline at end of file