Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – tendra.SVN – Blame – /branches/tendra4/src/lib/machines/linux/80x86/include/linux/signal.h – Rev 2

Subversion Repositories tendra.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 7u83 1
#ifndef __HACKED_LINUX_SIGNAL_INCLUDED
2
#define __HACKED_LINUX_SIGNAL_INCLUDED
3
 
4
#ifdef __BUILDING_LIBS
5
#define sigaction	sigaction_wrong
6
#endif
7
 
8
#include_next <linux/signal.h>
9
 
10
#ifdef __BUILDING_LIBS
11
#undef sigaction
12
struct sigaction {
13
    __sighandler_t sa_handler ;
14
    sigset_t sa_mask ;
15
    int sa_flags ;		/* This is what it should be */
16
    void ( *sa_restorer ) ( void ) ;
17
} ;
18
#endif
19
 
20
#endif