svn commit: r303708 - stable/11/lib/libthr/thread
Konstantin Belousov
kib at FreeBSD.org
Wed Aug 3 10:18:54 UTC 2016
Author: kib
Date: Wed Aug 3 10:18:52 2016
New Revision: 303708
URL: https://svnweb.freebsd.org/changeset/base/303708
Log:
MFC r303393:
Remove empty initializer for the once facility.
Approved by: re (gjb)
Modified:
stable/11/lib/libthr/thread/thr_init.c
stable/11/lib/libthr/thread/thr_once.c
stable/11/lib/libthr/thread/thr_private.h
Directory Properties:
stable/11/ (props changed)
Modified: stable/11/lib/libthr/thread/thr_init.c
==============================================================================
--- stable/11/lib/libthr/thread/thr_init.c Wed Aug 3 09:15:10 2016 (r303707)
+++ stable/11/lib/libthr/thread/thr_init.c Wed Aug 3 10:18:52 2016 (r303708)
@@ -447,7 +447,6 @@ init_private(void)
_thr_urwlock_init(&_thr_atfork_lock);
_thr_umutex_init(&_thr_event_lock);
_thr_umutex_init(&_suspend_all_lock);
- _thr_once_init();
_thr_spinlock_init();
_thr_list_init();
_thr_wake_addr_init();
Modified: stable/11/lib/libthr/thread/thr_once.c
==============================================================================
--- stable/11/lib/libthr/thread/thr_once.c Wed Aug 3 09:15:10 2016 (r303707)
+++ stable/11/lib/libthr/thread/thr_once.c Wed Aug 3 10:18:52 2016 (r303708)
@@ -101,8 +101,3 @@ _pthread_once(pthread_once_t *once_contr
_thr_umtx_wake(&once_control->state, INT_MAX, 0);
return (0);
}
-
-void
-_thr_once_init(void)
-{
-}
Modified: stable/11/lib/libthr/thread/thr_private.h
==============================================================================
--- stable/11/lib/libthr/thread/thr_private.h Wed Aug 3 09:15:10 2016 (r303707)
+++ stable/11/lib/libthr/thread/thr_private.h Wed Aug 3 10:18:52 2016 (r303708)
@@ -811,7 +811,6 @@ void _thr_link(struct pthread *, struct
void _thr_unlink(struct pthread *, struct pthread *) __hidden;
void _thr_assert_lock_level(void) __hidden __dead2;
void _thr_ast(struct pthread *) __hidden;
-void _thr_once_init(void) __hidden;
void _thr_report_creation(struct pthread *curthread,
struct pthread *newthread) __hidden;
void _thr_report_death(struct pthread *curthread) __hidden;
More information about the svn-src-stable
mailing list