| Commit message (Expand) | Author | Age | Files | Lines |
* | * process.c (pst_to_s): returns a string such as "pid 10220 exit 1" | akr | 2007-10-15 | 1 | -38/+55 |
* | * process.c (Init_process): win32 has our own WNOHANG definition, so | usa | 2007-10-04 | 1 | -2/+0 |
* | * process.c (rb_waitpid): no needs to poll. [ruby-dev:31871] | nobu | 2007-09-26 | 1 | -7/+2 |
* | * io.c (popen_exec), process.c (rb_spawn): stop other threads before | nobu | 2007-09-20 | 1 | -4/+14 |
* | * thread.c: fix Mutex to be interruptable lock. | ko1 | 2007-08-27 | 1 | -2/+2 |
* | * encoding.c: provide basic features for M17N. | matz | 2007-08-25 | 1 | -1/+1 |
* | * configure.in (group_member): check if presents. | nobu | 2007-08-23 | 1 | -3/+0 |
* | * eval_error.ci (ruby_error_print): call error_print. | nobu | 2007-08-18 | 1 | -16/+141 |
* | * process.c (detach_process_watcher): should not pass the pointer | nobu | 2007-08-18 | 1 | -9/+7 |
* | * process.c (proc_geteuid): fix strange cast. [ruby-dev:31417] | ko1 | 2007-08-15 | 1 | -1/+1 |
* | * blockinlining.c: remove "yarv" prefix. | ko1 | 2007-07-12 | 1 | -1/+1 |
* | * process.c (proc_getgroups): use GIDT2NUM for rb_gid_t. | nobu | 2007-06-26 | 1 | -1/+1 |
* | * eval.c: remove ruby_current_node and change eval() prototype. | ko1 | 2007-06-24 | 1 | -1/+1 |
* | * vm.c: some refactoring. | ko1 | 2007-06-24 | 1 | -0/+2 |
* | Fixed [UG]ID::eid=. Fixes bug # 10370 | ryan | 2007-06-12 | 1 | -2/+2 |
* | * include/ruby: moved public headers. | nobu | 2007-06-10 | 1 | -3/+3 |
* | * process.c (rb_fork): flush stdouts always before fork(2). | nobu | 2007-03-20 | 1 | -3/+9 |
* | * process.c (rb_waitpid_blocking, rb_waitpid): use UBF feature. | nobu | 2007-02-24 | 1 | -15/+35 |
* | * configure.in (pid_t, uid_t, gid_t): check if defined. | nobu | 2007-02-18 | 1 | -137/+162 |
* | * process.c: fix to use rb_status_line_set/get/clear(). | ko1 | 2007-02-08 | 1 | -11/+19 |
* | * this commit is a result of refactoring. only renaming functions, | ko1 | 2007-02-07 | 1 | -0/+2 |
* | * blockinlining.c, compile.c, compile.h, error.c, eval.c, | ko1 | 2007-02-06 | 1 | -1/+1 |
* | * intern.h: prepare rb_last_status_get() and rb_last_status_set(). | ko1 | 2007-02-05 | 1 | -13/+13 |
* | * eval_thread.c, common.mk: remove eval_thread.c. | ko1 | 2007-02-05 | 1 | -13/+20 |
* | * thread.c (rb_thread_stop_timer_thread(), rb_thread_reset_timer_thread(), | ko1 | 2007-01-07 | 1 | -3/+6 |
* | * Merge YARV | ko1 | 2006-12-31 | 1 | -17/+13 |
* | * lib/cgi.rb (CGI::out): specify -x option for nkf. | matz | 2006-09-04 | 1 | -0/+2 |
* | * ruby.h (struct RArray): embed small arrays. | matz | 2006-09-02 | 1 | -6/+6 |
* | * file.c (test_identical, rb_file_s_truncate): use RSTRING_PTR and | usa | 2006-08-31 | 1 | -3/+3 |
* | * ruby.h (struct RString): embed small strings. | matz | 2006-08-31 | 1 | -9/+9 |
* | * process.c (proc_setuid, proc_setgid, proc_seteuid, proc_setegid): | nobu | 2006-08-16 | 1 | -3/+31 |
* | ansificated. | akr | 2006-08-13 | 1 | -13/+5 |
* | * process.c (rb_proc_times): rename hz to hertz to avoid name | matz | 2006-07-25 | 1 | -7/+7 |
* | * process.c (rb_f_system): shouldn't block SIGCHLD if it's not | usa | 2006-07-18 | 1 | -0/+4 |
* | * process.c (rb_f_system): block SIGCHLD during the process | matz | 2006-07-18 | 1 | -4/+14 |
* | * process.c (rb_f_system): call rb_sys_fail(0) if rb_last_status | matz | 2006-07-18 | 1 | -0/+1 |
* | * process.c (rb_proc_times): use sysconf(_SC_CLK_TCK) value prior to | nobu | 2006-07-06 | 1 | -4/+10 |
* | Define Process.getrlimit and Process.setrlimit even if | akr | 2006-06-15 | 1 | -4/+0 |
* | * sprintf.c (rb_str_format): allow %c to print one character | matz | 2006-06-09 | 1 | -18/+10 |
* | * process.c: new method Process.exec. [ruby-dev:28107] | aamine | 2005-12-27 | 1 | -1/+2 |
* | document that fork doesn't copy other threads | akr | 2005-11-20 | 1 | -0/+3 |
* | * range.c (rb_range_beg_len): should return Qfalse for non-range | matz | 2005-10-05 | 1 | -0/+1 |
* | * process.c (proc_setrlimit): make the third argument (rlim_max) | akr | 2005-09-24 | 1 | -12/+24 |
* | * dir.c: changed `foo (*bar)_((boo))' to `foo (*bar)(boo)`. | ocean | 2005-09-14 | 1 | -5/+5 |
* | * bignum.c: changed `foo _((boo))' to `foo(boo)`. [ruby-dev:27056] | ocean | 2005-09-14 | 1 | -2/+2 |
* | * array.c: moved to ANSI function style from K&R function style. | ocean | 2005-09-12 | 1 | -182/+89 |
* | * merged a patch from Takahiro Kambe <taca@back-street.net> to | matz | 2005-09-08 | 1 | -6/+0 |
* | * process.c (proc_detach, proc_setmaxgroups): missing argument type | ocean | 2005-08-31 | 1 | -6/+4 |
* | * sprintf.c (rb_vsprintf, rb_sprintf): new functions return new String, | nobu | 2005-07-23 | 1 | -2/+1 |
* | * eval.c (rb_eval): pre-evaluate argument for unambiguous | matz | 2005-06-30 | 1 | -1/+1 |