diff options
author | David Xu <davidxu@FreeBSD.org> | 2002-10-30 03:01:28 +0000 |
---|---|---|
committer | David Xu <davidxu@FreeBSD.org> | 2002-10-30 03:01:28 +0000 |
commit | 7b290dd00845192c41bd725302eefe8480a32ae7 (patch) | |
tree | 916130f4f6874d4070fb4be4e40922426cfd0255 /sys/kern/kern_thread.c | |
parent | 37fcb8bcc8f5e86be473c31a6fbb7f88741b4700 (diff) | |
download | src-7b290dd00845192c41bd725302eefe8480a32ae7.tar.gz src-7b290dd00845192c41bd725302eefe8480a32ae7.zip |
Style fixes.
Notes
Notes:
svn path=/head/; revision=106182
Diffstat (limited to 'sys/kern/kern_thread.c')
-rw-r--r-- | sys/kern/kern_thread.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/sys/kern/kern_thread.c b/sys/kern/kern_thread.c index bc3fe3919ad3..ec030f1135c9 100644 --- a/sys/kern/kern_thread.c +++ b/sys/kern/kern_thread.c @@ -287,11 +287,11 @@ kse_thr_interrupt(struct thread *td, struct kse_thr_interrupt_args *uap) mtx_unlock_spin(&sched_lock); td->td_retval[0] = 0; td->td_retval[1] = 0; - return 0; + return (0); } } mtx_unlock_spin(&sched_lock); - return(ESRCH); + return (ESRCH); } int @@ -303,10 +303,10 @@ kse_exit(struct thread *td, struct kse_exit_args *uap) p = td->td_proc; /* KSE-enabled processes only, please. */ if (!(p->p_flag & P_KSES)) - return EINVAL; + return (EINVAL); /* must be a bound thread */ if (td->td_flags & TDF_UNBOUND) - return EINVAL; + return (EINVAL); kg = td->td_ksegrp; /* serialize killing kse */ PROC_LOCK(p); @@ -327,7 +327,7 @@ kse_exit(struct thread *td, struct kse_exit_args *uap) thread_exit(); /* NOTREACHED */ } - return 0; + return (0); } int @@ -376,7 +376,7 @@ kse_wakeup(struct thread *td, struct kse_wakeup_args *uap) mtx_unlock_spin(&sched_lock); td->td_retval[0] = 0; td->td_retval[1] = 0; - return 0; + return (0); } } } @@ -386,14 +386,14 @@ kse_wakeup(struct thread *td, struct kse_wakeup_args *uap) } if (ke == NULL) { mtx_unlock_spin(&sched_lock); - return ESRCH; + return (ESRCH); } found: thread_schedule_upcall(td, ke); mtx_unlock_spin(&sched_lock); td->td_retval[0] = 0; td->td_retval[1] = 0; - return 0; + return (0); } /* @@ -1092,7 +1092,7 @@ thread_schedule_upcall(struct thread *td, struct kse *ke) * a reserve thread, then we've used it, so do not * create an upcall. */ - return(NULL); + return (NULL); } CTR3(KTR_PROC, "thread_schedule_upcall: thread %p (pid %d, %s)", td2, td->td_proc->p_pid, td->td_proc->p_comm); @@ -1266,7 +1266,7 @@ thread_userret(struct thread *td, struct trapframe *frame) * or transform into an upcall. * (having saved their context to user space in both cases) */ - if (unbound ) { + if (unbound) { /* * We are an unbound thread, looking to return to * user space. |