diff options
author | Andreas Kling <awesomekling@gmail.com> | 2018-11-02 13:14:25 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2018-11-02 13:14:25 +0100 |
commit | 621217ffeb9bddec866ad8895bd01973977f2848 (patch) | |
tree | a093956e51c52f13cc0f7003e278bc255f83acac /Kernel/Syscall.h | |
parent | d8f0dd6f3b36987c2a8021e16341dda16cbb7ab1 (diff) | |
download | serenity-621217ffeb9bddec866ad8895bd01973977f2848.zip |
Add tcsetpgrp()+tcgetpgrp().
One more step on the path to being able to ^C a runaway process. :^)
Diffstat (limited to 'Kernel/Syscall.h')
-rw-r--r-- | Kernel/Syscall.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Kernel/Syscall.h b/Kernel/Syscall.h index f35658bf2a..97116c16f9 100644 --- a/Kernel/Syscall.h +++ b/Kernel/Syscall.h @@ -45,6 +45,8 @@ enum Function { PosixGetpgid = 0x2013, PosixSetpgid = 0x2014, PosixGetpgrp = 0x2015, + PosixTcsetpgrp = 0x2016, + PosixTcgetpgrp = 0x2017, }; void initialize(); |