diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-12-08 08:05:25 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-12-08 08:05:25 +0000 |
commit | 3335502bec2220c7d1e89929d489c1a91a1d862b (patch) | |
tree | 808a5d629a72201eed723cb4cafde5abdb94b75e /nptl | |
parent | 09efc3ba1269f79b78ee0724501fc762c2d5ab49 (diff) | |
download | glibc-3335502bec2220c7d1e89929d489c1a91a1d862b.zip glibc-3335502bec2220c7d1e89929d489c1a91a1d862b.tar.gz glibc-3335502bec2220c7d1e89929d489c1a91a1d862b.tar.bz2 |
Update.
2002-12-08 Ulrich Drepper <drepper@redhat.com>
* include/unistd.h: Declare __libc_close.
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/pthread_setcancelstate.c | 2 | ||||
-rw-r--r-- | nptl/pthread_setcanceltype.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/nptl/pthread_setcancelstate.c b/nptl/pthread_setcancelstate.c index 3f36df8..ad50d1c 100644 --- a/nptl/pthread_setcancelstate.c +++ b/nptl/pthread_setcancelstate.c @@ -47,7 +47,7 @@ pthread_setcancelstate (state, oldstate) ? PTHREAD_CANCEL_DISABLE : PTHREAD_CANCEL_ENABLE); /* Avoid doing unnecessary work. The atomic operation can - potentially be expensive if the bug has to be locked and + potentially be expensive if the memory has to be locked and remote cache lines have to be invalidated. */ if (oldval == newval) break; diff --git a/nptl/pthread_setcanceltype.c b/nptl/pthread_setcanceltype.c index 63867d3..be0056a 100644 --- a/nptl/pthread_setcanceltype.c +++ b/nptl/pthread_setcanceltype.c @@ -47,7 +47,7 @@ __pthread_setcanceltype (type, oldtype) ? PTHREAD_CANCEL_ASYNCHRONOUS : PTHREAD_CANCEL_DEFERRED); /* Avoid doing unnecessary work. The atomic operation can - potentially be expensive if the bug has to be locked and + potentially be expensive if the memory has to be locked and remote cache lines have to be invalidated. */ if (oldval == newval) break; |