diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2016-03-17 12:30:05 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2016-03-17 12:30:05 +0000 |
commit | 5f743a2d8b406a317180efcac6c7c8955ff2a10a (patch) | |
tree | 1223deee4ee2641775f5159867dd6bdf2edeb299 | |
parent | 1f378ba84f8d5afdbe13b91e6c96b5d49fb500f4 (diff) |
Fix a comment about ``p_usrpri'', from Michal Mazurek.
-rw-r--r-- | sys/sys/sysctl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h index 915d262e000..a8c9a408a1f 100644 --- a/sys/sys/sysctl.h +++ b/sys/sys/sysctl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sysctl.h,v 1.158 2016/02/29 19:44:07 naddy Exp $ */ +/* $OpenBSD: sysctl.h,v 1.159 2016/03/17 12:30:04 mpi Exp $ */ /* $NetBSD: sysctl.h,v 1.16 1996/04/09 20:55:36 cgd Exp $ */ /* @@ -377,7 +377,7 @@ struct kinfo_proc { int8_t p_stat; /* CHAR: S* process status (from LWP). */ u_int8_t p_priority; /* U_CHAR: Process priority. */ - u_int8_t p_usrpri; /* U_CHAR: User-priority based on p_cpu and ps_nice. */ + u_int8_t p_usrpri; /* U_CHAR: User-priority based on p_estcpu and ps_nice. */ u_int8_t p_nice; /* U_CHAR: Process "nice" value. */ u_int16_t p_xstat; /* U_SHORT: Exit status for wait; also stop signal. */ |