diff options
author | kib <kib@FreeBSD.org> | 2016-08-03 10:23:42 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2016-08-03 10:23:42 +0000 |
commit | 60a7e914b7a7ce14c22f7ba6905a1bb18d998346 (patch) | |
tree | 18c98dbe9080624db1683aa3d7bbf9baec5989dc /lib/libthr/thread/thr_once.c | |
parent | f0f9827a6a8e876da19ad1826acf0fbbe97ad82f (diff) | |
download | FreeBSD-src-60a7e914b7a7ce14c22f7ba6905a1bb18d998346.zip FreeBSD-src-60a7e914b7a7ce14c22f7ba6905a1bb18d998346.tar.gz |
MFC r303393:
Remove empty initializer for the once facility.
Diffstat (limited to 'lib/libthr/thread/thr_once.c')
-rw-r--r-- | lib/libthr/thread/thr_once.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/libthr/thread/thr_once.c b/lib/libthr/thread/thr_once.c index 4f70374..4492777 100644 --- a/lib/libthr/thread/thr_once.c +++ b/lib/libthr/thread/thr_once.c @@ -92,8 +92,3 @@ _pthread_once(pthread_once_t *once_control, void (*init_routine) (void)) _thr_umtx_wake(&once_control->state, INT_MAX, 0); return (0); } - -void -_thr_once_init() -{ -} |