diff options
author | Daniel Eischen <deischen@FreeBSD.org> | 2010-05-24 13:43:11 +0000 |
---|---|---|
committer | Daniel Eischen <deischen@FreeBSD.org> | 2010-05-24 13:43:11 +0000 |
commit | 9ed8360e53cdce41f93b9bae9af33dafe2f5c0a6 (patch) | |
tree | 7739983d782d78c41c102afba90baf3905c1fead | |
parent | 626a7b1d902a6b3f670a9f3010da423d701fc110 (diff) |
Notes
-rw-r--r-- | lib/libthr/thread/thr_condattr.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libthr/thread/thr_condattr.c b/lib/libthr/thread/thr_condattr.c index f2b126fe0f16..75aa6ea6b8ca 100644 --- a/lib/libthr/thread/thr_condattr.c +++ b/lib/libthr/thread/thr_condattr.c @@ -79,8 +79,7 @@ _pthread_condattr_destroy(pthread_condattr_t *attr) } int -_pthread_condattr_getclock(const pthread_condattr_t *attr, - clockid_t *clock_id) +_pthread_condattr_getclock(const pthread_condattr_t *attr, clockid_t *clock_id) { if (attr == NULL || *attr == NULL) return (EINVAL); @@ -89,8 +88,7 @@ _pthread_condattr_getclock(const pthread_condattr_t *attr, } int -_pthread_condattr_setclock(pthread_condattr_t *attr, - clockid_t clock_id) +_pthread_condattr_setclock(pthread_condattr_t *attr, clockid_t clock_id) { if (attr == NULL || *attr == NULL) return (EINVAL); |