summaryrefslogtreecommitdiff
path: root/include/interp.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/interp.h')
-rw-r--r--include/interp.h10
1 files changed, 6 insertions, 4 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;