diff options
author | David Leonard <d@cvs.openbsd.org> | 1999-06-09 07:16:18 +0000 |
---|---|---|
committer | David Leonard <d@cvs.openbsd.org> | 1999-06-09 07:16:18 +0000 |
commit | 5b25504c910ae952393636884728bb911ccd8733 (patch) | |
tree | 883d88f07de3449ef2ca038b75c007b57ce95e3d /lib/libpthread/uthread/uthread_join.c | |
parent | 26ab430a80ba9c64b06a358f6b69d491a912f54a (diff) |
document cancellation point handling a bit better
Diffstat (limited to 'lib/libpthread/uthread/uthread_join.c')
-rw-r--r-- | lib/libpthread/uthread/uthread_join.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libpthread/uthread/uthread_join.c b/lib/libpthread/uthread/uthread_join.c index ab7b7860ecc..42ef1f778bc 100644 --- a/lib/libpthread/uthread/uthread_join.c +++ b/lib/libpthread/uthread/uthread_join.c @@ -29,7 +29,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $OpenBSD: uthread_join.c,v 1.4 1999/05/26 00:18:24 d Exp $ + * $OpenBSD: uthread_join.c,v 1.5 1999/06/09 07:16:17 d Exp $ */ #include <errno.h> #ifdef _THREAD_SAFE @@ -100,7 +100,7 @@ pthread_join(pthread_t pthread, void **thread_return) /* Return the thread's return value: */ *thread_return = pthread->ret; - /* This operation was a cancel point: */ + /* No longer in a cancellation point: */ _thread_leave_cancellation_point(); /* Return the completion status: */ |