libthr: Remove _thr_rtld_fini(), unused since r245630.

This commit is contained in:
Jilles Tjoelker 2013-04-12 19:47:32 +00:00
parent 139f7f9bf5
commit 706b04b66f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=249425
2 changed files with 0 additions and 12 deletions

View File

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

View File

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