blob: f08f3c36ed40d3b758319d99aa8770c523510808 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef _LINUX_PRCTL_H
#define _LINUX_PRCTL_H
/* Values to pass as first argument to prctl() */
#define PR_SET_PDEATHSIG 1 /* Second arg is a signal */
#endif /* _LINUX_PRCTL_H */
|