summaryrefslogtreecommitdiff
path: root/gv.h
diff options
context:
space:
mode:
authorDavid Mitchell <davem@iabyn.com>2010-06-04 21:28:20 +0100
committerDavid Mitchell <davem@iabyn.com>2010-06-04 21:29:30 +0100
commit6ca8229ddb2de12c1f8f877d70989420b70a8072 (patch)
treec8daf8cb5365eff472ec0bed98e7ad61a8bf3915 /gv.h
parent354b0578ec63c058cd73f018f484808b22cc8631 (diff)
downloadperl-6ca8229ddb2de12c1f8f877d70989420b70a8072.tar.gz
express DM_[GU]ID flags in terms of components
Diffstat (limited to 'gv.h')
-rw-r--r--gv.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gv.h b/gv.h
index 4286491640..25079a8064 100644
--- a/gv.h
+++ b/gv.h
@@ -168,13 +168,13 @@ Return the SV from the GV.
# define Nullgv Null(GV*)
#endif
-#define DM_UID 0x003
#define DM_RUID 0x001
#define DM_EUID 0x002
+#define DM_UID (DM_RUID|DM_EUID)
#define DM_ARRAY_ISA 0x004
-#define DM_GID 0x030
#define DM_RGID 0x010
#define DM_EGID 0x020
+#define DM_GID (DM_RGID|DM_EGID)
#define DM_DELAY 0x100
/*