summaryrefslogtreecommitdiff
path: root/eval.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-13 13:05:24 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-10-13 13:05:24 +0000
commit1184373d867f0e4792b3a6da11acfd2cf4c0b330 (patch)
treec93cdc524880d4142cfe48dcb194207d05a34263 /eval.c
parentb6f1c0e2846acbbc9d694b1207c778e1d6db63e3 (diff)
* string.c (str_new4): should not preserve FL_TAINT status in the
internal shared string. [ruby-dev:21601] * string.c (rb_str_new4): ditto. * eval.c: use EXIT_SUCCESS and EXIT_FAILURE for exit values. * process.c: ditto. [ruby-dev:38521] * lib/debug.rb (debug_command): should enter emacs mode when assigned any value to the environment variable "EMACS". On Meadow, (getenv "EMACS") is "meadow". git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4749 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c50
1 files changed, 27 insertions, 23 deletions
diff --git a/eval.c b/eval.c
index 048c8de569..b00d304a2a 100644
--- a/eval.c
+++ b/eval.c
@@ -18,6 +18,16 @@
#include "util.h"
#include "rubysig.h"
+#ifdef HAVE_STDLIB_H
+#include <stdlib.h>
+#endif
+#ifndef EXIT_SUCCESS
+#define EXIT_SUCCESS 0
+#endif
+#ifndef EXIT_FAILURE
+#define EXIT_FAILURE 1
+#endif
+
#include <stdio.h>
#include <setjmp.h>
#include "st.h"
@@ -1181,7 +1191,7 @@ ruby_init()
POP_TAG();
if (state) {
error_print();
- exit(1);
+ exit(EXIT_FAILURE);
}
POP_SCOPE();
ruby_scope = top_scope;
@@ -1219,37 +1229,33 @@ static int
error_handle(ex)
int ex;
{
- if (thread_set_raised()) return 1;
+ int status = EXIT_FAILURE;
+ if (thread_set_raised()) return EXIT_FAILURE;
switch (ex & TAG_MASK) {
case 0:
- ex = 0;
+ status = EXIT_SUCCESS;
break;
case TAG_RETURN:
error_pos();
warn_print(": unexpected return\n");
- ex = 1;
break;
case TAG_NEXT:
error_pos();
warn_print(": unexpected next\n");
- ex = 1;
break;
case TAG_BREAK:
error_pos();
warn_print(": unexpected break\n");
- ex = 1;
break;
case TAG_REDO:
error_pos();
warn_print(": unexpected redo\n");
- ex = 1;
break;
case TAG_RETRY:
error_pos();
warn_print(": retry outside of rescue clause\n");
- ex = 1;
break;
case TAG_THROW:
if (prot_tag && prot_tag->frame && prot_tag->frame->node) {
@@ -1261,17 +1267,15 @@ error_handle(ex)
error_pos();
warn_printf(": unexpected throw\n");
}
- ex = 1;
break;
case TAG_RAISE:
case TAG_FATAL:
if (rb_obj_is_kind_of(ruby_errinfo, rb_eSystemExit)) {
VALUE st = rb_iv_get(ruby_errinfo, "status");
- ex = NUM2INT(st);
+ status = NUM2INT(st);
}
else {
error_print();
- ex = 1;
}
break;
default:
@@ -1279,7 +1283,7 @@ error_handle(ex)
break;
}
thread_reset_raised();
- return ex;
+ return status;
}
void
@@ -1304,9 +1308,9 @@ ruby_options(argc, argv)
void rb_exec_end_proc _((void));
-static void
+static int
ruby_finalize_0(exp)
- int *exp;
+ int exp;
{
ruby_errinfo = 0;
PUSH_TAG(PROT_NONE);
@@ -1316,12 +1320,13 @@ ruby_finalize_0(exp)
POP_TAG();
rb_exec_end_proc();
rb_gc_call_finalizer_at_exit();
- if (exp && ruby_errinfo && rb_obj_is_kind_of(ruby_errinfo, rb_eSystemExit)) {
- VALUE st = rb_iv_get(ruby_errinfo, "status");
- *exp = NUM2INT(st);
- }
trace_func = 0;
tracing = 0;
+ if (ruby_errinfo && rb_obj_is_kind_of(ruby_errinfo, rb_eSystemExit)) {
+ VALUE st = rb_iv_get(ruby_errinfo, "status");
+ return NUM2INT(st);
+ }
+ return EXIT_SUCCESS;
}
void
@@ -1350,8 +1355,7 @@ ruby_cleanup(ex)
ex = error_handle(ex);
POP_TAG();
- ruby_finalize_0(&ex);
- return ex;
+ return ruby_finalize_0(ex);
}
int
@@ -3846,7 +3850,7 @@ rb_f_exit(argc, argv)
istatus = NUM2INT(status);
}
else {
- istatus = 0;
+ istatus = EXIT_SUCCESS;
}
rb_exit(istatus);
return Qnil; /* not reached */
@@ -3862,7 +3866,7 @@ rb_f_abort(argc, argv)
if (!NIL_P(ruby_errinfo)) {
error_print();
}
- rb_exit(1);
+ rb_exit(EXIT_FAILURE);
}
else {
VALUE mesg;
@@ -9110,7 +9114,7 @@ rb_thread_kill(thread)
}
if (th->status == THREAD_TO_KILL || th->status == THREAD_KILLED)
return thread;
- if (th == th->next || th == main_thread) rb_exit(0);
+ if (th == th->next || th == main_thread) rb_exit(EXIT_SUCCESS);
rb_thread_ready(th);
th->status = THREAD_TO_KILL;