summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/interp.h10
-rw-r--r--include/version.h2
2 files changed, 7 insertions, 5 deletions
diff --git a/include/interp.h b/include/interp.h
index abbe764b..5bfd4e79 100644
--- a/include/interp.h
+++ b/include/interp.h
@@ -34,11 +34,13 @@ enum
enum
{
- Ppropagate = 1<<0,
- Pnotifyleader = 1<<1,
- Prestrict = 1<<2,
+ /* Prog and Progs flags */
+ Ppropagate = 1<<0, /* propagate exceptions within group */
+ Pnotifyleader = 1<<1, /* send exceptions to group leader */
+ Prestrict = 1<<2, /* enforce memory limits */
Prestricted = 1<<3,
- Pkilled = 1<<4
+ Pkilled = 1<<4,
+ Pprivatemem = 1<<5 /* keep heap and stack private */
};
typedef struct Alt Alt;
diff --git a/include/version.h b/include/version.h
index 2092c618..6c4a0453 100644
--- a/include/version.h
+++ b/include/version.h
@@ -1 +1 @@
-#define VERSION "Fourth Edition (20110208)"
+#define VERSION "Fourth Edition (20110224)"