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 #ifndef LAPI_MSG_H 7 #define LAPI_MSG_H 8 9 #include <sys/msg.h> 10 11 #ifndef MSG_COPY 12 # define MSG_COPY 040000 /* copy (not remove) all queue messages */ 13 #endif 14 15 #ifndef MSG_STAT_ANY 16 # define MSG_STAT_ANY 13 17 #endif 18 19 #endif 20