1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Copyright (c) 2020 FUJITSU LIMITED. All rights reserved. 4 * Author: Yang Xu <xuyang2018.jy@cn.fujitsu.com> 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