提交 0616cba6 编写于 作者: B Brian Anderson

libcore: Add sys::set_exit_status

Sets the process exit code
上级 dcac4277
......@@ -20,6 +20,7 @@
fn do_gc();
fn unsupervise();
fn shape_log_str<T>(t: *sys::type_desc, data: T) -> str;
fn rust_set_exit_status(code: int);
}
#[abi = "rust-intrinsic"]
......@@ -92,6 +93,18 @@ fn log_str<T>(t: T) -> str {
rustrt::shape_log_str(get_type_desc::<T>(), t)
}
#[doc(
brief = "Sets the process exit code",
desc = "Sets the exit code returned by the process if all supervised \
tasks terminate successfully (without failing). If the current \
root task fails and is supervised by the scheduler then any \
user-specified exit status is ignored and the process exits \
with the default failure status."
)]
fn set_exit_status(code: int) {
rustrt::rust_set_exit_status(code);
}
// Local Variables:
// mode: rust;
// fill-column: 78;
......
......@@ -561,6 +561,12 @@ port_recv(uintptr_t *dptr, rust_port *port,
return;
}
extern "C" CDECL void
rust_set_exit_status(intptr_t code) {
rust_task *task = rust_scheduler::get_task();
task->kernel->set_exit_status((int)code);
}
//
// Local Variables:
// mode: C++
......
......@@ -92,7 +92,7 @@ static size_t const TIME_SLICE_IN_MS = 10;
static size_t const BUF_BYTES = 2048;
// The error status to use when the process fails
#define PROC_FAIL_CODE 101;
#define PROC_FAIL_CODE 101
// Every reference counted object should use this macro and initialize
// ref_count.
......
......@@ -11,8 +11,8 @@ rust_kernel::rust_kernel(rust_srv *srv, size_t num_threads) :
_log(srv, NULL),
srv(srv),
max_id(0),
num_threads(num_threads),
rval(0),
num_threads(num_threads),
live_tasks(0),
env(srv->env)
{
......@@ -140,6 +140,7 @@ rust_kernel::fail() {
// FIXME: On windows we're getting "Application has requested the
// Runtime to terminate it in an unusual way" when trying to shutdown
// cleanly.
set_exit_status(PROC_FAIL_CODE);
#if defined(__WIN32__)
exit(rval);
#endif
......@@ -210,6 +211,15 @@ rust_kernel::win32_require(LPCTSTR fn, BOOL ok) {
}
#endif
void
rust_kernel::set_exit_status(int code) {
scoped_lock with(_kernel_lock);
// If we've already failed then that's the code we're going to use
if (rval != PROC_FAIL_CODE) {
rval = code;
}
}
//
// Local Variables:
// mode: C++
......
......@@ -34,9 +34,10 @@ private:
rust_task_id max_id;
hash_map<rust_task_id, rust_task *> task_table;
int rval;
public:
const size_t num_threads;
int rval;
volatile int live_tasks;
struct rust_env *env;
......@@ -68,6 +69,7 @@ public:
rust_task_id create_task(rust_task *spawner, const char *name);
rust_task *get_task_by_id(rust_task_id id);
void release_task_id(rust_task_id tid);
void set_exit_status(int code);
};
#endif /* RUST_KERNEL_H */
......@@ -82,8 +82,6 @@ void
rust_scheduler::fail() {
log(NULL, log_err, "domain %s @0x%" PRIxPTR " root task failed",
name, this);
I(this, kernel->rval == 0);
kernel->rval = PROC_FAIL_CODE;
kernel->fail();
}
......
......@@ -41,6 +41,7 @@ rust_port_size
rust_process_wait
rust_ptr_eq
rust_run_program
rust_set_exit_status
rust_start
rust_getcwd
rust_task_is_unwinding
......
// error-pattern:whatever
fn main() {
log(error, "whatever");
// Setting the exit status only works when the scheduler terminates
// normally. In this case we're going to fail, so instead of of
// returning 50 the process will return the typical rt failure code.
sys::set_exit_status(50);
fail;
}
\ No newline at end of file
// error-pattern:whatever
fn main() {
log(error, "whatever");
task::spawn {||
resource r(_i: ()) {
// Setting the exit status after the runtime has already
// failed has no effect and the process exits with the
// runtime's exit code
sys::set_exit_status(50);
}
let i = r(());
};
fail;
}
\ No newline at end of file
// error-pattern:whatever
fn main() {
log(error, "whatever");
// 101 is the code the runtime uses on task failure and the value
// compiletest expects run-fail tests to return.
sys::set_exit_status(101);
}
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册