linux32_sem.h revision 1.1 1 1.1 njoly /* $NetBSD: linux32_sem.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_SEM_H
30 1.1 njoly #define _LINUX32_SEM_H
31 1.1 njoly
32 1.1 njoly struct linux32_semid_ds {
33 1.1 njoly struct linux32_ipc_perm l_sem_perm;
34 1.1 njoly linux32_time_t l_sem_otime;
35 1.1 njoly linux32_time_t l_sem_ctime;
36 1.1 njoly netbsd32_voidp l_sem_base;
37 1.1 njoly netbsd32_voidp l_eventn;
38 1.1 njoly netbsd32_voidp l_eventz;
39 1.1 njoly netbsd32_voidp l_undo;
40 1.1 njoly ushort l_sem_nsems;
41 1.1 njoly };
42 1.1 njoly
43 1.1 njoly struct linux32_semid64_ds {
44 1.1 njoly struct linux32_ipc64_perm l_sem_perm;
45 1.1 njoly linux32_time_t l_sem_otime;
46 1.1 njoly netbsd32_u_long l___unused1;
47 1.1 njoly linux32_time_t l_sem_ctime;
48 1.1 njoly netbsd32_u_long l___unused2;
49 1.1 njoly netbsd32_u_long l_sem_nsems;
50 1.1 njoly netbsd32_u_long l___unused3;
51 1.1 njoly netbsd32_u_long l___unused4;
52 1.1 njoly };
53 1.1 njoly
54 1.1 njoly typedef netbsd32_pointer_t linux32_semid_dsp;
55 1.1 njoly
56 1.1 njoly union linux32_semun {
57 1.1 njoly int l_val;
58 1.1 njoly linux32_semid_dsp l_buf;
59 1.1 njoly netbsd32_u_shortp l_array;
60 1.1 njoly netbsd32_voidp l___buf;
61 1.1 njoly netbsd32_voidp l___pad;
62 1.1 njoly };
63 1.1 njoly
64 1.1 njoly #define LINUX32_GETPID 11
65 1.1 njoly #define LINUX32_GETVAL 12
66 1.1 njoly #define LINUX32_GETALL 13
67 1.1 njoly #define LINUX32_GETNCNT 14
68 1.1 njoly #define LINUX32_GETZCNT 15
69 1.1 njoly #define LINUX32_SETVAL 16
70 1.1 njoly #define LINUX32_SETALL 17
71 1.1 njoly
72 1.1 njoly #endif /* _LINUX32_SEM_H */
73