Skip to content

Commit

Permalink
* rubysig.h (CHECK_INTS): prevent signal handler to run during
Browse files Browse the repository at this point in the history
  critical section.  [ruby-core:04039]

* eval.c (load_wait): need not to call rb_thread_schedule()
  explicitly.  [ruby-core:04039]

* eval.c (rb_thread_schedule): clear rb_thread_critical.
  [ruby-core:04039]

* st.c (st_free_table): do not call free() but xfree().
  [ruby-core:06205]


git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@9417 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
matz committed Oct 19, 2005
1 parent aeed3be commit 013deca
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 31 deletions.
16 changes: 16 additions & 0 deletions ChangeLog
Expand Up @@ -37,6 +37,17 @@ Sun Oct 16 14:30:05 2005 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>

* test/rinda/test_rinda.rb: test it.

Sun Oct 16 03:38:07 2005 Yukihiro Matsumoto <matz@ruby-lang.org>

* rubysig.h (CHECK_INTS): prevent signal handler to run during
critical section. [ruby-core:04039]

* eval.c (load_wait): need not to call rb_thread_schedule()
explicitly. [ruby-core:04039]

* eval.c (rb_thread_schedule): clear rb_thread_critical.
[ruby-core:04039]

Sat Oct 15 19:56:38 2005 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>

* bin/erb: typo fixed, again. thanks, Doug Kearns.
Expand Down Expand Up @@ -75,6 +86,11 @@ Tue Oct 11 21:41:58 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>

* eval.c (rb_respond_to): conform to Object#respond_to?. [ruby-dev:27411]

Tue Oct 11 00:01:21 2005 Yukihiro Matsumoto <matz@ruby-lang.org>

* st.c (st_free_table): do not call free() but xfree().
[ruby-core:06205]

Sat Oct 8 20:04:40 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>

* eval.c (Init_Binding): add Binding#dup method. [yarv-dev:666]
Expand Down
13 changes: 6 additions & 7 deletions eval.c
Expand Up @@ -6864,19 +6864,19 @@ rb_provide(feature)
rb_provide_feature(rb_str_new2(feature));
}

static void
static int
load_wait(ftptr)
char *ftptr;
{
st_data_t th;

if (!loading_tbl) return;
if (!st_lookup(loading_tbl, (st_data_t)ftptr, &th)) return;
if ((rb_thread_t)th == curr_thread) return;
if (!loading_tbl) return Qfalse;
if (!st_lookup(loading_tbl, (st_data_t)ftptr, &th)) return Qfalse;
do {
if ((rb_thread_t)th == curr_thread) return Qtrue;
CHECK_INTS;
rb_thread_schedule();
} while (st_lookup(loading_tbl, (st_data_t)ftptr, &th));
return Qtrue;
}

/*
Expand Down Expand Up @@ -7007,8 +7007,7 @@ rb_require_safe(fname, safe)
ruby_safe_level = safe;
found = search_required(fname, &feature, &path);
if (found) {
if (!path) {
load_wait(RSTRING(feature)->ptr);
if (!path || load_wait(RSTRING(path)->ptr)) {
result = Qfalse;
}
else {
Expand Down
17 changes: 7 additions & 10 deletions rubysig.h
Expand Up @@ -82,26 +82,23 @@ void rb_thread_schedule _((void));
#if defined(HAVE_SETITIMER) || defined(_THREAD_SAFE)
RUBY_EXTERN int rb_thread_pending;
# define CHECK_INTS do {\
if (!rb_prohibit_interrupt) {\
if (!(rb_prohibit_interrupt | rb_thread_critical)) {\
if (rb_thread_pending) rb_thread_schedule();\
if (rb_trap_pending) rb_trap_exec();\
if (rb_thread_pending && !rb_thread_critical)\
rb_thread_schedule();\
}\
} while (0)
#else
/* pseudo preemptive thread switching */
RUBY_EXTERN int rb_thread_tick;
#define THREAD_TICK 500
#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();\
}\
if (!(rb_prohibit_interrupt | rb_thread_critical)) {\
if (rb_thread_tick-- <= 0) {\
rb_thread_tick = THREAD_TICK;
rb_thread_schedule();
}\
}\
if (rb_trap_pending) rb_trap_exec();\
} while (0)
#endif

Expand Down
26 changes: 12 additions & 14 deletions st.c
Expand Up @@ -5,14 +5,12 @@
#include "config.h"
#include "defines.h"
#include <stdio.h>
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#include <string.h>
#include "st.h"

#ifdef _WIN32
#include <malloc.h>
#endif

typedef struct st_table_entry st_table_entry;

struct st_table_entry {
Expand Down Expand Up @@ -218,12 +216,12 @@ st_free_table(table)
ptr = table->bins[i];
while (ptr != 0) {
next = ptr->next;
free(ptr);
xfree(ptr);
ptr = next;
}
}
free(table->bins);
free(table);
xfree(table->bins);
xfree(table);
}

#define PTR_NOT_EQUAL(table, ptr, hash_val, key) \
Expand Down Expand Up @@ -342,7 +340,7 @@ rehash(table)
ptr = next;
}
}
free(table->bins);
xfree(table->bins);
table->num_bins = new_num_bins;
table->bins = new_bins;
}
Expand All @@ -365,7 +363,7 @@ st_copy(old_table)
Calloc((unsigned)num_bins, sizeof(st_table_entry*));

if (new_table->bins == 0) {
free(new_table);
xfree(new_table);
return 0;
}

Expand All @@ -375,8 +373,8 @@ st_copy(old_table)
while (ptr != 0) {
entry = alloc(st_table_entry);
if (entry == 0) {
free(new_table->bins);
free(new_table);
xfree(new_table->bins);
xfree(new_table);
return 0;
}
*entry = *ptr;
Expand Down Expand Up @@ -411,7 +409,7 @@ st_delete(table, key, value)
table->num_entries--;
if (value != 0) *value = ptr->record;
*key = ptr->key;
free(ptr);
xfree(ptr);
return 1;
}

Expand All @@ -422,7 +420,7 @@ st_delete(table, key, value)
table->num_entries--;
if (value != 0) *value = tmp->record;
*key = tmp->key;
free(tmp);
xfree(tmp);
return 1;
}
}
Expand Down Expand Up @@ -522,7 +520,7 @@ st_foreach(table, func, arg)
last->next = ptr->next;
}
ptr = ptr->next;
free(tmp);
xfree(tmp);
table->num_entries--;
}
}
Expand Down

0 comments on commit 013deca

Please sign in to comment.