2000-02-18 03:38:33 +08:00
|
|
|
/* sigproc.h
|
|
|
|
|
2002-01-14 04:03:03 +08:00
|
|
|
Copyright 1997, 1998, 2000, 2001, 2002 Red Hat, Inc.
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2002-06-02 14:07:01 +08:00
|
|
|
#ifndef _SIGPROC_H
|
|
|
|
#define _SIGPROC_H
|
2000-09-08 10:56:55 +08:00
|
|
|
#include <signal.h>
|
|
|
|
|
2000-10-28 13:41:44 +08:00
|
|
|
#define EXIT_SIGNAL 0x010000
|
2000-02-18 03:38:33 +08:00
|
|
|
#define EXIT_REPARENTING 0x020000
|
|
|
|
#define EXIT_NOCLOSEALL 0x040000
|
|
|
|
|
|
|
|
enum procstuff
|
|
|
|
{
|
|
|
|
PROC_ADDCHILD = 1, // add a new subprocess to list
|
2001-03-11 07:37:50 +08:00
|
|
|
PROC_CHILDTERMINATED = 2, // a child died
|
|
|
|
PROC_CLEARWAIT = 3, // clear all waits - signal arrived
|
|
|
|
PROC_WAIT = 4, // setup for wait() for subproc
|
|
|
|
PROC_NOTHING = 5 // nothing, really
|
2000-02-18 03:38:33 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct struct_waitq
|
|
|
|
{
|
|
|
|
int pid;
|
|
|
|
int options;
|
|
|
|
int status;
|
|
|
|
HANDLE ev;
|
|
|
|
void *rusage; /* pointer to potential rusage */
|
|
|
|
struct struct_waitq *next;
|
|
|
|
HANDLE thread_ev;
|
|
|
|
} waitq;
|
|
|
|
|
2000-05-17 13:49:51 +08:00
|
|
|
struct sigthread
|
|
|
|
{
|
|
|
|
DWORD id;
|
|
|
|
DWORD frame;
|
2000-11-07 07:12:05 +08:00
|
|
|
CRITICAL_SECTION lock;
|
2001-03-07 14:19:34 +08:00
|
|
|
LONG winapi_lock;
|
2001-04-26 03:11:37 +08:00
|
|
|
BOOL exception;
|
2001-03-07 14:19:34 +08:00
|
|
|
bool get_winapi_lock (int test = 0);
|
|
|
|
void release_winapi_lock ();
|
2000-05-19 05:30:30 +08:00
|
|
|
void init (const char *s);
|
2000-05-17 13:49:51 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class sigframe
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
sigthread *st;
|
2001-10-31 10:58:38 +08:00
|
|
|
inline bool unregister ()
|
2001-04-01 08:06:17 +08:00
|
|
|
{
|
2001-09-12 09:56:32 +08:00
|
|
|
if (!st)
|
|
|
|
return 0;
|
|
|
|
EnterCriticalSection (&st->lock);
|
|
|
|
st->frame = 0;
|
|
|
|
st->exception = 0;
|
|
|
|
st->release_winapi_lock ();
|
|
|
|
LeaveCriticalSection (&st->lock);
|
|
|
|
st = NULL;
|
|
|
|
return 1;
|
2001-04-01 08:06:17 +08:00
|
|
|
}
|
2000-05-17 13:49:51 +08:00
|
|
|
|
|
|
|
public:
|
2001-10-31 10:58:38 +08:00
|
|
|
inline void set (sigthread &t, DWORD ebp, bool is_exception = 0)
|
2000-05-17 13:49:51 +08:00
|
|
|
{
|
2001-03-07 14:19:34 +08:00
|
|
|
DWORD oframe = t.frame;
|
2000-05-17 13:49:51 +08:00
|
|
|
st = &t;
|
2000-09-08 11:12:13 +08:00
|
|
|
t.frame = ebp;
|
2001-04-26 03:11:37 +08:00
|
|
|
t.exception = is_exception;
|
2001-03-07 14:19:34 +08:00
|
|
|
if (!oframe)
|
|
|
|
t.get_winapi_lock ();
|
2000-05-17 13:49:51 +08:00
|
|
|
}
|
2003-09-09 11:11:31 +08:00
|
|
|
inline void init (sigthread &t, DWORD ebp = (DWORD) __builtin_frame_address (0), bool is_exception = 0)
|
2000-05-17 13:49:51 +08:00
|
|
|
{
|
2003-09-09 11:11:31 +08:00
|
|
|
if (is_exception || (!t.frame && t.id == GetCurrentThreadId ()))
|
|
|
|
set (t, ebp, is_exception);
|
2000-05-17 13:49:51 +08:00
|
|
|
else
|
|
|
|
st = NULL;
|
|
|
|
}
|
2001-11-03 11:32:27 +08:00
|
|
|
|
|
|
|
sigframe (): st (NULL) {}
|
|
|
|
sigframe (sigthread &t, DWORD ebp = (DWORD) __builtin_frame_address (0)) {init (t, ebp);}
|
2000-05-17 13:49:51 +08:00
|
|
|
~sigframe ()
|
|
|
|
{
|
2001-04-01 08:06:17 +08:00
|
|
|
unregister ();
|
2000-05-17 13:49:51 +08:00
|
|
|
}
|
2001-04-01 08:06:17 +08:00
|
|
|
|
|
|
|
int call_signal_handler ();
|
2000-05-17 13:49:51 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
extern sigthread mainthread;
|
2000-02-18 03:38:33 +08:00
|
|
|
extern HANDLE signal_arrived;
|
2002-08-18 12:13:57 +08:00
|
|
|
extern HANDLE sigCONT;
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
BOOL __stdcall my_parent_is_alive ();
|
2003-08-19 12:10:42 +08:00
|
|
|
extern "C" int __stdcall sig_dispatch_pending ();
|
2000-02-18 03:38:33 +08:00
|
|
|
extern "C" void __stdcall set_process_mask (sigset_t newmask);
|
2001-06-25 05:57:50 +08:00
|
|
|
extern "C" void __stdcall reset_signal_arrived ();
|
2003-08-29 10:59:06 +08:00
|
|
|
int __stdcall sig_handle (int) __attribute__ ((regparm (1)));
|
|
|
|
void __stdcall sig_clear (int) __attribute__ ((regparm (1)));
|
|
|
|
void __stdcall sig_set_pending (int) __attribute__ ((regparm (1)));
|
2000-02-18 03:38:33 +08:00
|
|
|
int __stdcall handle_sigsuspend (sigset_t);
|
|
|
|
|
2003-08-29 10:59:06 +08:00
|
|
|
int __stdcall proc_subproc (DWORD, DWORD) __attribute__ ((regparm (2)));
|
2000-07-30 00:24:59 +08:00
|
|
|
|
2000-08-12 13:35:42 +08:00
|
|
|
class _pinfo;
|
2000-02-18 03:38:33 +08:00
|
|
|
void __stdcall proc_terminate ();
|
|
|
|
void __stdcall sigproc_init ();
|
|
|
|
void __stdcall subproc_init ();
|
|
|
|
void __stdcall sigproc_terminate ();
|
2000-11-12 12:57:41 +08:00
|
|
|
BOOL __stdcall proc_exists (_pinfo *) __attribute__ ((regparm(1)));
|
|
|
|
BOOL __stdcall pid_exists (pid_t) __attribute__ ((regparm(1)));
|
2001-04-28 02:50:59 +08:00
|
|
|
int __stdcall sig_send (_pinfo *, int, DWORD ebp = (DWORD) __builtin_frame_address (0),
|
|
|
|
bool exception = 0) __attribute__ ((regparm(3)));
|
2000-04-08 12:13:12 +08:00
|
|
|
void __stdcall signal_fixup_after_fork ();
|
2003-03-20 09:34:53 +08:00
|
|
|
void __stdcall signal_fixup_after_exec ();
|
2002-08-12 03:19:29 +08:00
|
|
|
void __stdcall wait_for_sigthread ();
|
2003-09-01 10:05:32 +08:00
|
|
|
void __stdcall sigalloc ();
|
2000-02-18 03:38:33 +08:00
|
|
|
|
|
|
|
extern char myself_nowait_dummy[];
|
|
|
|
extern char myself_nowait_nonmain_dummy[];
|
|
|
|
|
2002-11-22 12:43:47 +08:00
|
|
|
#define WAIT_SIG_PRIORITY THREAD_PRIORITY_TIME_CRITICAL
|
2000-02-18 03:38:33 +08:00
|
|
|
|
2000-07-30 00:24:59 +08:00
|
|
|
#define myself_nowait ((_pinfo *)myself_nowait_dummy)
|
|
|
|
#define myself_nowait_nonmain ((_pinfo *)myself_nowait_nonmain_dummy)
|
2002-06-02 14:07:01 +08:00
|
|
|
#endif /*_SIGPROC_H*/
|