1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-24 07:40:52 +00:00

Rename thread_siginfo to cpu_thread_siginfo.

Suggested by: jhb
This commit is contained in:
David Xu 2003-07-15 00:11:04 +00:00
parent c44a6dcebd
commit 20a2d71332
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=117600
9 changed files with 9 additions and 9 deletions

View File

@ -1465,7 +1465,7 @@ sendsig(sig_t catcher, int sig, sigset_t *mask, u_long code)
* Build siginfo_t for SA thread
*/
void
thread_siginfo(int sig, u_long code, siginfo_t *si)
cpu_thread_siginfo(int sig, u_long code, siginfo_t *si)
{
struct proc *p;
struct thread *td;

View File

@ -303,7 +303,7 @@ sendsig(catcher, sig, mask, code)
* Build siginfo_t for SA thread
*/
void
thread_siginfo(int sig, u_long code, siginfo_t *si)
cpu_thread_siginfo(int sig, u_long code, siginfo_t *si)
{
struct proc *p;
struct thread *td;

View File

@ -634,7 +634,7 @@ sendsig(catcher, sig, mask, code)
* Build siginfo_t for SA thread
*/
void
thread_siginfo(int sig, u_long code, siginfo_t *si)
cpu_thread_siginfo(int sig, u_long code, siginfo_t *si)
{
struct proc *p;
struct thread *td;

View File

@ -652,7 +652,7 @@ sendsig(catcher, sig, mask, code)
* Build siginfo_t for SA thread
*/
void
thread_siginfo(int sig, u_long code, siginfo_t *si)
cpu_thread_siginfo(int sig, u_long code, siginfo_t *si)
{
struct proc *p;
struct thread *td;

View File

@ -652,7 +652,7 @@ sendsig(catcher, sig, mask, code)
* Build siginfo_t for SA thread
*/
void
thread_siginfo(int sig, u_long code, siginfo_t *si)
cpu_thread_siginfo(int sig, u_long code, siginfo_t *si)
{
struct proc *p;
struct thread *td;

View File

@ -509,7 +509,7 @@ sendsig(sig_t catcher, int sig, sigset_t *mask, u_long code)
* Build siginfo_t for SA thread
*/
void
thread_siginfo(int sig, u_long code, siginfo_t *si)
cpu_thread_siginfo(int sig, u_long code, siginfo_t *si)
{
struct proc *p;
struct thread *td;

View File

@ -509,7 +509,7 @@ sendsig(sig_t catcher, int sig, sigset_t *mask, u_long code)
* Build siginfo_t for SA thread
*/
void
thread_siginfo(int sig, u_long code, siginfo_t *si)
cpu_thread_siginfo(int sig, u_long code, siginfo_t *si)
{
struct proc *p;
struct thread *td;

View File

@ -492,7 +492,7 @@ sendsig(sig_t catcher, int sig, sigset_t *mask, u_long code)
* Build siginfo_t for SA thread
*/
void
thread_siginfo(int sig, u_long code, siginfo_t *si)
cpu_thread_siginfo(int sig, u_long code, siginfo_t *si)
{
struct proc *p;
struct thread *td;

View File

@ -893,6 +893,7 @@ void cpu_set_upcall_kse(struct thread *td, struct kse_upcall *ku);
void cpu_thread_clean(struct thread *);
void cpu_thread_exit(struct thread *);
void cpu_thread_setup(struct thread *td);
void cpu_thread_siginfo(int sig, u_long code, siginfo_t *si);
void kse_reassign(struct kse *ke);
void kse_link(struct kse *ke, struct ksegrp *kg);
void kse_unlink(struct kse *ke);
@ -929,7 +930,6 @@ void upcall_stash(struct kse_upcall *ke);
void thread_sanity_check(struct thread *td, char *);
void thread_stopped(struct proc *p);
void thread_switchout(struct thread *td);
void thread_siginfo(int sig, u_long code, siginfo_t *si);
void thr_exit1(void);
#endif /* _KERNEL */