aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-23 08:58:13 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-23 08:58:13 +0000
commitc431879a6827ebd72ffecf6e9e21e82092ebfbda (patch)
tree8a2105423cde0259869733c752c7e7b7d0faeee7
parent64c35be42c436538efc25db5c6e4f037f90c686a (diff)
downloadruby-c431879a6827ebd72ffecf6e9e21e82092ebfbda.tar.gz
* thread.c (rb_thread_blocking_region): fix typo in a document.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19479 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog6
-rw-r--r--thread.c3
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f9407e99da..446d7ef709 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,10 @@
+Tue Sep 23 17:56:44 2008 Koichi Sasada <ko1@atdot.net>
+
+ * thread.c (rb_thread_blocking_region): fix typo in a document.
+
Tue Sep 23 17:50:35 2008 Koichi Sasada <ko1@atdot.net>
- * thread.c (rb_thread_blocking_region): write a document
+ * thread.c (rb_thread_blocking_region): write a document.
Tue Sep 23 17:14:31 2008 Koichi Sasada <ko1@atdot.net>
diff --git a/thread.c b/thread.c
index 8eb0597b83..70b369a164 100644
--- a/thread.c
+++ b/thread.c
@@ -952,9 +952,10 @@ rb_thread_schedule(void)
* If another thread interrupts this thread (Thread#kill, signal deliverly,
* VM-shutdown request, and so on), `ubf()' is called (`ubf()' means
* "un-blocking function"). `ubf()' should interrupt `func()' execution.
+ *
* There are built-in ubfs and you can specify these ubfs.
* However, we can not guarantee our built-in ubfs interrupt
- * your `func()' correctly. Becareful to use rb_thread_blocking_region().
+ * your `func()' correctly. Be careful to use rb_thread_blocking_region().
*
* * RUBY_UBF_IO: ubf for IO operation
* * RUBY_UBF_PROCESS: ubf for process operation