diff options
author | kib <kib@FreeBSD.org> | 2016-04-04 06:58:59 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2016-04-04 06:58:59 +0000 |
commit | 725da9cdbc9e08a7b74413f6700d80c296358e81 (patch) | |
tree | ea92b68e51628e635a031909702673aaffded4a1 | |
parent | 8998dd9081dde453ccc252cf3fc1f2e623875a75 (diff) | |
download | FreeBSD-src-725da9cdbc9e08a7b74413f6700d80c296358e81.zip FreeBSD-src-725da9cdbc9e08a7b74413f6700d80c296358e81.tar.gz |
Remove unused variable. It was write-only before r297139.
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
-rw-r--r-- | lib/libthr/thread/thr_init.c | 1 | ||||
-rw-r--r-- | lib/libthr/thread/thr_private.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/lib/libthr/thread/thr_init.c b/lib/libthr/thread/thr_init.c index f9f845b..c9f30ab 100644 --- a/lib/libthr/thread/thr_init.c +++ b/lib/libthr/thread/thr_init.c @@ -108,7 +108,6 @@ struct pthread_cond_attr _pthread_condattr_default = { .c_clockid = CLOCK_REALTIME }; -pid_t _thr_pid; int _thr_is_smp = 0; size_t _thr_guard_default; size_t _thr_stack_default = THR_STACK_DEFAULT; diff --git a/lib/libthr/thread/thr_private.h b/lib/libthr/thread/thr_private.h index 0db2dad..f35d3cd 100644 --- a/lib/libthr/thread/thr_private.h +++ b/lib/libthr/thread/thr_private.h @@ -725,7 +725,6 @@ extern struct pthread_cond_attr _pthread_condattr_default __hidden; extern struct pthread_prio _thr_priorities[] __hidden; -extern pid_t _thr_pid __hidden; extern int _thr_is_smp __hidden; extern size_t _thr_guard_default __hidden; |