From 062580589339fdcabbc4359478bac498070e17fa Mon Sep 17 00:00:00 2001 From: rob Date: Mon, 7 Feb 2022 19:28:14 +0000 Subject: [PATCH] Tweak previous. --- bin/ps/ps.1 | 8 ++++---- sys/sys/proc.h | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/bin/ps/ps.1 b/bin/ps/ps.1 index 2105a156abc..8586836e8f4 100644 --- a/bin/ps/ps.1 +++ b/bin/ps/ps.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ps.1,v 1.120 2022/02/07 13:17:27 rob Exp $ +.\" $OpenBSD: ps.1,v 1.121 2022/02/07 19:28:14 rob Exp $ .\" $NetBSD: ps.1,v 1.16 1996/03/21 01:36:28 jtc Exp $ .\" .\" Copyright (c) 1980, 1990, 1991, 1993, 1994 @@ -345,9 +345,9 @@ PS_EMBRYO 0x20000 New process, not yet fledged PS_ZOMBIE 0x40000 Dead and ready to be waited for PS_NOBROADCASTKILL 0x80000 Process excluded from kill -1 PS_PLEDGE 0x100000 process has called pledge(2) -PS_WXNEEDED 0x00200000 /* Process is allowed to violate W^X */ -PS_EXECPLEDGE 0x00400000 /* Has exec pledges */ -PS_ORPHAN 0x00800000 /* Process is on an orphan list */ +PS_WXNEEDED 0x00200000 process allowed to violate W^X +PS_EXECPLEDGE 0x00400000 has exec pledges +PS_ORPHAN 0x00800000 process is on an orphan list .Ed .It Cm re Core residency time (in seconds; 127 = infinity). diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 9502de3ac99..2ebe71d1728 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.h,v 1.324 2022/02/07 13:17:27 rob Exp $ */ +/* $OpenBSD: proc.h,v 1.325 2022/02/07 19:28:14 rob Exp $ */ /* $NetBSD: proc.h,v 1.44 1996/04/22 01:23:21 christos Exp $ */ /*- @@ -274,7 +274,7 @@ struct process { #define PS_ZOMBIE 0x00040000 /* Dead and ready to be waited for */ #define PS_NOBROADCASTKILL 0x00080000 /* Process excluded from kill -1. */ #define PS_PLEDGE 0x00100000 /* Has called pledge(2) */ -#define PS_WXNEEDED 0x00200000 /* Process is allowed to violate W^X */ +#define PS_WXNEEDED 0x00200000 /* Process allowed to violate W^X */ #define PS_EXECPLEDGE 0x00400000 /* Has exec pledges */ #define PS_ORPHAN 0x00800000 /* Process is on an orphan list */ -- 2.20.1