diff options
author | kib <kib@FreeBSD.org> | 2016-04-11 09:29:08 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2016-04-11 09:29:08 +0000 |
commit | d1b3dae178716d84ed93c932b66dc63df8ef91c6 (patch) | |
tree | 5bf4c0c616a1b5252acd909a5a72287898df4f3a /lib/libthr/thread | |
parent | e992763185cda699b8d296bb0f023df1769ec80f (diff) | |
download | FreeBSD-src-d1b3dae178716d84ed93c932b66dc63df8ef91c6.zip FreeBSD-src-d1b3dae178716d84ed93c932b66dc63df8ef91c6.tar.gz |
MFC r297535:
Remove unused variable.
Diffstat (limited to 'lib/libthr/thread')
-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 14114b3..77c2cf7 100644 --- a/lib/libthr/thread/thr_init.c +++ b/lib/libthr/thread/thr_init.c @@ -106,7 +106,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 88a9809..e2e8b0f 100644 --- a/lib/libthr/thread/thr_private.h +++ b/lib/libthr/thread/thr_private.h @@ -704,7 +704,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; |