diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-21 08:13:39 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-21 08:13:39 +0000 |
commit | 5efe7738428d1f272eca8399c3f9b5ebef34ef9f (patch) | |
tree | 39779c15ce5b0c846c78b6afb6a85bf5f077ee9b /thread_pthread.c | |
parent | 66facfbb2cd351b6be9dd20349237533c7bed950 (diff) | |
download | ruby-5efe7738428d1f272eca8399c3f9b5ebef34ef9f.tar.gz ruby-5efe7738428d1f272eca8399c3f9b5ebef34ef9f.tar.xz ruby-5efe7738428d1f272eca8399c3f9b5ebef34ef9f.zip |
* gc.h: extern variable should not be initialized.
* thread_pthread.c: add a parameter.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14419 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread_pthread.c')
-rw-r--r-- | thread_pthread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/thread_pthread.c b/thread_pthread.c index feb569979..a51146894 100644 --- a/thread_pthread.c +++ b/thread_pthread.c @@ -112,7 +112,7 @@ static rb_thread_lock_t signal_thread_list_lock; static pthread_key_t ruby_native_thread_key; static void -null_func() +null_func(int i) { /* null */ } |