comparison src/thread/pth/SDL_systhread.c @ 1659:14717b52abc0 SDL-1.3

Merge trunk-1.3-3
author Sam Lantinga <slouken@libsdl.org>
date Wed, 17 May 2006 08:18:28 +0000
parents d910939febfa
children 782fd950bd46 c121d94672cb a1b03ba2fcd0
comparison
equal deleted inserted replaced
1658:e49147870aac 1659:14717b52abc0
25 * GNU pth threads 25 * GNU pth threads
26 * 26 *
27 * Patrice Mandin 27 * Patrice Mandin
28 */ 28 */
29 29
30 #include "SDL_thread.h"
31 #include "../SDL_systhread.h"
32
33 #include <pth.h> 30 #include <pth.h>
34 #include <signal.h> 31 #include <signal.h>
32
33 #include "SDL_thread.h"
34 #include "../SDL_thread_c.h"
35 #include "../SDL_systhread.h"
35 36
36 /* List of signals to mask in the subthreads */ 37 /* List of signals to mask in the subthreads */
37 static int sig_list[] = { 38 static int sig_list[] = {
38 SIGHUP, SIGINT, SIGQUIT, SIGPIPE, SIGALRM, SIGTERM, SIGCHLD, SIGWINCH, 39 SIGHUP, SIGINT, SIGQUIT, SIGPIPE, SIGALRM, SIGTERM, SIGCHLD, SIGWINCH,
39 SIGVTALRM, SIGPROF, 0 40 SIGVTALRM, SIGPROF, 0