The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/compat/freebsd32/freebsd32_ipc.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 2002 Doug Rabson
    3  * All rights reserved.
    4  *
    5  * Redistribution and use in source and binary forms, with or without
    6  * modification, are permitted provided that the following conditions
    7  * are met:
    8  * 1. Redistributions of source code must retain the above copyright
    9  *    notice, this list of conditions and the following disclaimer.
   10  * 2. Redistributions in binary form must reproduce the above copyright
   11  *    notice, this list of conditions and the following disclaimer in the
   12  *    documentation and/or other materials provided with the distribution.
   13  *
   14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
   15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
   18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   24  * SUCH DAMAGE.
   25  *
   26  * $FreeBSD$
   27  */
   28 
   29 #ifndef _COMPAT_FREEBSD32_FREEBSD32_IPC_H_
   30 #define _COMPAT_FREEBSD32_FREEBSD32_IPC_H_
   31 
   32 struct ipc_perm32 {
   33         uid_t           cuid;
   34         gid_t           cgid;
   35         uid_t           uid;
   36         gid_t           gid;
   37         mode_t          mode;
   38         uint16_t        seq;
   39         uint32_t        key;
   40 };
   41 
   42 struct semid_ds32 {
   43         struct ipc_perm32 sem_perm;
   44         uint32_t        sem_base;
   45         unsigned short  sem_nsems;
   46         int32_t         sem_otime;
   47         int32_t         sem_ctime;
   48 };
   49 
   50 union semun32 {
   51         int             val;
   52         uint32_t        buf;
   53         uint32_t        array;
   54 };
   55 
   56 struct msqid_ds32 {
   57         struct ipc_perm32 msg_perm;
   58         uint32_t        msg_first;
   59         uint32_t        msg_last;
   60         uint32_t        msg_cbytes;
   61         uint32_t        msg_qnum;
   62         uint32_t        msg_qbytes;
   63         pid_t           msg_lspid;
   64         pid_t           msg_lrpid;
   65         int32_t         msg_stime;
   66         int32_t         msg_rtime;
   67         int32_t         msg_ctime;
   68 };
   69 
   70 struct shmid_ds32 {
   71         struct ipc_perm32 shm_perm;
   72         int32_t         shm_segsz;
   73         pid_t           shm_lpid;
   74         pid_t           shm_cpid;
   75         int             shm_nattch;
   76         int32_t         shm_atime;
   77         int32_t         shm_dtime;
   78         int32_t         shm_ctime;
   79 };
   80 
   81 struct shm_info32 {
   82         int32_t         used_ids;
   83         uint32_t        shm_tot;
   84         uint32_t        shm_rss;
   85         uint32_t        shm_swp;
   86         uint32_t        swap_attempts;
   87         uint32_t        swap_successes;
   88 };
   89 
   90 struct shminfo32 {
   91         uint32_t        shmmax;
   92         uint32_t        shmmin;
   93         uint32_t        shmmni;
   94         uint32_t        shmseg;
   95         uint32_t        shmall;
   96 };
   97 
   98 struct ipc_perm32_old {
   99         uint16_t        cuid;
  100         uint16_t        cgid;
  101         uint16_t        uid;
  102         uint16_t        gid;
  103         uint16_t        mode;
  104         uint16_t        seq;
  105         uint32_t        key;
  106 };
  107 
  108 struct semid_ds32_old {
  109         struct ipc_perm32_old sem_perm;
  110         uint32_t        sem_base;
  111         unsigned short  sem_nsems;
  112         int32_t         sem_otime;
  113         int32_t         sem_pad1;
  114         int32_t         sem_ctime;
  115         int32_t         sem_pad2;
  116         int32_t         sem_pad3[4];
  117 };
  118 
  119 struct msqid_ds32_old {
  120         struct ipc_perm32_old msg_perm;
  121         uint32_t        msg_first;
  122         uint32_t        msg_last;
  123         uint32_t        msg_cbytes;
  124         uint32_t        msg_qnum;
  125         uint32_t        msg_qbytes;
  126         pid_t           msg_lspid;
  127         pid_t           msg_lrpid;
  128         int32_t         msg_stime;
  129         int32_t         msg_pad1;
  130         int32_t         msg_rtime;
  131         int32_t         msg_pad2;
  132         int32_t         msg_ctime;
  133         int32_t         msg_pad3;
  134         int32_t         msg_pad4[4];
  135 };
  136 
  137 struct shmid_ds32_old {
  138         struct ipc_perm32_old shm_perm;
  139         int32_t         shm_segsz;
  140         pid_t           shm_lpid;
  141         pid_t           shm_cpid;
  142         int16_t         shm_nattch;
  143         int32_t         shm_atime;
  144         int32_t         shm_dtime;
  145         int32_t         shm_ctime;
  146         uint32_t        shm_internal;
  147 };
  148 
  149 #endif /* !_COMPAT_FREEBSD32_FREEBSD32_IPC_H_ */

Cache object: 218c24f7eb0d86fb689f8b672e3ebc60


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.