mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
libthr: Remove _thr_rtld_fini(), unused since r245630.
This commit is contained in:
parent
139f7f9bf5
commit
706b04b66f
2 changed files with 0 additions and 12 deletions
|
|
@ -746,7 +746,6 @@ void _thr_ref_delete(struct pthread *, struct pthread *) __hidden;
|
|||
void _thr_ref_delete_unlocked(struct pthread *, struct pthread *) __hidden;
|
||||
int _thr_find_thread(struct pthread *, struct pthread *, int) __hidden;
|
||||
void _thr_rtld_init(void) __hidden;
|
||||
void _thr_rtld_fini(void) __hidden;
|
||||
void _thr_rtld_postfork_child(void) __hidden;
|
||||
int _thr_stack_alloc(struct pthread_attr *) __hidden;
|
||||
void _thr_stack_free(struct pthread_attr *) __hidden;
|
||||
|
|
|
|||
|
|
@ -213,14 +213,3 @@ _thr_rtld_init(void)
|
|||
_rtld_thread_init(&li);
|
||||
_thr_signal_unblock(curthread);
|
||||
}
|
||||
|
||||
void
|
||||
_thr_rtld_fini(void)
|
||||
{
|
||||
struct pthread *curthread;
|
||||
|
||||
curthread = _get_curthread();
|
||||
_thr_signal_block(curthread);
|
||||
_rtld_thread_init(NULL);
|
||||
_thr_signal_unblock(curthread);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue