summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-07 14:12:04 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-07 14:12:04 +0000
commit34bb945c40beb9998e3e33ed603a5841826128c5 (patch)
tree94512da7bd44ad0ba489c205882ee9a03eb9a368 /NEWS
parentfe6273975eb7a8b8bbc48ef62dc74b7a1a8c10e8 (diff)
Add Process.setproctitle().
* ruby.c (Process.setproctitle): New method to change the title of the running process that is shown in ps(1). [Feature #8696] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42425 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index d27ad0be0b..31f4751ef7 100644
--- a/NEWS
+++ b/NEWS
@@ -48,6 +48,10 @@ with all sufficient information, see the ChangeLog file.
* misc
* Mutex#owned? is no longer experimental.
+* Process
+ * New methods:
+ * Process.setproctitle() sets the process title without affecting $0.
+
* String
* New methods:
* String#scrub and String#scrub! verify and fix invalid byte sequence.