diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-18 08:56:11 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-01-18 08:56:11 +0000 |
commit | 8a9993dfee20296431ac49ec48860c89160835c1 () | |
tree | 261091404f764fc0a2ac423aa322f44b0cb90b2e /thread_pthread.h | |
parent | 3a4bfbad0976c60dd557dcdb64b390d055e6446b (diff) |
* eval_intern.h, insnhelper.h, thread_pthread.h, vm_core.h, vm_opts.h:
prefixed include guards with RUBY. * id.h: added include guard. * regenc.h, regint.h, regparse.h: prefixed include guards with ONIGURUMA. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15112 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | thread_pthread.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -8,8 +8,8 @@ **********************************************************************/ -#ifndef THREAD_PTHREAD_H_INCLUDED -#define THREAD_PTHREAD_H_INCLUDED #include <pthread.h> typedef pthread_t rb_thread_id_t; @@ -21,4 +21,4 @@ typedef struct native_thread_data_struct { pthread_cond_t sleep_cond; } native_thread_data_t; -#endif /* THREAD_PTHREAD_H_INCLUDED */ |