• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2018 FUJITSU LIMITED. All rights reserved.
4  * Author: Xiao Yang <yangx.jy@cn.fujitsu.com>
5  */
6 
7 #ifndef LAPI_PRCTL_H__
8 # define LAPI_PRCTL_H__
9 
10 #include <sys/prctl.h>
11 
12 #ifndef PR_SET_CHILD_SUBREAPER
13 # define PR_SET_CHILD_SUBREAPER	36
14 # define PR_GET_CHILD_SUBREAPER	37
15 #endif
16 
17 #endif /* LAPI_PRCTL_H__ */
18