aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid Xu <davidxu@FreeBSD.org>2003-10-08 00:30:38 +0000
committerDavid Xu <davidxu@FreeBSD.org>2003-10-08 00:30:38 +0000
commit3128827980ecd828226bb0b9cd80026e2b5f0f46 (patch)
treed16de865f05af0d87f25681f2079d718c6f23b28 /lib
parent6e812b65c6e7e935da2b6bb54418328d64ff7927 (diff)
downloadsrc-3128827980ecd828226bb0b9cd80026e2b5f0f46.tar.gz
src-3128827980ecd828226bb0b9cd80026e2b5f0f46.zip
Fix some comments for last commit.
Notes
Notes: svn path=/head/; revision=120897
Diffstat (limited to 'lib')
-rw-r--r--lib/libkse/thread/thr_cancel.c9
-rw-r--r--lib/libpthread/thread/thr_cancel.c9
2 files changed, 8 insertions, 10 deletions
diff --git a/lib/libkse/thread/thr_cancel.c b/lib/libkse/thread/thr_cancel.c
index 9d5bcccd6f90..3387b9ae99c0 100644
--- a/lib/libkse/thread/thr_cancel.c
+++ b/lib/libkse/thread/thr_cancel.c
@@ -24,7 +24,7 @@ _pthread_cancel(pthread_t pthread)
if ((ret = _thr_ref_add(curthread, pthread, /*include dead*/0)) == 0) {
/*
- * Take the scheduling lock while we change the cancel flags.
+ * Take the thread's lock while we change the cancel flags.
*/
THR_THREAD_LOCK(curthread, pthread);
THR_SCHED_LOCK(curthread, pthread);
@@ -118,7 +118,7 @@ _pthread_cancel(pthread_t pthread)
}
/*
- * Release the thread's scheduling lock and remove the
+ * Release the thread's lock and remove the
* reference:
*/
THR_SCHED_UNLOCK(curthread, pthread);
@@ -147,7 +147,7 @@ _pthread_setcancelstate(int state, int *oldstate)
int ret;
int need_exit = 0;
- /* Take the scheduling lock while fiddling with the thread's state: */
+ /* Take the thread's lock while fiddling with the state: */
THR_THREAD_LOCK(curthread, curthread);
ostate = curthread->cancelflags & PTHREAD_CANCEL_DISABLE;
@@ -187,7 +187,7 @@ _pthread_setcanceltype(int type, int *oldtype)
int ret;
int need_exit = 0;
- /* Take the scheduling lock while fiddling with the state: */
+ /* Take the thread's lock while fiddling with the state: */
THR_THREAD_LOCK(curthread, curthread);
otype = curthread->cancelflags & PTHREAD_CANCEL_ASYNCHRONOUS;
@@ -237,7 +237,6 @@ checkcancel(struct pthread *curthread)
static void
testcancel(struct pthread *curthread)
{
- /* Take the scheduling lock while fiddling with the state: */
if (checkcancel(curthread) != 0) {
/* Unlock before exiting: */
diff --git a/lib/libpthread/thread/thr_cancel.c b/lib/libpthread/thread/thr_cancel.c
index 9d5bcccd6f90..3387b9ae99c0 100644
--- a/lib/libpthread/thread/thr_cancel.c
+++ b/lib/libpthread/thread/thr_cancel.c
@@ -24,7 +24,7 @@ _pthread_cancel(pthread_t pthread)
if ((ret = _thr_ref_add(curthread, pthread, /*include dead*/0)) == 0) {
/*
- * Take the scheduling lock while we change the cancel flags.
+ * Take the thread's lock while we change the cancel flags.
*/
THR_THREAD_LOCK(curthread, pthread);
THR_SCHED_LOCK(curthread, pthread);
@@ -118,7 +118,7 @@ _pthread_cancel(pthread_t pthread)
}
/*
- * Release the thread's scheduling lock and remove the
+ * Release the thread's lock and remove the
* reference:
*/
THR_SCHED_UNLOCK(curthread, pthread);
@@ -147,7 +147,7 @@ _pthread_setcancelstate(int state, int *oldstate)
int ret;
int need_exit = 0;
- /* Take the scheduling lock while fiddling with the thread's state: */
+ /* Take the thread's lock while fiddling with the state: */
THR_THREAD_LOCK(curthread, curthread);
ostate = curthread->cancelflags & PTHREAD_CANCEL_DISABLE;
@@ -187,7 +187,7 @@ _pthread_setcanceltype(int type, int *oldtype)
int ret;
int need_exit = 0;
- /* Take the scheduling lock while fiddling with the state: */
+ /* Take the thread's lock while fiddling with the state: */
THR_THREAD_LOCK(curthread, curthread);
otype = curthread->cancelflags & PTHREAD_CANCEL_ASYNCHRONOUS;
@@ -237,7 +237,6 @@ checkcancel(struct pthread *curthread)
static void
testcancel(struct pthread *curthread)
{
- /* Take the scheduling lock while fiddling with the state: */
if (checkcancel(curthread) != 0) {
/* Unlock before exiting: */