Path: blob/master/arch/xtensa/include/asm/ipcbuf.h
15126 views
/*1* include/asm-xtensa/ipcbuf.h2*3* The ipc64_perm structure for the Xtensa architecture.4* Note extra padding because this structure is passed back and forth5* between kernel and user space.6*7* Copyright (C) 2001 - 2005 Tensilica Inc.8*/910#ifndef _XTENSA_IPCBUF_H11#define _XTENSA_IPCBUF_H1213/*14* Pad space is left for:15* - 32-bit mode_t and seq16* - 2 miscellaneous 32-bit values17*18* This file is subject to the terms and conditions of the GNU General19* Public License. See the file "COPYING" in the main directory of20* this archive for more details.21*/2223struct ipc64_perm24{25__kernel_key_t key;26__kernel_uid32_t uid;27__kernel_gid32_t gid;28__kernel_uid32_t cuid;29__kernel_gid32_t cgid;30__kernel_mode_t mode;31unsigned long seq;32unsigned long __unused1;33unsigned long __unused2;34};3536#endif /* _XTENSA_IPCBUF_H */373839