mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
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
This commit is contained in:
parent
3611a29c09
commit
d2bfb39ad2
3 changed files with 39 additions and 11 deletions
11
vl.c
11
vl.c
|
@ -68,17 +68,6 @@
|
|||
#ifdef __APPLE__
|
||||
#include <SDL/SDL.h>
|
||||
#endif
|
||||
#if defined(__linux__)
|
||||
/* SDL use the pthreads and they modify sigaction. We don't
|
||||
want that. */
|
||||
#if (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2))
|
||||
extern void __libc_sigaction();
|
||||
#define sigaction(sig, act, oact) __libc_sigaction(sig, act, oact)
|
||||
#else
|
||||
extern void __sigaction();
|
||||
#define sigaction(sig, act, oact) __sigaction(sig, act, oact)
|
||||
#endif
|
||||
#endif /* __linux__ */
|
||||
#endif /* CONFIG_SDL */
|
||||
|
||||
#include "disas.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue