diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-08-03 22:09:30 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2004-08-03 22:09:30 +0000 |
commit | d2bfb39ad220a6431e366bdff72353b09f60e3db (patch) | |
tree | 78170ba5183c4745aa9f37331c22f6f41e5f5dee /osdep.c | |
parent | 3611a29c090fc74faee3ce05b8ede7287f609e44 (diff) |
use the kernel sigaction syscall to avoid relying on glibc one
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1044 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'osdep.c')
-rw-r--r-- | osdep.c | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -144,6 +144,22 @@ void *shmat(int shmid, const void *shmaddr, int shmflg) } /****************************************************************/ +/* sigaction bypassing the threads */ + +static int kernel_sigaction(int signum, const struct qemu_sigaction *act, + struct qemu_sigaction *oldact, + int sigsetsize) +{ + QEMU_SYSCALL4(rt_sigaction, signum, act, oldact, sigsetsize); +} + +int qemu_sigaction(int signum, const struct qemu_sigaction *act, + struct qemu_sigaction *oldact) +{ + return kernel_sigaction(signum, act, oldact, 8); +} + +/****************************************************************/ /* memory allocation */ //#define DEBUG_MALLOC |