mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-29 12:03:03 +00:00
Eliminate plt relocation for kse_switchin.
This commit is contained in:
parent
b75b03116f
commit
ab7f22e264
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=143946
@ -9,6 +9,7 @@ SYSCALLS= clock_gettime \
|
||||
kse_create \
|
||||
kse_exit \
|
||||
kse_release \
|
||||
kse_switchin \
|
||||
kse_thr_interrupt \
|
||||
kse_wakeup \
|
||||
sigaction \
|
||||
|
@ -40,6 +40,7 @@ __strong_reference(kse_wakeup, _thr_kse_wakeup);
|
||||
__strong_reference(kse_create, _thr_kse_create);
|
||||
__strong_reference(kse_thr_interrupt, _thr_kse_thr_interrupt);
|
||||
__strong_reference(kse_release, _thr_kse_release);
|
||||
__strong_reference(kse_switchin, _thr_kse_switchin);
|
||||
|
||||
__strong_reference(sigaction, _thr_sigaction);
|
||||
__strong_reference(sigprocmask, _thr_sigprocmask);
|
||||
|
@ -9,6 +9,7 @@ SYSCALLS= clock_gettime \
|
||||
kse_create \
|
||||
kse_exit \
|
||||
kse_release \
|
||||
kse_switchin \
|
||||
kse_thr_interrupt \
|
||||
kse_wakeup \
|
||||
sigaction \
|
||||
|
@ -40,6 +40,7 @@ __strong_reference(kse_wakeup, _thr_kse_wakeup);
|
||||
__strong_reference(kse_create, _thr_kse_create);
|
||||
__strong_reference(kse_thr_interrupt, _thr_kse_thr_interrupt);
|
||||
__strong_reference(kse_release, _thr_kse_release);
|
||||
__strong_reference(kse_switchin, _thr_kse_switchin);
|
||||
|
||||
__strong_reference(sigaction, _thr_sigaction);
|
||||
__strong_reference(sigprocmask, _thr_sigprocmask);
|
||||
|
Loading…
Reference in New Issue
Block a user