git: 666584a04da8 - stable/13 - proc: add PROC_WAIT_UNLOCKED

Mateusz Guzik mjg at FreeBSD.org
Mon Jun 7 00:40:13 UTC 2021


The branch stable/13 has been updated by mjg:

URL: https://cgit.FreeBSD.org/src/commit/?id=666584a04da84b6dae7a19b7525b23effd5060b6

commit 666584a04da84b6dae7a19b7525b23effd5060b6
Author:     Mateusz Guzik <mjg at FreeBSD.org>
AuthorDate: 2021-05-27 14:29:14 +0000
Commit:     Mateusz Guzik <mjg at FreeBSD.org>
CommitDate: 2021-06-07 00:34:53 +0000

    proc: add PROC_WAIT_UNLOCKED
    
    (cherry picked from commit 528f8f38953d92aa917cbe70d3c72d89440624ca)
---
 sys/sys/proc.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys/sys/proc.h b/sys/sys/proc.h
index 05fdc83fd1e2..7a2210778a39 100644
--- a/sys/sys/proc.h
+++ b/sys/sys/proc.h
@@ -901,6 +901,7 @@ extern pid_t pid_max;
 #define	PROC_TRYLOCK(p)	mtx_trylock(&(p)->p_mtx)
 #define	PROC_UNLOCK(p)	mtx_unlock(&(p)->p_mtx)
 #define	PROC_LOCKED(p)	mtx_owned(&(p)->p_mtx)
+#define	PROC_WAIT_UNLOCKED(p)	mtx_wait_unlocked(&(p)->p_mtx)
 #define	PROC_LOCK_ASSERT(p, type)	mtx_assert(&(p)->p_mtx, (type))
 
 /* Lock and unlock a process group. */


More information about the dev-commits-src-all mailing list