Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 16 Feb 2013 17:58:15 -0800
From:      hiren panchasara <hiren.panchasara@gmail.com>
To:        freebsd-current <freebsd-current@freebsd.org>
Subject:   Running out of bits p_flag (sys/sys/proc.h)
Message-ID:  <CALCpEUF0UwmEa4T3gyAH=YKDYczxZgUjtdjGZikNU4yTd=KKDg@mail.gmail.com>

next in thread | raw e-mail | index | archive | help
With revision=246484, it seems we have hit the limit.
At $WORK we have one more flag and to accommodate that we need to bump this up.

Can p_flag be bumped up to u_long?

Index: proc.h
===================================================================
--- proc.h      (revision 245937)
+++ proc.h      (working copy)
@@ -497,7 +497,7 @@
         * The following don't make too much sense.
         * See the td_ or ke_ versions of the same flags.
         */
-       int             p_flag;         /* (c) P_* flags. */
+       u_long          p_flag;         /* (c) P_* flags. */
        enum {
                PRS_NEW = 0,            /* In creation */
                PRS_NORMAL,             /* threads can be run. */

Thanks,
Hiren



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CALCpEUF0UwmEa4T3gyAH=YKDYczxZgUjtdjGZikNU4yTd=KKDg>