aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorNIIBE Yutaka <gniibe@fsij.org>2016-05-16 14:50:04 +0900
committerNIIBE Yutaka <gniibe@fsij.org>2016-05-16 14:50:04 +0900
commitb7c6dadcfbc8313e548f8e6c616bf1d7076144d7 (patch)
tree3983fbd2529ee16c68baf503c0e735d295dab7d3 /doc
parenta82acac8df6de74b9ce406d4bde99b8b5ebb7340 (diff)
Fix IRQ handling and improve cancellation implementation
Diffstat (limited to 'doc')
-rw-r--r--doc/chopstx-api.texi5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/chopstx-api.texi b/doc/chopstx-api.texi
index 65f8a71..7c5f5a2 100644
--- a/doc/chopstx-api.texi
+++ b/doc/chopstx-api.texi
@@ -125,7 +125,7 @@ Claim interrupt @var{intr} with @var{irq_num} for this thread.
Wait for the interrupt @var{intr} to be occured.
-This function is DEPRECATED. Use chopstx_poll.
+This function is DEPRECATED. Please use chopstx_poll.
@end deftypefun
@subheading chopstx_cleanup_push
@@ -158,12 +158,13 @@ IRQ, it will be released, too. This function never returns.
@subheading chopstx_join
@anchor{chopstx_join}
-@deftypefun {void} {chopstx_join} (chopstx_t @var{thd}, void ** @var{ret})
+@deftypefun {int} {chopstx_join} (chopstx_t @var{thd}, void ** @var{ret})
@var{thd}: Thread to wait
@var{ret}: Pointer to void * to store return value
Waits for the thread of @var{thd} to terminate.
+Returns 0 on success, 1 when waiting is interrupted.
@end deftypefun
@subheading chopstx_wakeup_usec_wait