summaryrefslogtreecommitdiff
path: root/eval_intern.h
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-30 07:12:37 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-30 07:12:37 +0000
commit2de3f183190732710ba8859c3259551c628eeda4 (patch)
tree5d4cfcf922826ec58c491231af191fb14af84869 /eval_intern.h
parent5adabb40103a7ef96bba2e8552bedfa233e4af19 (diff)
* eval_intern.h: speficy the values of the enumeration constants
explicitly. [ruby-dev:34489] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16238 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval_intern.h')
-rw-r--r--eval_intern.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/eval_intern.h b/eval_intern.h
index 8296ee0f51..c04befba58 100644
--- a/eval_intern.h
+++ b/eval_intern.h
@@ -194,8 +194,8 @@ void rb_thread_wait_other_threads(void);
enum {
RAISED_EXCEPTION = 1,
- RAISED_STACKOVERFLOW,
- RAISED_NOMEMORY,
+ RAISED_STACKOVERFLOW = 2,
+ RAISED_NOMEMORY = 4,
};
int rb_thread_set_raised(rb_thread_t *th);
int rb_thread_reset_raised(rb_thread_t *th);