comparison src/thread/pth/SDL_systhread.c @ 1826:cf7528eded83

Add missing include file
author Patrice Mandin <patmandin@gmail.com>
date Fri, 12 May 2006 16:25:04 +0000
parents d910939febfa
children 782fd950bd46 c121d94672cb a1b03ba2fcd0
comparison
equal deleted inserted replaced
1825:f255c6bee184 1826:cf7528eded83
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