xref: /aosp_15_r20/external/ltp/include/lapi/msg.h (revision 49cdfc7efb34551c7342be41a7384b9c40d7cab7)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (c) 2020 FUJITSU LIMITED. All rights reserved.
4  * Author: Yang Xu <[email protected]>
5  */
6 
7 #ifndef LAPI_MSG_H__
8 #define LAPI_MSG_H__
9 
10 #include <sys/msg.h>
11 
12 #ifndef MSG_COPY
13 # define MSG_COPY  040000  /* copy (not remove) all queue messages */
14 #endif
15 
16 #ifndef MSG_STAT_ANY
17 # define MSG_STAT_ANY 13
18 #endif
19 
20 #endif /* LAPI_MSG_H__ */
21