2000-05-01 05:42:38 -04:00
|
|
|
/**********************************************************************
|
1999-08-13 01:45:20 -04:00
|
|
|
|
|
|
|
rubysig.h -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
$Date$
|
|
|
|
created at: Wed Aug 16 01:15:38 JST 1995
|
|
|
|
|
2003-01-16 02:34:03 -05:00
|
|
|
Copyright (C) 1993-2003 Yukihiro Matsumoto
|
2000-05-01 05:42:38 -04:00
|
|
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
1999-08-13 01:45:20 -04:00
|
|
|
#ifndef SIG_H
|
|
|
|
#define SIG_H
|
|
|
|
|
* configure.in, defines.h, dir.c, dir.h, dln.c, error.c,
eval.c, file.c, hash.c, io.c, main.c, missing.c,
process.c, ruby.c, rubysig.h, signal.c, st.c, util.c, util.h,
bcc/Makefile.sub, win32/Makefile.sub, win32/win32.h,
ext/Win32API/Win32API.c, ext/socket/getaddrinfo.c,
ext/socket/getnameinfo.c, ext/socket/socket.c,
ext/tcltklib/stubs.c
: replace "NT" with "_WIN32", add DOSISH_DRIVE_LETTER
* wince/exe.mak : delete \r at the end of lines.
* wince/mswince-ruby17.def : delete rb_obj_become
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3148 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2002-12-14 22:18:08 -05:00
|
|
|
#ifdef _WIN32
|
2000-11-14 02:10:31 -05:00
|
|
|
typedef LONG rb_atomic_t;
|
|
|
|
|
|
|
|
# define ATOMIC_TEST(var) InterlockedExchange(&(var), 0)
|
|
|
|
# define ATOMIC_SET(var, val) InterlockedExchange(&(var), (val))
|
|
|
|
# define ATOMIC_INC(var) InterlockedIncrement(&(var))
|
|
|
|
# define ATOMIC_DEC(var) InterlockedDecrement(&(var))
|
|
|
|
|
|
|
|
/* Windows doesn't allow interrupt while system calls */
|
2001-02-17 10:17:10 -05:00
|
|
|
# define TRAP_BEG do {\
|
2002-04-24 00:54:16 -04:00
|
|
|
rb_atomic_t trap_immediate = ATOMIC_SET(rb_trap_immediate, 1)
|
|
|
|
# define TRAP_END\
|
|
|
|
ATOMIC_SET(rb_trap_immediate, trap_immediate);\
|
2001-02-17 10:17:10 -05:00
|
|
|
} while (0)
|
2000-11-14 02:10:31 -05:00
|
|
|
# define RUBY_CRITICAL(statements) do {\
|
2002-05-29 06:22:19 -04:00
|
|
|
rb_w32_enter_critical();\
|
2000-11-14 02:10:31 -05:00
|
|
|
statements;\
|
2002-05-29 06:22:19 -04:00
|
|
|
rb_w32_leave_critical();\
|
2000-11-14 02:10:31 -05:00
|
|
|
} while (0)
|
2000-09-27 05:11:13 -04:00
|
|
|
#else
|
2000-11-14 02:10:31 -05:00
|
|
|
typedef int rb_atomic_t;
|
|
|
|
|
|
|
|
# define ATOMIC_TEST(var) ((var) ? ((var) = 0, 1) : 0)
|
|
|
|
# define ATOMIC_SET(var, val) ((var) = (val))
|
|
|
|
# define ATOMIC_INC(var) (++(var))
|
|
|
|
# define ATOMIC_DEC(var) (--(var))
|
|
|
|
|
2000-11-16 02:24:21 -05:00
|
|
|
# define TRAP_BEG do {\
|
|
|
|
int trap_immediate = rb_trap_immediate;\
|
2002-04-24 00:54:16 -04:00
|
|
|
rb_trap_immediate = 1
|
2000-11-16 02:24:21 -05:00
|
|
|
# define TRAP_END rb_trap_immediate = trap_immediate;\
|
|
|
|
} while (0)
|
|
|
|
|
2000-11-14 02:10:31 -05:00
|
|
|
# define RUBY_CRITICAL(statements) do {\
|
|
|
|
int trap_immediate = rb_trap_immediate;\
|
|
|
|
rb_trap_immediate = 0;\
|
|
|
|
statements;\
|
|
|
|
rb_trap_immediate = trap_immediate;\
|
|
|
|
} while (0)
|
2000-09-27 05:11:13 -04:00
|
|
|
#endif
|
2003-03-04 09:12:19 -05:00
|
|
|
RUBY_EXTERN rb_atomic_t rb_trap_immediate;
|
1999-08-13 01:45:20 -04:00
|
|
|
|
2003-03-04 09:12:19 -05:00
|
|
|
RUBY_EXTERN int rb_prohibit_interrupt;
|
2002-04-24 00:54:16 -04:00
|
|
|
#define DEFER_INTS (rb_prohibit_interrupt++)
|
|
|
|
#define ALLOW_INTS do {\
|
|
|
|
rb_prohibit_interrupt--;\
|
|
|
|
CHECK_INTS;\
|
|
|
|
} while (0)
|
|
|
|
#define ENABLE_INTS (rb_prohibit_interrupt--)
|
1999-08-13 01:45:20 -04:00
|
|
|
|
2001-05-02 00:22:21 -04:00
|
|
|
VALUE rb_with_disable_interrupt _((VALUE(*)(ANYARGS),VALUE));
|
1999-08-13 01:45:20 -04:00
|
|
|
|
2003-03-04 09:12:19 -05:00
|
|
|
RUBY_EXTERN rb_atomic_t rb_trap_pending;
|
1999-08-13 01:45:20 -04:00
|
|
|
void rb_trap_restore_mask _((void));
|
|
|
|
|
2003-03-04 09:12:19 -05:00
|
|
|
RUBY_EXTERN int rb_thread_critical;
|
1999-08-13 01:45:20 -04:00
|
|
|
void rb_thread_schedule _((void));
|
2003-12-22 03:23:55 -05:00
|
|
|
#if defined(HAVE_SETITIMER)
|
2003-03-04 09:12:19 -05:00
|
|
|
RUBY_EXTERN int rb_thread_pending;
|
2002-04-24 00:54:16 -04:00
|
|
|
# define CHECK_INTS do {\
|
|
|
|
if (!rb_prohibit_interrupt) {\
|
|
|
|
if (rb_trap_pending) rb_trap_exec();\
|
|
|
|
if (rb_thread_pending && !rb_thread_critical)\
|
|
|
|
rb_thread_schedule();\
|
|
|
|
}\
|
|
|
|
} while (0)
|
1999-08-13 01:45:20 -04:00
|
|
|
#else
|
|
|
|
/* pseudo preemptive thread switching */
|
2003-03-04 09:12:19 -05:00
|
|
|
RUBY_EXTERN int rb_thread_tick;
|
1999-08-13 01:45:20 -04:00
|
|
|
#define THREAD_TICK 500
|
2002-04-24 00:54:16 -04:00
|
|
|
#define CHECK_INTS do {\
|
|
|
|
if (!rb_prohibit_interrupt) {\
|
|
|
|
if (rb_trap_pending) rb_trap_exec();\
|
|
|
|
if (!rb_thread_critical) {\
|
|
|
|
if (rb_thread_tick-- <= 0) {\
|
|
|
|
rb_thread_tick = THREAD_TICK;\
|
|
|
|
rb_thread_schedule();\
|
|
|
|
}\
|
1999-08-13 01:45:20 -04:00
|
|
|
}\
|
|
|
|
}\
|
2002-04-24 00:54:16 -04:00
|
|
|
} while (0)
|
1999-08-13 01:45:20 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|