Home | History | Annotate | Line # | Download | only in common
linux32_shm.h revision 1.1
      1  1.1  njoly /* $NetBSD: linux32_shm.h,v 1.1 2008/05/20 17:31:56 njoly Exp $ */
      2  1.1  njoly 
      3  1.1  njoly /*
      4  1.1  njoly  * Copyright (c) 2008 Nicolas Joly
      5  1.1  njoly  * All rights reserved.
      6  1.1  njoly  *
      7  1.1  njoly  * Redistribution and use in source and binary forms, with or without
      8  1.1  njoly  * modification, are permitted provided that the following conditions
      9  1.1  njoly  * are met:
     10  1.1  njoly  * 1. Redistributions of source code must retain the above copyright
     11  1.1  njoly  *    notice, this list of conditions and the following disclaimer.
     12  1.1  njoly  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.1  njoly  *    notice, this list of conditions and the following disclaimer in the
     14  1.1  njoly  *    documentation and/or other materials provided with the distribution.
     15  1.1  njoly  *
     16  1.1  njoly  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS
     17  1.1  njoly  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     18  1.1  njoly  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     19  1.1  njoly  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     20  1.1  njoly  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     21  1.1  njoly  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     22  1.1  njoly  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     23  1.1  njoly  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     24  1.1  njoly  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     25  1.1  njoly  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     26  1.1  njoly  * POSSIBILITY OF SUCH DAMAGE.
     27  1.1  njoly  */
     28  1.1  njoly 
     29  1.1  njoly #ifndef _LINUX32_SHM_H
     30  1.1  njoly #define _LINUX32_SHM_H
     31  1.1  njoly 
     32  1.1  njoly struct linux32_shmid_ds {
     33  1.1  njoly 	struct linux32_ipc_perm	l_shm_perm;
     34  1.1  njoly 	int			l_shm_segsz;
     35  1.1  njoly 	linux32_time_t		l_shm_atime;
     36  1.1  njoly 	linux32_time_t		l_shm_dtime;
     37  1.1  njoly 	linux32_time_t		l_shm_ctime;
     38  1.1  njoly 	ushort			l_shm_cpid;
     39  1.1  njoly 	ushort			l_shm_lpid;
     40  1.1  njoly 	short			l_shm_nattch;
     41  1.1  njoly 	ushort			l_private1;
     42  1.1  njoly 	netbsd32_voidp		l_private2;
     43  1.1  njoly 	netbsd32_voidp		l_private3;
     44  1.1  njoly };
     45  1.1  njoly 
     46  1.1  njoly struct linux32_shmid64_ds {
     47  1.1  njoly 	struct linux32_ipc64_perm l_shm_perm;
     48  1.1  njoly 	netbsd32_size_t		l_shm_segsz;
     49  1.1  njoly 	linux32_time_t		l_shm_atime;
     50  1.1  njoly 	netbsd32_u_long		l____unused1;
     51  1.1  njoly 	linux32_time_t		l_shm_dtime;
     52  1.1  njoly 	netbsd32_u_long		l____unused2;
     53  1.1  njoly 	linux32_time_t		l_shm_ctime;
     54  1.1  njoly 	netbsd32_u_long		l____unused3;
     55  1.1  njoly 	int			l_shm_cpid;
     56  1.1  njoly 	int			l_shm_lpid;
     57  1.1  njoly 	netbsd32_u_long		l_shm_nattch;
     58  1.1  njoly 	netbsd32_u_long		l___unused4;
     59  1.1  njoly 	netbsd32_u_long		l___unused5;
     60  1.1  njoly };
     61  1.1  njoly 
     62  1.1  njoly struct linux32_shminfo64 {
     63  1.1  njoly 	netbsd32_u_long		l_shmmax;
     64  1.1  njoly 	netbsd32_u_long		l_shmmin;
     65  1.1  njoly 	netbsd32_u_long		l_shmmni;
     66  1.1  njoly 	netbsd32_u_long		l_shmseg;
     67  1.1  njoly 	netbsd32_u_long		l_shmall;
     68  1.1  njoly 	netbsd32_u_long		l___unused1;
     69  1.1  njoly 	netbsd32_u_long		l___unused2;
     70  1.1  njoly 	netbsd32_u_long		l___unused3;
     71  1.1  njoly 	netbsd32_u_long		l___unused4;
     72  1.1  njoly };
     73  1.1  njoly 
     74  1.1  njoly struct linux32_shm_info {
     75  1.1  njoly 	int			l_used_ids;
     76  1.1  njoly 	netbsd32_u_long		l_shm_tot;
     77  1.1  njoly 	netbsd32_u_long		l_shm_rss;
     78  1.1  njoly 	netbsd32_u_long		l_shm_swp;
     79  1.1  njoly 	netbsd32_u_long		l_swap_attempts;
     80  1.1  njoly 	netbsd32_u_long		l_swap_successes;
     81  1.1  njoly };
     82  1.1  njoly 
     83  1.1  njoly #define LINUX32_SHM_RDONLY	0x1000
     84  1.1  njoly #define LINUX32_SHM_RND		0x2000
     85  1.1  njoly #define LINUX32_SHM_REMAP	0x4000
     86  1.1  njoly 
     87  1.1  njoly #define LINUX32_SHM_LOCK	11
     88  1.1  njoly #define LINUX32_SHM_UNLOCK	12
     89  1.1  njoly #define LINUX32_SHM_STAT	13
     90  1.1  njoly #define LINUX32_SHM_INFO	14
     91  1.1  njoly 
     92  1.1  njoly #endif /* _LINUX32_SHM_H */
     93