2000-05-01 13:42:38 +04:00
|
|
|
/**********************************************************************
|
1999-08-13 09:45:20 +04:00
|
|
|
|
|
|
|
rubysig.h -
|
|
|
|
|
|
|
|
$Author$
|
|
|
|
$Date$
|
|
|
|
created at: Wed Aug 16 01:15:38 JST 1995
|
|
|
|
|
2003-01-16 10:34:03 +03:00
|
|
|
Copyright (C) 1993-2003 Yukihiro Matsumoto
|
2000-05-01 13:42:38 +04:00
|
|
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
2004-01-09 05:52:19 +03:00
|
|
|
#ifndef RUBYSIG_H
|
|
|
|
#define RUBYSIG_H
|
|
|
|
#include <errno.h>
|
1999-08-13 09:45:20 +04:00
|
|
|
|
* 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-15 06:18:08 +03:00
|
|
|
#ifdef _WIN32
|
2000-11-14 10:10:31 +03: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 18:17:10 +03:00
|
|
|
# define TRAP_BEG do {\
|
2004-01-03 20:08:20 +03:00
|
|
|
int saved_errno = 0;\
|
2002-04-24 08:54:16 +04:00
|
|
|
rb_atomic_t trap_immediate = ATOMIC_SET(rb_trap_immediate, 1)
|
|
|
|
# define TRAP_END\
|
2004-01-02 20:46:02 +03:00
|
|
|
ATOMIC_SET(rb_trap_immediate, trap_immediate);\
|
|
|
|
saved_errno = errno;\
|
|
|
|
CHECK_INTS;\
|
|
|
|
errno = saved_errno;\
|
2001-02-17 18:17:10 +03:00
|
|
|
} while (0)
|
2000-11-14 10:10:31 +03:00
|
|
|
# define RUBY_CRITICAL(statements) do {\
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_enter_critical();\
|
2000-11-14 10:10:31 +03:00
|
|
|
statements;\
|
2002-05-29 14:22:19 +04:00
|
|
|
rb_w32_leave_critical();\
|
2000-11-14 10:10:31 +03:00
|
|
|
} while (0)
|
2000-09-27 13:11:13 +04:00
|
|
|
#else
|
2000-11-14 10:10:31 +03: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 10:24:21 +03:00
|
|
|
# define TRAP_BEG do {\
|
2004-01-02 20:46:02 +03:00
|
|
|
int saved_errno = 0;\
|
2000-11-16 10:24:21 +03:00
|
|
|
int trap_immediate = rb_trap_immediate;\
|
2002-04-24 08:54:16 +04:00
|
|
|
rb_trap_immediate = 1
|
2000-11-16 10:24:21 +03:00
|
|
|
# define TRAP_END rb_trap_immediate = trap_immediate;\
|
2004-01-02 20:46:02 +03:00
|
|
|
saved_errno = errno;\
|
|
|
|
CHECK_INTS;\
|
|
|
|
errno = saved_errno;\
|
2000-11-16 10:24:21 +03:00
|
|
|
} while (0)
|
|
|
|
|
2000-11-14 10:10:31 +03: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 13:11:13 +04:00
|
|
|
#endif
|
2003-03-04 17:12:19 +03:00
|
|
|
RUBY_EXTERN rb_atomic_t rb_trap_immediate;
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2003-03-04 17:12:19 +03:00
|
|
|
RUBY_EXTERN int rb_prohibit_interrupt;
|
2002-04-24 08: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 09:45:20 +04:00
|
|
|
|
* bignum.c: changed `foo _((boo))' to `foo(boo)`. [ruby-dev:27056]
* defines.h, dir.c, dln.h, enumerator.c, env.h, error.c, eval.c, file.c,
gc.c, hash.c, inits.c, intern.h, io.c, lex.c, marshal.c, missing.h,
node.h, numeric.c, pack.c, process.c, re.h, ruby.c, ruby.h, rubyio.h,
rubysig.h, signal.c, sprintf.c, st.h, string.c, struct.c, time.c,
util.c, util.h, variable.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-14 10:32:32 +04:00
|
|
|
VALUE rb_with_disable_interrupt(VALUE(*)(ANYARGS),VALUE);
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2003-03-04 17:12:19 +03:00
|
|
|
RUBY_EXTERN rb_atomic_t rb_trap_pending;
|
* bignum.c: changed `foo _((boo))' to `foo(boo)`. [ruby-dev:27056]
* defines.h, dir.c, dln.h, enumerator.c, env.h, error.c, eval.c, file.c,
gc.c, hash.c, inits.c, intern.h, io.c, lex.c, marshal.c, missing.h,
node.h, numeric.c, pack.c, process.c, re.h, ruby.c, ruby.h, rubyio.h,
rubysig.h, signal.c, sprintf.c, st.h, string.c, struct.c, time.c,
util.c, util.h, variable.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-14 10:32:32 +04:00
|
|
|
void rb_trap_restore_mask(void);
|
1999-08-13 09:45:20 +04:00
|
|
|
|
2003-03-04 17:12:19 +03:00
|
|
|
RUBY_EXTERN int rb_thread_critical;
|
* bignum.c: changed `foo _((boo))' to `foo(boo)`. [ruby-dev:27056]
* defines.h, dir.c, dln.h, enumerator.c, env.h, error.c, eval.c, file.c,
gc.c, hash.c, inits.c, intern.h, io.c, lex.c, marshal.c, missing.h,
node.h, numeric.c, pack.c, process.c, re.h, ruby.c, ruby.h, rubyio.h,
rubysig.h, signal.c, sprintf.c, st.h, string.c, struct.c, time.c,
util.c, util.h, variable.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9155 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2005-09-14 10:32:32 +04:00
|
|
|
void rb_thread_schedule(void);
|
2003-12-22 11:23:55 +03:00
|
|
|
#if defined(HAVE_SETITIMER)
|
2003-03-04 17:12:19 +03:00
|
|
|
RUBY_EXTERN int rb_thread_pending;
|
2002-04-24 08: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 09:45:20 +04:00
|
|
|
#else
|
|
|
|
/* pseudo preemptive thread switching */
|
2003-03-04 17:12:19 +03:00
|
|
|
RUBY_EXTERN int rb_thread_tick;
|
1999-08-13 09:45:20 +04:00
|
|
|
#define THREAD_TICK 500
|
2002-04-24 08: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 09:45:20 +04:00
|
|
|
}\
|
|
|
|
}\
|
2002-04-24 08:54:16 +04:00
|
|
|
} while (0)
|
1999-08-13 09:45:20 +04:00
|
|
|
#endif
|
|
|
|
|
2004-01-09 05:52:19 +03:00
|
|
|
#endif /* ifndef RUBYSIG_H */
|