1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/* $NetBSD: linux32_types.h,v 1.18 2021/11/27 21:15:07 ryo Exp $ */
/*-
* Copyright (c) 2006 Emmanuel Dreyfus, all rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Emmanuel Dreyfus
* 4. The name of the author may not be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE THE AUTHOR AND CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#ifndef _LINUX32_TYPES_H
#define _LINUX32_TYPES_H
#if defined(__aarch64__)
#include <compat/linux32/arch/aarch64/linux32_types.h>
#elif defined(__amd64__)
#include <compat/linux32/arch/amd64/linux32_types.h>
#else
#error Undefined linux32_types.h machine type.
#endif
typedef uint16_t linux32_gid16_t;
typedef uint16_t linux32_uid16_t;
typedef netbsd32_pointer_t linux32_oldmmapp;
typedef netbsd32_pointer_t linux32_utsnamep;
typedef netbsd32_pointer_t linux32_stat64p;
typedef netbsd32_pointer_t linux32_statp;
typedef netbsd32_pointer_t linux32_statfsp;
typedef netbsd32_pointer_t linux32_statfs64p;
typedef netbsd32_pointer_t linux32_statxp;
typedef netbsd32_pointer_t linux32_sigactionp_t;
typedef netbsd32_pointer_t linux32_sigsetp_t;
typedef netbsd32_pointer_t linux32_sized_sigsetp_t;
typedef netbsd32_pointer_t linux32___sysctlp_t;
typedef netbsd32_pointer_t linux32_direntp_t;
typedef netbsd32_pointer_t linux32_dirent64p_t;
typedef netbsd32_pointer_t linux32_timep_t;
typedef netbsd32_pointer_t linux32_tmsp_t;
typedef netbsd32_pointer_t linux32_sched_paramp_t;
typedef netbsd32_pointer_t linux32_utimbufp_t;
typedef netbsd32_pointer_t linux32_oldold_utsnamep_t;
typedef netbsd32_pointer_t linux32_uidp_t;
typedef netbsd32_pointer_t linux32_gidp_t;
typedef netbsd32_pointer_t linux32_uid16p_t;
typedef netbsd32_pointer_t linux32_gid16p_t;
typedef netbsd32_pointer_t linux32_oldselectp_t;
typedef netbsd32_pointer_t linux32_sysinfop_t;
typedef netbsd32_pointer_t linux32_oldutsnamep_t;
typedef netbsd32_pointer_t linux32_timespecp_t;
typedef netbsd32_pointer_t linux32_robust_list_headp_t;
typedef netbsd32_pointer_t linux32_robust_list_headpp_t;
typedef netbsd32_pointer_t linux32_sizep_t;
typedef netbsd32_pointer_t linux32_intp_t;
struct linux32_sysctl {
netbsd32_intp name;
int nlen;
netbsd32_voidp oldval;
netbsd32_size_tp oldlenp;
netbsd32_voidp newval;
netbsd32_size_t newlen;
unsigned int __unused0[4];
};
struct linux32_tms {
linux32_clock_t ltms32_utime;
linux32_clock_t ltms32_stime;
linux32_clock_t ltms32_cutime;
linux32_clock_t ltms32_cstime;
};
struct linux32_oldselect {
int nfds;
netbsd32_fd_setp_t readfds;
netbsd32_fd_setp_t writefds;
netbsd32_fd_setp_t exceptfds;
netbsd32_timeval50p_t timeout;
};
struct linux32_sysinfo {
netbsd32_long uptime;
netbsd32_u_long loads[3];
netbsd32_u_long totalram;
netbsd32_u_long freeram;
netbsd32_u_long sharedram;
netbsd32_u_long bufferram;
netbsd32_u_long totalswap;
netbsd32_u_long freeswap;
unsigned short procs;
netbsd32_u_long totalbig;
netbsd32_u_long freebig;
unsigned int mem_unit;
char _f[20-2*sizeof(netbsd32_long)-sizeof(int)];
};
#define LINUX32_MAXNAMLEN 255
struct linux32_dirent {
linux32_ino_t d_ino;
linux32_off_t d_off;
u_short d_reclen;
char d_name[LINUX32_MAXNAMLEN + 2];
};
#endif /* !_LINUX32_TYPES_H */
|