summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-06-24 04:38:10 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>1998-06-24 04:38:10 +0000
commitf61858b1164eab2afd67c3814b79d50a386a92c0 (patch)
tree32c889c6af8c94b35fa34616d0f0ec559826922c
parent6a3c97169c8a671f5feda7eba2b2a7529252daf3 (diff)
thread->thred
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/v1_1r@250 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog7
-rw-r--r--eval.c336
-rw-r--r--ext/gtk/gtk.c2
-rw-r--r--ext/socket/socket.c30
-rw-r--r--ext/tcltklib/tcltklib.c2
-rw-r--r--file.c8
-rw-r--r--intern.h22
-rw-r--r--io.c10
-rw-r--r--lib/cgi-lib.rb2
-rw-r--r--parse.y23
-rw-r--r--process.c22
-rw-r--r--rubysig.h18
-rw-r--r--signal.c4
13 files changed, 251 insertions, 235 deletions
diff --git a/ChangeLog b/ChangeLog
index 61cebdf250..8c25b96f1f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Wed Jun 24 02:18:57 1998 Yukihiro Matsumoto <matz@netlab.co.jp>
+
+ * eval.c: rename function prefix `thread_' to `thred_' to avoid
+ conflict on some machine.
+
+ * parse.y (mlhs): `((a,b)),c = [[1,2]],3' assigns a=1,b=2,c=3.
+
Tue Jun 23 11:46:16 1998 Yukihiro Matsumoto <matz@netlab.co.jp>
* parse.y (yylex): `&&=' and `||=' added.
diff --git a/eval.c b/eval.c
index 095b5be20d..7357e4227c 100644
--- a/eval.c
+++ b/eval.c
@@ -929,9 +929,9 @@ eval_node(self)
int rb_in_eval;
#ifdef THREAD
-static void thread_cleanup _((void));
-static void thread_wait_other_threads _((void));
-static VALUE thread_current _((void));
+static void thred_cleanup _((void));
+static void thred_wait_other_threads _((void));
+static VALUE thred_current _((void));
#endif
static int exit_status;
@@ -963,8 +963,8 @@ ruby_run()
if ((state = EXEC_TAG()) == 0) {
rb_trap_exit();
#ifdef THREAD
- thread_cleanup();
- thread_wait_other_threads();
+ thred_cleanup();
+ thred_wait_other_threads();
#endif
exec_end_proc();
gc_call_finalizer_at_exit();
@@ -1546,7 +1546,7 @@ call_trace_func(event, file, line, self, id)
trace = trace_func;
trace_func = 0;
#ifdef THREAD
- thread_critical++;
+ thred_critical++;
#endif
prev = the_frame;
@@ -1568,7 +1568,7 @@ call_trace_func(event, file, line, self, id)
POP_FRAME();
#ifdef THREAD
- thread_critical--;
+ thred_critical--;
#endif
if (!trace_func) trace_func = trace;
if (state) JUMP_TAG(state);
@@ -4194,8 +4194,8 @@ rb_provided(feature)
}
#ifdef THREAD
-static int thread_loading _((char*));
-static void thread_loading_done _((void));
+static int thred_loading _((char*));
+static void thred_loading_done _((void));
#endif
void
@@ -4270,7 +4270,7 @@ f_require(obj, fname)
dyna_load:
#ifdef THREAD
- if (thread_loading(feature)) return FALSE;
+ if (thred_loading(feature)) return FALSE;
else {
int state;
PUSH_TAG(PROT_NONE);
@@ -4283,7 +4283,7 @@ f_require(obj, fname)
#ifdef THREAD
}
POP_TAG();
- thread_loading_done();
+ thred_loading_done();
if (state) JUMP_TAG(state);
}
#endif
@@ -4291,7 +4291,7 @@ f_require(obj, fname)
rb_load:
#ifdef THREAD
- if (thread_loading(feature)) return FALSE;
+ if (thred_loading(feature)) return FALSE;
else {
int state;
PUSH_TAG(PROT_NONE);
@@ -4302,7 +4302,7 @@ f_require(obj, fname)
#ifdef THREAD
}
POP_TAG();
- thread_loading_done();
+ thred_loading_done();
if (state) JUMP_TAG(state);
}
#endif
@@ -4855,7 +4855,7 @@ f_binding(self)
MEMCPY(data, the_block, struct BLOCK, 1);
#ifdef THREAD
- data->orig_thread = thread_current();
+ data->orig_thread = thred_current();
#endif
data->iter = f_iterator_p();
if (the_frame->prev) {
@@ -4898,7 +4898,7 @@ proc_s_new(klass)
*data = *the_block;
#ifdef THREAD
- data->orig_thread = thread_current();
+ data->orig_thread = thred_current();
#endif
data->iter = data->prev?TRUE:FALSE;
data->frame.argv = ALLOC_N(VALUE, data->frame.argc);
@@ -4945,7 +4945,7 @@ blk_orphan(data)
return 1;
}
#ifdef THREAD
- if (data->orig_thread != thread_current()) {
+ if (data->orig_thread != thred_current()) {
return 1;
}
#endif
@@ -5269,7 +5269,7 @@ Init_Proc()
static VALUE eThreadError;
-int thread_pending = 0;
+int thred_pending = 0;
VALUE cThread;
@@ -5378,7 +5378,7 @@ static thread_t main_thread;
#define STACK(addr) (th->stk_pos<(addr) && (addr)<th->stk_pos+th->stk_len)
static void
-thread_mark(th)
+thred_mark(th)
thread_t th;
{
struct FRAME *frame;
@@ -5425,12 +5425,12 @@ gc_mark_threads()
thread_t th;
FOREACH_THREAD(th) {
- thread_mark(th);
+ thred_mark(th);
} END_FOREACH(th);
}
static void
-thread_free(th)
+thred_free(th)
thread_t th;
{
if (th->stk_ptr) free(th->stk_ptr);
@@ -5439,10 +5439,10 @@ thread_free(th)
}
static thread_t
-thread_check(data)
+thred_check(data)
VALUE data;
{
- if (TYPE(data) != T_DATA || RDATA(data)->dfree != thread_free) {
+ if (TYPE(data) != T_DATA || RDATA(data)->dfree != thred_free) {
TypeError("wrong argument type %s (expected Thread)",
rb_class2name(CLASS_OF(data)));
}
@@ -5450,7 +5450,7 @@ thread_check(data)
}
static void
-thread_save_context(th)
+thred_save_context(th)
thread_t th;
{
VALUE v;
@@ -5484,7 +5484,7 @@ thread_save_context(th)
th->line = sourceline;
}
-static void thread_restore_context _((thread_t,int));
+static void thred_restore_context _((thread_t,int));
static void
stack_extend(th, exit)
@@ -5494,7 +5494,7 @@ stack_extend(th, exit)
VALUE space[1024];
memset(space, 0, 1); /* prevent array from optimization */
- thread_restore_context(th, exit);
+ thred_restore_context(th, exit);
}
static int th_raise_argc;
@@ -5505,7 +5505,7 @@ static VALUE th_cmd;
static int th_sig;
static void
-thread_restore_context(th, exit)
+thred_restore_context(th, exit)
thread_t th;
int exit;
{
@@ -5576,7 +5576,7 @@ thread_restore_context(th, exit)
}
static void
-thread_ready(th)
+thred_ready(th)
thread_t th;
{
/* The thread is no longer waiting on anything */
@@ -5594,24 +5594,24 @@ thread_ready(th)
}
static void
-thread_remove()
+thred_remove()
{
- thread_ready(curr_thread);
+ thred_ready(curr_thread);
curr_thread->status = THREAD_KILLED;
curr_thread->prev->next = curr_thread->next;
curr_thread->next->prev = curr_thread->prev;
- thread_schedule();
+ thred_schedule();
}
static int
-thread_dead(th)
+thred_dead(th)
thread_t th;
{
return th->status == THREAD_KILLED;
}
static void
-thread_deadlock()
+thred_deadlock()
{
curr_thread = main_thread;
th_raise_argc = 1;
@@ -5622,14 +5622,14 @@ thread_deadlock()
}
void
-thread_schedule()
+thred_schedule()
{
thread_t next; /* OK */
thread_t th;
thread_t curr;
select_err:
- thread_pending = 0;
+ thred_pending = 0;
if (curr_thread == curr_thread->next) return;
next = 0;
@@ -5649,7 +5649,7 @@ thread_schedule()
if (num_waiting_on_join) {
FOREACH_THREAD_FROM(curr, th) {
- if ((th->wait_for&WAIT_JOIN) && thread_dead(th->join)) {
+ if ((th->wait_for&WAIT_JOIN) && thred_dead(th->join)) {
th->join = 0;
th->wait_for &= ~WAIT_JOIN;
th->status = THREAD_RUNNABLE;
@@ -5755,7 +5755,7 @@ thread_schedule()
}
END_FOREACH_FROM(curr, th);
/* raise fatal error to main thread */
- thread_deadlock();
+ thred_deadlock();
}
if (next->status == THREAD_RUNNABLE && next == curr_thread) {
return;
@@ -5763,7 +5763,7 @@ thread_schedule()
/* context switch */
if (curr == curr_thread) {
- thread_save_context(curr);
+ thred_save_context(curr);
if (setjmp(curr->context)) {
return;
}
@@ -5772,13 +5772,13 @@ thread_schedule()
curr_thread = next;
if (next->status == THREAD_TO_KILL) {
/* execute ensure-clause if any */
- thread_restore_context(next, 1);
+ thred_restore_context(next, 1);
}
- thread_restore_context(next, 0);
+ thred_restore_context(next, 0);
}
void
-thread_wait_fd(fd)
+thred_wait_fd(fd)
int fd;
{
if (curr_thread == curr_thread->next) return;
@@ -5787,11 +5787,11 @@ thread_wait_fd(fd)
curr_thread->fd = fd;
num_waiting_on_fd++;
curr_thread->wait_for |= WAIT_FD;
- thread_schedule();
+ thred_schedule();
}
void
-thread_fd_writable(fd)
+thred_fd_writable(fd)
int fd;
{
struct timeval zero;
@@ -5804,12 +5804,12 @@ thread_fd_writable(fd)
FD_ZERO(&fds);
FD_SET(fd, &fds);
if (select(fd+1, 0, &fds, 0, &zero) == 1) break;
- thread_schedule();
+ thred_schedule();
}
}
void
-thread_wait_for(time)
+thred_wait_for(time)
struct timeval time;
{
double date;
@@ -5845,19 +5845,19 @@ thread_wait_for(time)
curr_thread->delay = date;
num_waiting_on_timer++;
curr_thread->wait_for |= WAIT_TIME;
- thread_schedule();
+ thred_schedule();
}
-void thread_sleep_forever _((void));
+void thred_sleep_forever _((void));
int
-thread_alone()
+thred_alone()
{
return curr_thread == curr_thread->next;
}
int
-thread_select(max, read, write, except, timeout)
+thred_select(max, read, write, except, timeout)
int max;
fd_set *read, *write, *except;
struct timeval *timeout;
@@ -5869,10 +5869,10 @@ thread_select(max, read, write, except, timeout)
if (!read && !write && !except) {
if (!timeout) {
- thread_sleep_forever();
+ thred_sleep_forever();
return 0;
}
- thread_wait_for(*timeout);
+ thred_wait_for(*timeout);
return 0;
}
@@ -5939,109 +5939,109 @@ thread_select(max, read, write, except, timeout)
if (limit <= timeofday()) return 0;
}
- thread_schedule();
+ thred_schedule();
CHECK_INTS;
}
}
static VALUE
-thread_join(dmy, thread)
+thred_join(dmy, thread)
VALUE dmy;
VALUE thread;
{
- thread_t th = thread_check(thread);
+ thread_t th = thred_check(thread);
- if (thread_dead(th)) return thread;
+ if (thred_dead(th)) return thread;
if ((th->wait_for & WAIT_JOIN) && th->join == curr_thread)
Raise(eThreadError, "Thread.join: deadlock");
curr_thread->status = THREAD_STOPPED;
curr_thread->join = th;
num_waiting_on_join++;
curr_thread->wait_for |= WAIT_JOIN;
- thread_schedule();
+ thred_schedule();
return thread;
}
static VALUE
-thread_current()
+thred_current()
{
return curr_thread->thread;
}
static VALUE
-thread_main()
+thred_main()
{
return main_thread->thread;
}
static VALUE
-thread_wakeup(thread)
+thred_wakeup(thread)
VALUE thread;
{
- thread_t th = thread_check(thread);
+ thread_t th = thred_check(thread);
if (th->status == THREAD_KILLED) Raise(eThreadError, "killed thread");
- thread_ready(th);
+ thred_ready(th);
return thread;
}
static VALUE
-thread_run(thread)
+thred_run(thread)
VALUE thread;
{
- thread_wakeup(thread);
- if (!thread_critical) thread_schedule();
+ thred_wakeup(thread);
+ if (!thred_critical) thred_schedule();
return thread;
}
static VALUE
-thread_kill(thread)
+thred_kill(thread)
VALUE thread;
{
- thread_t th = thread_check(thread);
+ thread_t th = thred_check(thread);
if (th->status == THREAD_TO_KILL || th->status == THREAD_KILLED)
return thread;
if (th == th->next || th == main_thread) rb_exit(0);
- thread_ready(th);
+ thred_ready(th);
th->status = THREAD_TO_KILL;
- thread_schedule();
+ thred_schedule();
return Qnil; /* not reached */
}
static VALUE
-thread_s_kill(obj, th)
+thred_s_kill(obj, th)
VALUE obj, th;
{
- return thread_kill(th);
+ return thred_kill(th);
}
static VALUE
-thread_exit()
+thred_exit()
{
- return thread_kill(curr_thread->thread);
+ return thred_kill(curr_thread->thread);
}
static VALUE
-thread_pass()
+thred_pass()
{
- thread_schedule();
+ thred_schedule();
return Qnil;
}
static VALUE
-thread_stop()
+thred_stop()
{
- thread_critical = 0;
+ thred_critical = 0;
curr_thread->status = THREAD_STOPPED;
if (curr_thread == curr_thread->next) {
Raise(eThreadError, "stopping only thread");
}
- thread_schedule();
+ thred_schedule();
return Qnil;
}
@@ -6049,7 +6049,7 @@ thread_stop()
struct timeval time_timeval();
void
-thread_sleep(sec)
+thred_sleep(sec)
int sec;
{
if (curr_thread == curr_thread->next) {
@@ -6058,11 +6058,11 @@ thread_sleep(sec)
TRAP_END;
return;
}
- thread_wait_for(time_timeval(INT2FIX(sec)));
+ thred_wait_for(time_timeval(INT2FIX(sec)));
}
void
-thread_sleep_forever()
+thred_sleep_forever()
{
if (curr_thread == curr_thread->next) {
TRAP_BEG;
@@ -6075,46 +6075,46 @@ thread_sleep_forever()
curr_thread->delay = DELAY_INFTY;
curr_thread->wait_for |= WAIT_TIME;
curr_thread->status = THREAD_STOPPED;
- thread_schedule();
+ thred_schedule();
}
-static int thread_abort;
+static int thred_abort;
static VALUE
-thread_s_abort_exc()
+thred_s_abort_exc()
{
- return thread_abort?TRUE:FALSE;
+ return thred_abort?TRUE:FALSE;
}
static VALUE
-thread_s_abort_exc_set(self, val)
+thred_s_abort_exc_set(self, val)
VALUE self, val;
{
- thread_abort = RTEST(val);
+ thred_abort = RTEST(val);
return val;
}
static VALUE
-thread_abort_exc(thread)
+thred_abort_exc(thread)
VALUE thread;
{
- thread_t th = thread_check(thread);
+ thread_t th = thred_check(thread);
return th->abort?TRUE:FALSE;
}
static VALUE
-thread_abort_exc_set(thread, val)
+thred_abort_exc_set(thread, val)
VALUE thread, val;
{
- thread_t th = thread_check(thread);
+ thread_t th = thred_check(thread);
th->abort = RTEST(val);
return val;
}
static thread_t
-thread_alloc()
+thred_alloc()
{
thread_t th;
@@ -6146,7 +6146,7 @@ thread_alloc()
th->last_match = 0;
th->abort = 0;
- th->thread = data_object_alloc(cThread, th, 0, thread_free);
+ th->thread = data_object_alloc(cThread, th, 0, thred_free);
if (curr_thread) {
th->prev = curr_thread;
@@ -6170,23 +6170,23 @@ catch_timer(sig)
#if !defined(POSIX_SIGNAL) && !defined(BSD_SIGNAL)
signal(sig, catch_timer);
#endif
- if (!thread_critical) {
+ if (!thred_critical) {
if (trap_immediate) {
- thread_schedule();
+ thred_schedule();
}
- else thread_pending = 1;
+ else thred_pending = 1;
}
}
#else
-int thread_tick = THREAD_TICK;
+int thred_tick = THREAD_TICK;
#endif
VALUE
-thread_create(fn, arg)
+thred_create(fn, arg)
VALUE (*fn)();
void *arg;
{
- thread_t th = thread_alloc();
+ thread_t th = thred_alloc();
int state;
#if defined(HAVE_SETITIMER) && !defined(__BOW__)
@@ -6217,14 +6217,14 @@ thread_create(fn, arg)
}
#endif
- thread_save_context(curr_thread);
+ thred_save_context(curr_thread);
if (setjmp(curr_thread->context)) {
return th->thread;
}
PUSH_TAG(PROT_THREAD);
if ((state = EXEC_TAG()) == 0) {
- thread_save_context(th);
+ thred_save_context(th);
if (setjmp(th->context) == 0) {
curr_thread = th;
th->result = (*fn)(arg, th);
@@ -6236,21 +6236,21 @@ thread_create(fn, arg)
/* fatal error or global exit within this thread */
/* need to stop whole script */
main_thread->errinfo = errinfo;
- thread_cleanup();
+ thred_cleanup();
}
- else if (thread_abort || curr_thread->abort || RTEST(debug)) {
+ else if (thred_abort || curr_thread->abort || RTEST(debug)) {
f_abort();
}
else {
curr_thread->errinfo = errinfo;
}
}
- thread_remove();
+ thred_remove();
return 0;
}
static VALUE
-thread_yield(arg, th)
+thred_yield(arg, th)
int arg;
thread_t th;
{
@@ -6259,21 +6259,21 @@ thread_yield(arg, th)
}
static VALUE
-thread_start()
+thred_start()
{
if (!iterator_p()) {
Raise(eThreadError, "must be called as iterator");
}
- return thread_create(thread_yield, 0);
+ return thred_create(thred_yield, 0);
}
static VALUE
-thread_value(thread)
+thred_value(thread)
VALUE thread;
{
- thread_t th = thread_check(thread);
+ thread_t th = thred_check(thread);
- thread_join(0, thread);
+ thred_join(0, thread);
if (!NIL_P(th->errinfo)) {
VALUE oldbt = get_backtrace(th->errinfo);
VALUE errat = make_backtrace();
@@ -6287,12 +6287,12 @@ thread_value(thread)
}
static VALUE
-thread_status(thread)
+thred_status(thread)
VALUE thread;
{
- thread_t th = thread_check(thread);
+ thread_t th = thred_check(thread);
- if (thread_dead(th)) {
+ if (thred_dead(th)) {
if (NIL_P(th->errinfo)) return FALSE;
return Qnil;
}
@@ -6301,27 +6301,27 @@ thread_status(thread)
}
static VALUE
-thread_stop_p(thread)
+thred_stop_p(thread)
VALUE thread;
{
- thread_t th = thread_check(thread);
+ thread_t th = thred_check(thread);
- if (thread_dead(th)) return TRUE;
+ if (thred_dead(th)) return TRUE;
if (th->status == THREAD_STOPPED) return TRUE;
return FALSE;
}
static void
-thread_wait_other_threads()
+thred_wait_other_threads()
{
/* wait other threads to terminate */
while (curr_thread != curr_thread->next) {
- thread_schedule();
+ thred_schedule();
}
}
static void
-thread_cleanup()
+thred_cleanup()
{
thread_t th;
@@ -6338,86 +6338,86 @@ thread_cleanup()
END_FOREACH(th);
}
-int thread_critical;
+int thred_critical;
static VALUE
-thread_get_critical()
+thred_get_critical()
{
- return thread_critical?TRUE:FALSE;
+ return thred_critical?TRUE:FALSE;
}
static VALUE
-thread_set_critical(obj, val)
+thred_set_critical(obj, val)
VALUE obj, val;
{
- thread_critical = RTEST(val);
+ thred_critical = RTEST(val);
return val;
}
void
-thread_interrupt()
+thred_interrupt()
{
- thread_critical = 0;
- thread_ready(main_thread);
+ thred_critical = 0;
+ thred_ready(main_thread);
if (curr_thread == main_thread) {
rb_interrupt();
}
- thread_save_context(curr_thread);
+ thred_save_context(curr_thread);
if (setjmp(curr_thread->context)) {
return;
}
curr_thread = main_thread;
- thread_restore_context(curr_thread, 2);
+ thred_restore_context(curr_thread, 2);
}
void
-thread_trap_eval(cmd, sig)
+thred_trap_eval(cmd, sig)
VALUE cmd;
int sig;
{
- thread_critical = 0;
- if (!thread_dead(curr_thread)) {
- thread_ready(curr_thread);
+ thred_critical = 0;
+ if (!thred_dead(curr_thread)) {
+ thred_ready(curr_thread);
rb_trap_eval(cmd, sig);
return;
}
- thread_ready(main_thread);
- thread_save_context(curr_thread);
+ thred_ready(main_thread);
+ thred_save_context(curr_thread);
if (setjmp(curr_thread->context)) {
return;
}
th_cmd = cmd;
th_sig = sig;
curr_thread = main_thread;
- thread_restore_context(curr_thread, 3);
+ thred_restore_context(curr_thread, 3);
}
static VALUE
-thread_raise(argc, argv, thread)
+thred_raise(argc, argv, thread)
int argc;
VALUE *argv;
VALUE thread;
{
- thread_t th = thread_check(thread);
+ thread_t th = thred_check(thread);
- if (thread_dead(th)) return thread;
+ if (thred_dead(th)) return thread;
if (curr_thread == th) {
f_raise(argc, argv);
}
- thread_save_context(curr_thread);
+ thred_save_context(curr_thread);
if (setjmp(curr_thread->context)) {
return thread;
}
rb_scan_args(argc, argv, "11", &th_raise_argv[0], &th_raise_argv[1]);
- thread_ready(th);
+ thred_ready(th);
curr_thread = th;
th_raise_argc = argc;
th_raise_file = sourcefile;
th_raise_line = sourceline;
- thread_restore_context(curr_thread, 4);
+ thred_restore_context(curr_thread, 4);
return Qnil; /* not reached */
}
@@ -6425,12 +6425,12 @@ static thread_t loading_thread;
static int loading_nest;
static int
-thread_loading(feature)
+thred_loading(feature)
char *feature;
{
if (curr_thread != curr_thread->next && loading_thread) {
while (loading_thread != curr_thread) {
- thread_schedule();
+ thred_schedule();
CHECK_INTS;
}
if (rb_provided(feature)) return TRUE; /* no need to load */
@@ -6443,7 +6443,7 @@ thread_loading(feature)
}
static void
-thread_loading_done()
+thred_loading_done()
{
if (--loading_nest == 0) {
loading_thread = 0;
@@ -6456,38 +6456,38 @@ Init_Thread()
eThreadError = rb_define_class("ThreadError", eStandardError);
cThread = rb_define_class("Thread", cObject);
- rb_define_singleton_method(cThread, "new", thread_start, 0);
- rb_define_singleton_method(cThread, "start", thread_start, 0);
- rb_define_singleton_method(cThread, "fork", thread_start, 0);
+ rb_define_singleton_method(cThread, "new", thred_start, 0);
+ rb_define_singleton_method(cThread, "start", thred_start, 0);
+ rb_define_singleton_method(cThread, "fork", thred_start, 0);
- rb_define_singleton_method(cThread, "stop", thread_stop, 0);
- rb_define_singleton_method(cThread, "kill", thread_s_kill, 1);
- rb_define_singleton_method(cThread, "exit", thread_exit, 0);
- rb_define_singleton_method(cThread, "pass", thread_pass, 0);
- rb_define_singleton_method(cThread, "join", thread_join, 1);
- rb_define_singleton_method(cThread, "current", thread_current, 0);
- rb_define_singleton_method(cThread, "main", thread_main, 0);
+ rb_define_singleton_method(cThread, "stop", thred_stop, 0);
+ rb_define_singleton_method(cThread, "kill", thred_s_kill, 1);
+ rb_define_singleton_method(cThread, "exit", thred_exit, 0);
+ rb_define_singleton_method(cThread, "pass", thred_pass, 0);
+ rb_define_singleton_method(cThread, "join", thred_join, 1);
+ rb_define_singleton_method(cThread, "current", thred_current, 0);
+ rb_define_singleton_method(cThread, "main", thred_main, 0);
- rb_define_singleton_method(cThread, "critical", thread_get_critical, 0);
- rb_define_singleton_method(cThread, "critical=", thread_set_critical, 1);
+ rb_define_singleton_method(cThread, "critical", thred_get_critical, 0);
+ rb_define_singleton_method(cThread, "critical=", thred_set_critical, 1);
- rb_define_singleton_method(cThread, "abort_on_exception", thread_s_abort_exc, 0);
- rb_define_singleton_method(cThread, "abort_on_exception=", thread_s_abort_exc_set, 1);
+ rb_define_singleton_method(cThread, "abort_on_exception", thred_s_abort_exc, 0);
+ rb_define_singleton_method(cThread, "abort_on_exception=", thred_s_abort_exc_set, 1);
- rb_define_method(cThread, "run", thread_run, 0);
- rb_define_method(cThread, "wakeup", thread_wakeup, 0);
- rb_define_method(cThread, "exit", thread_kill, 0);
- rb_define_method(cThread, "value", thread_value, 0);
- rb_define_method(cThread, "status", thread_status, 0);
- rb_define_method(cThread, "alive?", thread_status, 0);
- rb_define_method(cThread, "stop?", thread_stop_p, 0);
- rb_define_method(cThread, "raise", thread_raise, -1);
+ rb_define_method(cThread, "run", thred_run, 0);
+ rb_define_method(cThread, "wakeup", thred_wakeup, 0);
+ rb_define_method(cThread, "exit", thred_kill, 0);
+ rb_define_method(cThread, "value", thred_value, 0);
+ rb_define_method(cThread, "status", thred_status, 0);
+ rb_define_method(cThread, "alive?", thred_status, 0);
+ rb_define_method(cThread, "stop?", thred_stop_p, 0);
+ rb_define_method(cThread, "raise", thred_raise, -1);
- rb_define_method(cThread, "abort_on_exception", thread_abort_exc, 0);
- rb_define_method(cThread, "abort_on_exception=", thread_abort_exc_set, 1);
+ rb_define_method(cThread, "abort_on_exception", thred_abort_exc, 0);
+ rb_define_method(cThread, "abort_on_exception=", thred_abort_exc_set, 1);
/* allocate main thread */
- main_thread = thread_alloc();
+ main_thread = thred_alloc();
}
#endif
diff --git a/ext/gtk/gtk.c b/ext/gtk/gtk.c
index 21079026fc..cc552c15b4 100644
--- a/ext/gtk/gtk.c
+++ b/ext/gtk/gtk.c
@@ -5779,7 +5779,7 @@ idle()
{
CHECK_INTS;
#ifdef THREAD
- if (!thread_critical) thread_schedule();
+ if (!thred_critical) thred_schedule();
#endif
return TRUE;
}
diff --git a/ext/socket/socket.c b/ext/socket/socket.c
index d527e308e8..6748655ff3 100644
--- a/ext/socket/socket.c
+++ b/ext/socket/socket.c
@@ -24,7 +24,7 @@
#ifdef USE_CWGUSI
extern int fileno(FILE *stream); /* <unix.mac.h> */
-extern int thread_select(int, fd_set*, fd_set*, fd_set*, struct timeval*); /* thread.c */
+extern int thred_select(int, fd_set*, fd_set*, fd_set*, struct timeval*); /* thread.c */
# include <sys/errno.h>
# include <GUSI.h>
#endif
@@ -243,7 +243,7 @@ bsock_send(argc, argv, sock)
fd = fileno(f);
retry:
#ifdef THREAD
- thread_fd_writable(fd);
+ thred_fd_writable(fd);
#endif
m = str2cstr(msg, &mlen);
if (RTEST(to)) {
@@ -262,7 +262,7 @@ bsock_send(argc, argv, sock)
case EAGAIN:
#endif
#ifdef THREAD
- thread_schedule();
+ thred_schedule();
#endif
goto retry;
}
@@ -309,7 +309,7 @@ s_recv(sock, argc, argv, from)
GetOpenFile(sock, fptr);
fd = fileno(fptr->f);
#ifdef THREAD
- thread_wait_fd(fd);
+ thred_wait_fd(fd);
#endif
TRAP_BEG;
retry:
@@ -325,7 +325,7 @@ s_recv(sock, argc, argv, from)
case EAGAIN:
#endif
#ifdef THREAD
- thread_schedule();
+ thred_schedule();
#endif
goto retry;
}
@@ -370,7 +370,7 @@ bsock_recv(argc, argv, sock)
#if defined(THREAD) && defined(HAVE_FCNTL)
static int
-thread_connect(fd, sockaddr, len, type)
+thred_connect(fd, sockaddr, len, type)
int fd;
struct sockaddr *sockaddr;
int len;
@@ -412,9 +412,9 @@ thread_connect(fd, sockaddr, len, type)
FD_ZERO(&fds);
FD_SET(fd, &fds);
#ifndef USE_CWGUSI
- thread_select(fd+1, 0, &fds, 0, 0, 0);
+ thred_select(fd+1, 0, &fds, 0, 0, 0);
#else
- thread_select(fd+1, 0, &fds, 0, 0);
+ thred_select(fd+1, 0, &fds, 0, 0);
#endif
continue;
#endif
@@ -535,8 +535,8 @@ open_inet(class, h, serv, type)
}
else {
#if defined(THREAD) && defined(HAVE_FCNTL)
- status = thread_connect(fd, (struct sockaddr*)&sockaddr,
- sizeof(sockaddr), type);
+ status = thred_connect(fd, (struct sockaddr*)&sockaddr,
+ sizeof(sockaddr), type);
#else
#ifdef SOCKS
if (type == INET_SOCKS) {
@@ -611,7 +611,7 @@ s_accept(class, fd, sockaddr, len)
retry:
#ifdef THREAD
- thread_wait_fd(fd);
+ thred_wait_fd(fd);
#endif
TRAP_BEG;
fd2 = accept(fd, sockaddr, len);
@@ -624,7 +624,7 @@ s_accept(class, fd, sockaddr, len)
case EAGAIN:
#endif
#ifdef THREAD
- thread_schedule();
+ thred_schedule();
#endif
goto retry;
}
@@ -889,7 +889,7 @@ udp_connect(sock, host, port)
case EAGAIN:
#endif
#ifdef THREAD
- thread_schedule();
+ thred_schedule();
#endif
goto retry;
}
@@ -948,7 +948,7 @@ udp_send(argc, argv, sock)
case EAGAIN:
#endif
#ifdef THREAD
- thread_schedule();
+ thred_schedule();
#endif
goto retry;
}
@@ -1203,7 +1203,7 @@ sock_connect(sock, addr)
case EAGAIN:
#endif
#ifdef THREAD
- thread_schedule();
+ thred_schedule();
#endif
goto retry;
}
diff --git a/ext/tcltklib/tcltklib.c b/ext/tcltklib/tcltklib.c
index 7d2abb8e80..1eb2a48c55 100644
--- a/ext/tcltklib/tcltklib.c
+++ b/ext/tcltklib/tcltklib.c
@@ -52,7 +52,7 @@ void _timer_for_tcl (ClientData clientData)
timer->flag = 0;
CHECK_INTS;
#ifdef THREAD
- if (!thread_critical) thread_schedule();
+ if (!thred_critical) thred_schedule();
#endif
timer->token = Tk_CreateTimerHandler(200, _timer_for_tcl,
diff --git a/file.c b/file.c
index 8063850ab4..df17d65630 100644
--- a/file.c
+++ b/file.c
@@ -1376,10 +1376,10 @@ file_truncate(obj, len)
#if defined(THREAD) && defined(EWOULDBLOCK)
static int
-thread_flock(fd, op)
+thred_flock(fd, op)
int fd, op;
{
- if (thread_alone() || (op & LOCK_NB)) {
+ if (thred_alone() || (op & LOCK_NB)) {
return flock(fd, op);
}
op |= LOCK_NB;
@@ -1387,7 +1387,7 @@ thread_flock(fd, op)
switch (errno) {
case EINTR: /* can be happen? */
case EWOULDBLOCK:
- thread_schedule(); /* busy wait */
+ thred_schedule(); /* busy wait */
break;
default:
return -1;
@@ -1395,7 +1395,7 @@ thread_flock(fd, op)
}
return 0;
}
-#define flock thread_flock
+#define flock thred_flock
#endif
static VALUE
diff --git a/intern.h b/intern.h
index aa724d0d3c..5637563f2f 100644
--- a/intern.h
+++ b/intern.h
@@ -123,17 +123,17 @@ VALUE class_new_instance _((int, VALUE*, VALUE));
VALUE f_lambda _((void));
void rb_set_end_proc _((void (*)(),VALUE));
void gc_mark_threads _((void));
-void thread_schedule _((void));
-void thread_wait_fd _((int));
-void thread_fd_writable _((int));
-int thread_alone _((void));
-void thread_sleep _((int));
-void thread_sleep_forever _((void));
-VALUE thread_create _((VALUE (*)(), void*));
-void thread_interrupt _((void));
-void thread_trap_eval _((VALUE, int));
-int thread_select();
-void thread_wait_for();
+void thred_schedule _((void));
+void thred_wait_fd _((int));
+void thred_fd_writable _((int));
+int thred_alone _((void));
+void thred_sleep _((int));
+void thred_sleep_forever _((void));
+VALUE thred_create _((VALUE (*)(), void*));
+void thred_interrupt _((void));
+void thred_trap_eval _((VALUE, int));
+int thred_select();
+void thred_wait_for();
/* file.c */
VALUE file_open _((char*, char*));
int eaccess _((char*, int));
diff --git a/io.c b/io.c
index 0643f21813..0cf2593db5 100644
--- a/io.c
+++ b/io.c
@@ -109,7 +109,7 @@ extern int ReadDataPending();
# define READ_CHECK(fp) 0
#else
# define READ_CHECK(fp) do {\
- if (!READ_DATA_PENDING(fp)) thread_wait_fd(fileno(fp));\
+ if (!READ_DATA_PENDING(fp)) thred_wait_fd(fileno(fp));\
} while(0)
#endif
@@ -881,7 +881,7 @@ io_syswrite(io, str)
f = GetWriteFile(fptr);
#ifdef THREAD
- thread_fd_writable(fileno(f));
+ thred_fd_writable(fileno(f));
#endif
n = write(fileno(f), RSTRING(str)->ptr, RSTRING(str)->len);
@@ -905,7 +905,7 @@ io_sysread(io, len)
str = str_new(0, ilen);
#ifdef THREAD
- thread_wait_fd(fileno(fptr->f));
+ thred_wait_fd(fileno(fptr->f));
#endif
TRAP_BEG;
n = read(fileno(fptr->f), RSTRING(str)->ptr, RSTRING(str)->len);
@@ -1184,7 +1184,7 @@ pipe_open(pname, mode)
case -1: /* fork failed */
if (errno == EAGAIN) {
#ifdef THREAD
- thread_sleep(1);
+ thred_sleep(1);
#else
sleep(1);
#endif
@@ -2055,7 +2055,7 @@ f_select(argc, argv, obj)
max++;
#ifdef THREAD
- n = thread_select(max, rp, wp, ep, tp);
+ n = thred_select(max, rp, wp, ep, tp);
if (n < 0) {
rb_sys_fail(0);
}
diff --git a/lib/cgi-lib.rb b/lib/cgi-lib.rb
index 1a6d16a6da..6c20237ff5 100644
--- a/lib/cgi-lib.rb
+++ b/lib/cgi-lib.rb
@@ -25,7 +25,7 @@ class CGI < SimpleDelegator
words = Shellwords.shellwords(if not ARGV.empty? then
ARGV.join(' ')
else
- print "(offline mode: enter name=value pairs on standard input)\n"
+ print "(offline mode: enter name=value pairs on standard input)\n" if STDOUT.tty?
readlines.join(' ').gsub(/\n/, '')
end.gsub(/\\=/, '%3D').gsub(/\\&/, '%26'))
diff --git a/parse.y b/parse.y
index de14f4f6ea..2ae06640fe 100644
--- a/parse.y
+++ b/parse.y
@@ -180,7 +180,7 @@ static void top_local_setup();
%type <node> f_arglist f_args f_optarg f_opt f_block_arg opt_f_block_arg
%type <node> array assoc_list assocs assoc undef_list
%type <node> iter_var opt_iter_var iter_block iter_do_block
-%type <node> mlhs mlhs_head mlhs_tail lhs backref
+%type <node> mlhs mlhs_head mlhs_tail mlhs_basic mlhs_item lhs backref
%type <id> variable symbol operation
%type <id> cname fname op f_rest_arg
%type <num> f_arg
@@ -433,13 +433,21 @@ command_call : operation call_args
fixpos($$, $2);
}
-mlhs : mlhs_head
+mlhs : mlhs_basic
+ | tLPAREN mlhs_item ')'
{
- $$ = NEW_MASGN(NEW_LIST($1), 0);
+ $$ = $2;
}
- | tLPAREN mlhs ')'
+
+mlhs_item : mlhs_basic
+ | tLPAREN mlhs_item ')'
{
- $$ = $2;
+ $$ = NEW_MASGN(NEW_LIST($2), 0);
+ }
+
+mlhs_basic : mlhs_head
+ {
+ $$ = NEW_MASGN(NEW_LIST($1), 0);
}
| mlhs_head tSTAR lhs
{
@@ -459,7 +467,7 @@ mlhs : mlhs_head
}
mlhs_head : lhs ','
- | tLPAREN mlhs ')' ','
+ | tLPAREN mlhs_item ')' ','
{
$$ = $2;
}
@@ -468,7 +476,7 @@ mlhs_tail : lhs
{
$$ = NEW_LIST($1);
}
- | tLPAREN mlhs ')'
+ | tLPAREN mlhs_item ')'
{
$$ = NEW_LIST($2);
}
@@ -853,6 +861,7 @@ mrhs : args
}
| args ',' tSTAR arg
{
+ value_expr($4);
$$ = arg_add($1, $4);
}
| tSTAR arg
diff --git a/process.c b/process.c
index 06a5502db3..4ecfae8da9 100644
--- a/process.c
+++ b/process.c
@@ -81,7 +81,7 @@ rb_waitpid(pid, flags, st)
int result;
#if defined(THREAD) && (defined(HAVE_WAITPID) || defined(HAVE_WAIT4))
int oflags = flags;
- if (!thread_alone()) { /* there're other threads to run */
+ if (!thred_alone()) { /* there're other threads to run */
flags |= WNOHANG;
}
#endif
@@ -92,7 +92,7 @@ rb_waitpid(pid, flags, st)
if (result < 0) {
if (errno == EINTR) {
#ifdef THREAD
- thread_schedule();
+ thred_schedule();
#endif
goto retry;
}
@@ -101,8 +101,8 @@ rb_waitpid(pid, flags, st)
#ifdef THREAD
if (result == 0) {
if (oflags & WNOHANG) return 0;
- thread_schedule();
- if (thread_alone()) flags = oflags;
+ thred_schedule();
+ if (thred_alone()) flags = oflags;
goto retry;
}
#endif
@@ -120,8 +120,8 @@ rb_waitpid(pid, flags, st)
#ifdef THREAD
if (result == 0) {
if (oflags & WNOHANG) return 0;
- thread_schedule();
- if (thread_alone()) flags = oflags;
+ thred_schedule();
+ if (thred_alone()) flags = oflags;
goto retry;
}
#endif
@@ -141,7 +141,7 @@ rb_waitpid(pid, flags, st)
if (result < 0) {
if (errno == EINTR) {
#ifdef THREAD
- thread_schedule();
+ thred_schedule();
#endif
continue;
}
@@ -197,7 +197,7 @@ f_wait()
while ((pid = wait(&state)) < 0) {
if (errno == EINTR) {
#ifdef THREAD
- thread_schedule();
+ thred_schedule();
#endif
continue;
}
@@ -728,7 +728,7 @@ f_system(argc, argv)
case -1:
if (errno == EAGAIN) {
#ifdef THREAD
- thread_sleep(1);
+ thred_sleep(1);
#else
sleep(1);
#endif
@@ -758,10 +758,10 @@ f_sleep(argc, argv)
beg = time(0);
#ifdef THREAD
if (argc == 0) {
- thread_sleep_forever();
+ thred_sleep_forever();
}
else if (argc == 1) {
- thread_wait_for(time_timeval(argv[0]));
+ thred_wait_for(time_timeval(argv[0]));
}
#else
if (argc == 0) {
diff --git a/rubysig.h b/rubysig.h
index fa99c847b8..0e5e8ebd9a 100644
--- a/rubysig.h
+++ b/rubysig.h
@@ -23,24 +23,24 @@ extern int trap_pending;
void trap_restore_mask _((void));
#ifdef THREAD
-extern int thread_critical;
-void thread_schedule _((void));
+extern int thred_critical;
+void thred_schedule _((void));
#if defined(HAVE_SETITIMER) && !defined(__BOW__)
-extern int thread_pending;
+extern int thred_pending;
# define CHECK_INTS if (!prohibit_interrupt) {\
if (trap_pending) rb_trap_exec();\
- if (thread_pending && !thread_critical) thread_schedule();\
+ if (thred_pending && !thred_critical) thred_schedule();\
}
# else
/* pseudo preemptive thread switching */
-extern int thread_tick;
+extern int thred_tick;
#define THREAD_TICK 500
# define CHECK_INTS if (!prohibit_interrupt) {\
if (trap_pending) rb_trap_exec();\
- if (!thread_critical) {\
- if (thread_tick-- <= 0) {\
- thread_tick = THREAD_TICK;\
- thread_schedule();\
+ if (!thred_critical) {\
+ if (thred_tick-- <= 0) {\
+ thred_tick = THREAD_TICK;\
+ thred_schedule();\
}\
}\
}
diff --git a/signal.c b/signal.c
index a8e5ae6ffb..f66c828f3c 100644
--- a/signal.c
+++ b/signal.c
@@ -286,8 +286,8 @@ posix_signal(signum, handler)
#endif
#ifdef THREAD
-# define rb_interrupt thread_interrupt
-# define rb_trap_eval thread_trap_eval
+# define rb_interrupt thred_interrupt
+# define rb_trap_eval thred_trap_eval
#endif
static RETSIGTYPE