git: 73bddd004855 - stable/14 - kern_sigsuspend(): style
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 12 Jun 2025 04:48:38 UTC
The branch stable/14 has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=73bddd004855bd1114931d5e44622a20e4c1a639
commit 73bddd004855bd1114931d5e44622a20e4c1a639
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2025-06-08 03:23:31 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2025-06-12 04:28:27 +0000
kern_sigsuspend(): style
(cherry picked from commit 8226a8b588101b7540249fa208a7ea67e4523c73)
---
sys/kern/kern_sig.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/kern/kern_sig.c b/sys/kern/kern_sig.c
index 0c0be79b05dc..3dec17da3ca9 100644
--- a/sys/kern/kern_sig.c
+++ b/sys/kern/kern_sig.c
@@ -1649,8 +1649,8 @@ kern_sigsuspend(struct thread *td, sigset_t mask)
*/
(p->p_sysent->sv_set_syscall_retval)(td, EINTR);
for (has_sig = 0; !has_sig;) {
- while (msleep(&p->p_sigacts, &p->p_mtx, PPAUSE|PCATCH, "pause",
- 0) == 0)
+ while (msleep(&p->p_sigacts, &p->p_mtx, PPAUSE | PCATCH,
+ "pause", 0) == 0)
/* void */;
thread_suspend_check(0);
mtx_lock(&p->p_sigacts->ps_mtx);