svn commit: r345196 - head/sys/sys
Gleb Smirnoff
glebius at FreeBSD.org
Fri Mar 15 18:18:07 UTC 2019
Author: glebius
Date: Fri Mar 15 18:18:05 2019
New Revision: 345196
URL: https://svnweb.freebsd.org/changeset/base/345196
Log:
Deanonymize thread and proc state enums, so that a userland app can
use them without redefining the value names. New clang no longer
allows to redefine a enum value name to the same value.
Bump __FreeBSD_version, since ports depend on that.
Discussed with: jhb
Modified:
head/sys/sys/param.h
head/sys/sys/proc.h
Modified: head/sys/sys/param.h
==============================================================================
--- head/sys/sys/param.h Fri Mar 15 18:06:51 2019 (r345195)
+++ head/sys/sys/param.h Fri Mar 15 18:18:05 2019 (r345196)
@@ -60,7 +60,7 @@
* in the range 5 to 9.
*/
#undef __FreeBSD_version
-#define __FreeBSD_version 1300014 /* Master, propagated to newvers */
+#define __FreeBSD_version 1300015 /* Master, propagated to newvers */
/*
* __FreeBSD_kernel__ indicates that this system uses the kernel of FreeBSD,
Modified: head/sys/sys/proc.h
==============================================================================
--- head/sys/sys/proc.h Fri Mar 15 18:06:51 2019 (r345195)
+++ head/sys/sys/proc.h Fri Mar 15 18:18:05 2019 (r345196)
@@ -326,7 +326,7 @@ struct thread {
* or already have been set in the allocator, constructor, etc.
*/
struct pcb *td_pcb; /* (k) Kernel VA of pcb and kstack. */
- enum {
+ enum td_states {
TDS_INACTIVE = 0x0,
TDS_INHIBITED,
TDS_CAN_RUN,
@@ -573,7 +573,7 @@ struct proc {
int p_flag; /* (c) P_* flags. */
int p_flag2; /* (c) P2_* flags. */
- enum {
+ enum p_states {
PRS_NEW = 0, /* In creation */
PRS_NORMAL, /* threads can be run. */
PRS_ZOMBIE
More information about the svn-src-all
mailing list