diff options
| author | Konstantin Belousov <kib@FreeBSD.org> | 2026-05-21 19:11:02 +0000 |
|---|---|---|
| committer | Konstantin Belousov <kib@FreeBSD.org> | 2026-07-07 21:54:41 +0000 |
| commit | 193fd496995d7d22d65c424716e8308fa769aa0a (patch) | |
| tree | 58cd19bf9d4ce584a9e721a69c48dd05c9bbd0dc | |
| parent | 77b6adbe5e351d1907e14d21c49291ff40ba879a (diff) | |
sys/capsicum.h: fix comment for CAP_PDWAIT
Reviewed by: markj
Sponsored by: The FreeBSD Foundation
MFC after: 1 week
Differential revision: https://reviews.freebsd.org/D57163
| -rw-r--r-- | sys/sys/capsicum.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/sys/capsicum.h b/sys/sys/capsicum.h index 9ef2f0d48d38..803804a38734 100644 --- a/sys/sys/capsicum.h +++ b/sys/sys/capsicum.h @@ -262,12 +262,7 @@ /* Process management via process descriptors. */ /* Allows for pdgetpid(2). */ #define CAP_PDGETPID CAPRIGHT(1, 0x0000000000000200ULL) -/* - * Allows for pdwait4(2). - * - * XXX: this constant was imported unused, but is targeted to be implemented - * in the future (bug 235871). - */ +/* Allows for pdwait(2). */ #define CAP_PDWAIT CAPRIGHT(1, 0x0000000000000400ULL) /* Allows for pdkill(2). */ #define CAP_PDKILL CAPRIGHT(1, 0x0000000000000800ULL) |
