git: 2713657663e6 - stable/14 - kern_sigsuspend: rename wchan
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 12 Jun 2025 04:48:39 UTC
The branch stable/14 has been updated by kib:
URL: https://cgit.FreeBSD.org/src/commit/?id=2713657663e6757576951d2cbe4990f75058932c
commit 2713657663e6757576951d2cbe4990f75058932c
Author: Konstantin Belousov <kib@FreeBSD.org>
AuthorDate: 2025-06-09 02:53:00 +0000
Commit: Konstantin Belousov <kib@FreeBSD.org>
CommitDate: 2025-06-12 04:28:27 +0000
kern_sigsuspend: rename wchan
(cherry picked from commit 2be717b45a33b733d7a79c996897f60c8ed70735)
---
sys/kern/kern_sig.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/kern/kern_sig.c b/sys/kern/kern_sig.c
index 3dec17da3ca9..cc0aecbc7756 100644
--- a/sys/kern/kern_sig.c
+++ b/sys/kern/kern_sig.c
@@ -1650,7 +1650,7 @@ 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)
+ "sigsusp", 0) == 0)
/* void */;
thread_suspend_check(0);
mtx_lock(&p->p_sigacts->ps_mtx);