diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | process.c | 4 |
2 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Tue Sep 30 11:29:23 2003 Tanaka Akira <[email protected]> + + * process.c (pst_inspect): describe stopped process "stopped". + Tue Sep 30 09:31:56 2003 Nobuyoshi Nakada <[email protected]> * test/runner.rb: glob for directories. @@ -162,10 +162,10 @@ pst_inspect(st) int stopsig = WSTOPSIG(status); char *signame = ruby_signal_name(stopsig); if (signame) { - snprintf(buf, sizeof(buf), ",signaled(SIG%s=%d)", signame, stopsig); + snprintf(buf, sizeof(buf), ",stopped(SIG%s=%d)", signame, stopsig); } else { - snprintf(buf, sizeof(buf), ",signaled(%d)", stopsig); + snprintf(buf, sizeof(buf), ",stopped(%d)", stopsig); } rb_str_cat2(str, buf); } |