4 /* Values to pass as first argument to prctl() */
6 #define PR_SET_PDEATHSIG 1 /* Second arg is a signal */
7 #define PR_GET_PDEATHSIG 2 /* Second arg is a ptr to return the signal */
9 /* Get/set current->dumpable */
10 #define PR_GET_DUMPABLE 3
11 #define PR_SET_DUMPABLE 4
13 #endif /* _LINUX_PRCTL_H */