X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;ds=sidebyside;f=KernelLand%2FKernel%2Finclude%2Fposix_signals.h;h=539ffcdfc2e460b904168203c7b2f4f49cd20aef;hb=9eadc33399e705035c33e8434a9644d91e44ed44;hp=b200634d14cb5134f5dda689c1a9338f1b055dc4;hpb=8a854ac508a279317fc5f4d898134d83faad8b3f;p=tpg%2Facess2.git diff --git a/KernelLand/Kernel/include/posix_signals.h b/KernelLand/Kernel/include/posix_signals.h index b200634d..539ffcdf 100644 --- a/KernelLand/Kernel/include/posix_signals.h +++ b/KernelLand/Kernel/include/posix_signals.h @@ -7,29 +7,7 @@ #define SIG_DFL NULL -enum eSignals { - SIGNONE = 0, // No signal - SIGHUP = 1, - SIGINT = 2, // C - SIGQUIT = 3, // POSIX - SIGILL = 4, // C - SIGTRAP = 5, // POSIX - SIGABRT = 6, // C? - SIGBUS = 7, // ? - SIGFPE = 8, // C - SIGKILL = 9, // POSIX - SIGUSR1 = 10, - SIGSEGV = 11, // C - SIGUSR2 = 12, - SIGPIPE = 13, // - SIGALRM = 14, - SIGTERM = 15, - _SIG16 = 16, - SIGCHLD = 17, - SIGCONT = 18, - SIGSTOP = 19, - NSIGNALS -}; +#include "../../../Usermode/Libraries/libc.so_src/include_exp/signal_list.h" extern void Threads_PostSignal(int SigNum); extern void Threads_SignalGroup(tPGID PGID, int SignalNum);