Remove empty initializer for the once facility. It was not needed

since r179417.

Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
This commit is contained in:
Konstantin Belousov 2016-07-27 15:14:11 +00:00
parent fd406aa3de
commit bf890e4877
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=303393
3 changed files with 0 additions and 7 deletions

View File

@ -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();

View File

@ -101,8 +101,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(void)
{
}

View File

@ -811,7 +811,6 @@ void _thr_link(struct pthread *, struct pthread *) __hidden;
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;