poll_openbsd_386.go (21792B)
1 // Code generated by 'ccgo poll/gen.c -crt-import-path "" -export-defines "" -export-enums "" -export-externs X -export-fields F -export-structs "" -export-typedefs "" -header -hide _OSSwapInt16,_OSSwapInt32,_OSSwapInt64 -ignore-unsupported-alignment -o poll/poll_openbsd_386.go -pkgname poll', DO NOT EDIT. 2 3 package poll 4 5 import ( 6 "math" 7 "reflect" 8 "sync/atomic" 9 "unsafe" 10 ) 11 12 var _ = math.Pi 13 var _ reflect.Kind 14 var _ atomic.Value 15 var _ unsafe.Pointer 16 17 const ( 18 INFTIM = -1 // poll.h:54:1: 19 POLLERR = 0x0008 // poll.h:42:1: 20 POLLHUP = 0x0010 // poll.h:43:1: 21 POLLIN = 0x0001 // poll.h:39:1: 22 POLLNORM = 64 // poll.h:46:1: 23 POLLNVAL = 0x0020 // poll.h:44:1: 24 POLLOUT = 0x0004 // poll.h:41:1: 25 POLLPRI = 0x0002 // poll.h:40:1: 26 POLLRDBAND = 0x0080 // poll.h:48:1: 27 POLLRDNORM = 0x0040 // poll.h:45:1: 28 POLLWRBAND = 0x0100 // poll.h:49:1: 29 POLLWRNORM = 4 // poll.h:47:1: 30 X_FILE_OFFSET_BITS = 64 // <builtin>:25:1: 31 X_ILP32 = 1 // <predefined>:1:1: 32 X_MACHINE_CDEFS_H_ = 0 // cdefs.h:9:1: 33 X_MACHINE__TYPES_H_ = 0 // _types.h:36:1: 34 X_MAX_PAGE_SHIFT = 12 // _types.h:52:1: 35 X_SIGSET_T_DEFINED_ = 0 // poll.h:63:1: 36 X_STACKALIGNBYTES = 15 // _types.h:49:1: 37 X_SYS_CDEFS_H_ = 0 // cdefs.h:39:1: 38 X_SYS_POLL_H_ = 0 // poll.h:29:1: 39 X_SYS__TYPES_H_ = 0 // _types.h:35:1: 40 X_TIMESPEC_DECLARED = 0 // poll.h:73:1: 41 X_TIME_T_DEFINED_ = 0 // poll.h:68:1: 42 I386 = 1 // <predefined>:339:1: 43 Unix = 1 // <predefined>:340:1: 44 ) 45 46 type Ptrdiff_t = int32 /* <builtin>:3:26 */ 47 48 type Size_t = uint32 /* <builtin>:9:23 */ 49 50 type Wchar_t = int32 /* <builtin>:15:24 */ 51 52 type X__builtin_va_list = uintptr /* <builtin>:46:14 */ 53 type X__float128 = float64 /* <builtin>:47:21 */ 54 55 // $OpenBSD: poll.h,v 1.3 2003/10/29 16:41:13 deraadt Exp $ 56 57 // Written by Theo de Raadt, Public Domain 58 // 59 // Typical poll() implementations expect poll.h to be in /usr/include. 60 // However this is not a convenient place for the real definitions. 61 // $OpenBSD: poll.h,v 1.15 2016/06/07 06:12:37 deraadt Exp $ 62 63 // Copyright (c) 1996 Theo de Raadt 64 // All rights reserved. 65 // 66 // Redistribution and use in source and binary forms, with or without 67 // modification, are permitted provided that the following conditions 68 // are met: 69 // 1. Redistributions of source code must retain the above copyright 70 // notice, this list of conditions and the following disclaimer. 71 // 2. Redistributions in binary form must reproduce the above copyright 72 // notice, this list of conditions and the following disclaimer in the 73 // documentation and/or other materials provided with the distribution. 74 // 75 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 76 // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 77 // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 78 // IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 79 // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 80 // NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 81 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 82 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 83 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 84 // THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 85 86 type Pollfd = struct { 87 Ffd int32 88 Fevents int16 89 Frevents int16 90 } /* poll.h:31:9 */ 91 92 // $OpenBSD: poll.h,v 1.3 2003/10/29 16:41:13 deraadt Exp $ 93 94 // Written by Theo de Raadt, Public Domain 95 // 96 // Typical poll() implementations expect poll.h to be in /usr/include. 97 // However this is not a convenient place for the real definitions. 98 // $OpenBSD: poll.h,v 1.15 2016/06/07 06:12:37 deraadt Exp $ 99 100 // Copyright (c) 1996 Theo de Raadt 101 // All rights reserved. 102 // 103 // Redistribution and use in source and binary forms, with or without 104 // modification, are permitted provided that the following conditions 105 // are met: 106 // 1. Redistributions of source code must retain the above copyright 107 // notice, this list of conditions and the following disclaimer. 108 // 2. Redistributions in binary form must reproduce the above copyright 109 // notice, this list of conditions and the following disclaimer in the 110 // documentation and/or other materials provided with the distribution. 111 // 112 // THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 113 // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 114 // OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 115 // IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 116 // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 117 // NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 118 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 119 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 120 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 121 // THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 122 123 type Pollfd_t = Pollfd /* poll.h:35:3 */ 124 125 type Nfds_t = uint32 /* poll.h:37:22 */ 126 127 // $OpenBSD: cdefs.h,v 1.43 2018/10/29 17:10:40 guenther Exp $ 128 // $NetBSD: cdefs.h,v 1.16 1996/04/03 20:46:39 christos Exp $ 129 130 // Copyright (c) 1991, 1993 131 // The Regents of the University of California. All rights reserved. 132 // 133 // This code is derived from software contributed to Berkeley by 134 // Berkeley Software Design, Inc. 135 // 136 // Redistribution and use in source and binary forms, with or without 137 // modification, are permitted provided that the following conditions 138 // are met: 139 // 1. Redistributions of source code must retain the above copyright 140 // notice, this list of conditions and the following disclaimer. 141 // 2. Redistributions in binary form must reproduce the above copyright 142 // notice, this list of conditions and the following disclaimer in the 143 // documentation and/or other materials provided with the distribution. 144 // 3. Neither the name of the University nor the names of its contributors 145 // may be used to endorse or promote products derived from this software 146 // without specific prior written permission. 147 // 148 // THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 149 // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 150 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 151 // ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 152 // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 153 // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 154 // OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 155 // HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 156 // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 157 // OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 158 // SUCH DAMAGE. 159 // 160 // @(#)cdefs.h 8.7 (Berkeley) 1/21/94 161 162 // $OpenBSD: cdefs.h,v 1.10 2013/03/28 17:30:45 martynas Exp $ 163 164 // Written by J.T. Conklin <jtc@wimsey.com> 01/17/95. 165 // Public domain. 166 167 // Macro to test if we're using a specific version of gcc or later. 168 169 // The __CONCAT macro is used to concatenate parts of symbol names, e.g. 170 // with "#define OLD(foo) __CONCAT(old,foo)", OLD(foo) produces oldfoo. 171 // The __CONCAT macro is a bit tricky -- make sure you don't put spaces 172 // in between its arguments. Do not use __CONCAT on double-quoted strings, 173 // such as those from the __STRING macro: to concatenate strings just put 174 // them next to each other. 175 176 // GCC1 and some versions of GCC2 declare dead (non-returning) and 177 // pure (no side effects) functions using "volatile" and "const"; 178 // unfortunately, these then cause warnings under "-ansi -pedantic". 179 // GCC >= 2.5 uses the __attribute__((attrs)) style. All of these 180 // work for GNU C++ (modulo a slight glitch in the C++ grammar in 181 // the distribution version of 2.5.5). 182 183 // __returns_twice makes the compiler not assume the function 184 // only returns once. This affects registerisation of variables: 185 // even local variables need to be in memory across such a call. 186 // Example: setjmp() 187 188 // __only_inline makes the compiler only use this function definition 189 // for inlining; references that can't be inlined will be left as 190 // external references instead of generating a local copy. The 191 // matching library should include a simple extern definition for 192 // the function to handle those references. c.f. ctype.h 193 194 // GNU C version 2.96 adds explicit branch prediction so that 195 // the CPU back-end can hint the processor and also so that 196 // code blocks can be reordered such that the predicted path 197 // sees a more linear flow, thus improving cache behavior, etc. 198 // 199 // The following two macros provide us with a way to utilize this 200 // compiler feature. Use __predict_true() if you expect the expression 201 // to evaluate to true, and __predict_false() if you expect the 202 // expression to evaluate to false. 203 // 204 // A few notes about usage: 205 // 206 // * Generally, __predict_false() error condition checks (unless 207 // you have some _strong_ reason to do otherwise, in which case 208 // document it), and/or __predict_true() `no-error' condition 209 // checks, assuming you want to optimize for the no-error case. 210 // 211 // * Other than that, if you don't know the likelihood of a test 212 // succeeding from empirical or other `hard' evidence, don't 213 // make predictions. 214 // 215 // * These are meant to be used in places that are run `a lot'. 216 // It is wasteful to make predictions in code that is run 217 // seldomly (e.g. at subsystem initialization time) as the 218 // basic block reordering that this affects can often generate 219 // larger code. 220 221 // Delete pseudo-keywords wherever they are not available or needed. 222 223 // The __packed macro indicates that a variable or structure members 224 // should have the smallest possible alignment, despite any host CPU 225 // alignment requirements. 226 // 227 // The __aligned(x) macro specifies the minimum alignment of a 228 // variable or structure. 229 // 230 // These macros together are useful for describing the layout and 231 // alignment of messages exchanged with hardware or other systems. 232 233 // "The nice thing about standards is that there are so many to choose from." 234 // There are a number of "feature test macros" specified by (different) 235 // standards that determine which interfaces and types the header files 236 // should expose. 237 // 238 // Because of inconsistencies in these macros, we define our own 239 // set in the private name space that end in _VISIBLE. These are 240 // always defined and so headers can test their values easily. 241 // Things can get tricky when multiple feature macros are defined. 242 // We try to take the union of all the features requested. 243 // 244 // The following macros are guaranteed to have a value after cdefs.h 245 // has been included: 246 // __POSIX_VISIBLE 247 // __XPG_VISIBLE 248 // __ISO_C_VISIBLE 249 // __BSD_VISIBLE 250 251 // X/Open Portability Guides and Single Unix Specifications. 252 // _XOPEN_SOURCE XPG3 253 // _XOPEN_SOURCE && _XOPEN_VERSION = 4 XPG4 254 // _XOPEN_SOURCE && _XOPEN_SOURCE_EXTENDED = 1 XPG4v2 255 // _XOPEN_SOURCE == 500 XPG5 256 // _XOPEN_SOURCE == 520 XPG5v2 257 // _XOPEN_SOURCE == 600 POSIX 1003.1-2001 with XSI 258 // _XOPEN_SOURCE == 700 POSIX 1003.1-2008 with XSI 259 // 260 // The XPG spec implies a specific value for _POSIX_C_SOURCE. 261 262 // POSIX macros, these checks must follow the XOPEN ones above. 263 // 264 // _POSIX_SOURCE == 1 1003.1-1988 (superseded by _POSIX_C_SOURCE) 265 // _POSIX_C_SOURCE == 1 1003.1-1990 266 // _POSIX_C_SOURCE == 2 1003.2-1992 267 // _POSIX_C_SOURCE == 199309L 1003.1b-1993 268 // _POSIX_C_SOURCE == 199506L 1003.1c-1995, 1003.1i-1995, 269 // and the omnibus ISO/IEC 9945-1:1996 270 // _POSIX_C_SOURCE == 200112L 1003.1-2001 271 // _POSIX_C_SOURCE == 200809L 1003.1-2008 272 // 273 // The POSIX spec implies a specific value for __ISO_C_VISIBLE, though 274 // this may be overridden by the _ISOC99_SOURCE macro later. 275 276 // _ANSI_SOURCE means to expose ANSI C89 interfaces only. 277 // If the user defines it in addition to one of the POSIX or XOPEN 278 // macros, assume the POSIX/XOPEN macro(s) should take precedence. 279 280 // _ISOC99_SOURCE, _ISOC11_SOURCE, __STDC_VERSION__, and __cplusplus 281 // override any of the other macros since they are non-exclusive. 282 283 // Finally deal with BSD-specific interfaces that are not covered 284 // by any standards. We expose these when none of the POSIX or XPG 285 // macros is defined or if the user explicitly asks for them. 286 287 // Default values. 288 289 // $OpenBSD: _types.h,v 1.10 2022/08/06 13:31:13 semarie Exp $ 290 291 // - 292 // Copyright (c) 1990, 1993 293 // The Regents of the University of California. All rights reserved. 294 // 295 // Redistribution and use in source and binary forms, with or without 296 // modification, are permitted provided that the following conditions 297 // are met: 298 // 1. Redistributions of source code must retain the above copyright 299 // notice, this list of conditions and the following disclaimer. 300 // 2. Redistributions in binary form must reproduce the above copyright 301 // notice, this list of conditions and the following disclaimer in the 302 // documentation and/or other materials provided with the distribution. 303 // 3. Neither the name of the University nor the names of its contributors 304 // may be used to endorse or promote products derived from this software 305 // without specific prior written permission. 306 // 307 // THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 308 // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 309 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 310 // ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 311 // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 312 // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 313 // OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 314 // HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 315 // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 316 // OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 317 // SUCH DAMAGE. 318 // 319 // @(#)types.h 8.3 (Berkeley) 1/5/94 320 321 // $OpenBSD: _types.h,v 1.23 2018/03/05 01:15:25 deraadt Exp $ 322 323 // - 324 // Copyright (c) 1990, 1993 325 // The Regents of the University of California. All rights reserved. 326 // 327 // Redistribution and use in source and binary forms, with or without 328 // modification, are permitted provided that the following conditions 329 // are met: 330 // 1. Redistributions of source code must retain the above copyright 331 // notice, this list of conditions and the following disclaimer. 332 // 2. Redistributions in binary form must reproduce the above copyright 333 // notice, this list of conditions and the following disclaimer in the 334 // documentation and/or other materials provided with the distribution. 335 // 3. Neither the name of the University nor the names of its contributors 336 // may be used to endorse or promote products derived from this software 337 // without specific prior written permission. 338 // 339 // THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 340 // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 341 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 342 // ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 343 // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 344 // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 345 // OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 346 // HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 347 // LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 348 // OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 349 // SUCH DAMAGE. 350 // 351 // @(#)types.h 8.3 (Berkeley) 1/5/94 352 // @(#)ansi.h 8.2 (Berkeley) 1/4/94 353 354 // _ALIGN(p) rounds p (pointer or byte index) up to a correctly-aligned 355 // value for all data types (int, long, ...). The result is an 356 // unsigned long and must be cast to any desired pointer type. 357 // 358 // _ALIGNED_POINTER is a boolean macro that checks whether an address 359 // is valid to fetch data elements of type t from on this architecture. 360 // This does not reflect the optimal alignment, just the possibility 361 // (within reasonable limits). 362 363 // 7.18.1.1 Exact-width integer types 364 type X__int8_t = int8 /* _types.h:61:22 */ 365 type X__uint8_t = uint8 /* _types.h:62:24 */ 366 type X__int16_t = int16 /* _types.h:63:17 */ 367 type X__uint16_t = uint16 /* _types.h:64:25 */ 368 type X__int32_t = int32 /* _types.h:65:15 */ 369 type X__uint32_t = uint32 /* _types.h:66:23 */ 370 type X__int64_t = int64 /* _types.h:67:20 */ 371 type X__uint64_t = uint64 /* _types.h:68:28 */ 372 373 // 7.18.1.2 Minimum-width integer types 374 type X__int_least8_t = X__int8_t /* _types.h:71:19 */ 375 type X__uint_least8_t = X__uint8_t /* _types.h:72:20 */ 376 type X__int_least16_t = X__int16_t /* _types.h:73:20 */ 377 type X__uint_least16_t = X__uint16_t /* _types.h:74:21 */ 378 type X__int_least32_t = X__int32_t /* _types.h:75:20 */ 379 type X__uint_least32_t = X__uint32_t /* _types.h:76:21 */ 380 type X__int_least64_t = X__int64_t /* _types.h:77:20 */ 381 type X__uint_least64_t = X__uint64_t /* _types.h:78:21 */ 382 383 // 7.18.1.3 Fastest minimum-width integer types 384 type X__int_fast8_t = X__int32_t /* _types.h:81:20 */ 385 type X__uint_fast8_t = X__uint32_t /* _types.h:82:21 */ 386 type X__int_fast16_t = X__int32_t /* _types.h:83:20 */ 387 type X__uint_fast16_t = X__uint32_t /* _types.h:84:21 */ 388 type X__int_fast32_t = X__int32_t /* _types.h:85:20 */ 389 type X__uint_fast32_t = X__uint32_t /* _types.h:86:21 */ 390 type X__int_fast64_t = X__int64_t /* _types.h:87:20 */ 391 type X__uint_fast64_t = X__uint64_t /* _types.h:88:21 */ 392 393 // 7.18.1.4 Integer types capable of holding object pointers 394 type X__intptr_t = int32 /* _types.h:103:16 */ 395 type X__uintptr_t = uint32 /* _types.h:104:24 */ 396 397 // 7.18.1.5 Greatest-width integer types 398 type X__intmax_t = X__int64_t /* _types.h:107:20 */ 399 type X__uintmax_t = X__uint64_t /* _types.h:108:21 */ 400 401 // Register size 402 type X__register_t = int32 /* _types.h:111:16 */ 403 404 // VM system types 405 type X__vaddr_t = uint32 /* _types.h:114:24 */ 406 type X__paddr_t = uint32 /* _types.h:115:24 */ 407 type X__vsize_t = uint32 /* _types.h:116:24 */ 408 type X__psize_t = uint32 /* _types.h:117:24 */ 409 410 // Standard system types 411 type X__double_t = float64 /* _types.h:120:22 */ 412 type X__float_t = float64 /* _types.h:121:22 */ 413 type X__ptrdiff_t = int32 /* _types.h:122:16 */ 414 type X__size_t = uint32 /* _types.h:123:24 */ 415 type X__ssize_t = int32 /* _types.h:124:16 */ 416 type X__va_list = X__builtin_va_list /* _types.h:126:27 */ 417 418 // Wide character support types 419 type X__wchar_t = int32 /* _types.h:133:15 */ 420 type X__wint_t = int32 /* _types.h:135:15 */ 421 type X__rune_t = int32 /* _types.h:136:15 */ 422 type X__wctrans_t = uintptr /* _types.h:137:14 */ 423 type X__wctype_t = uintptr /* _types.h:138:14 */ 424 425 type X__blkcnt_t = X__int64_t /* _types.h:39:19 */ // blocks allocated for file 426 type X__blksize_t = X__int32_t /* _types.h:40:19 */ // optimal blocksize for I/O 427 type X__clock_t = X__int64_t /* _types.h:41:19 */ // ticks in CLOCKS_PER_SEC 428 type X__clockid_t = X__int32_t /* _types.h:42:19 */ // CLOCK_* identifiers 429 type X__cpuid_t = uint32 /* _types.h:43:23 */ // CPU id 430 type X__dev_t = X__int32_t /* _types.h:44:19 */ // device number 431 type X__fixpt_t = X__uint32_t /* _types.h:45:20 */ // fixed point number 432 type X__fsblkcnt_t = X__uint64_t /* _types.h:46:20 */ // file system block count 433 type X__fsfilcnt_t = X__uint64_t /* _types.h:47:20 */ // file system file count 434 type X__gid_t = X__uint32_t /* _types.h:48:20 */ // group id 435 type X__id_t = X__uint32_t /* _types.h:49:20 */ // may contain pid, uid or gid 436 type X__in_addr_t = X__uint32_t /* _types.h:50:20 */ // base type for internet address 437 type X__in_port_t = X__uint16_t /* _types.h:51:20 */ // IP port type 438 type X__ino_t = X__uint64_t /* _types.h:52:20 */ // inode number 439 type X__key_t = int32 /* _types.h:53:15 */ // IPC key (for Sys V IPC) 440 type X__mode_t = X__uint32_t /* _types.h:54:20 */ // permissions 441 type X__nlink_t = X__uint32_t /* _types.h:55:20 */ // link count 442 type X__off_t = X__int64_t /* _types.h:56:19 */ // file offset or size 443 type X__pid_t = X__int32_t /* _types.h:57:19 */ // process id 444 type X__rlim_t = X__uint64_t /* _types.h:58:20 */ // resource limit 445 type X__sa_family_t = X__uint8_t /* _types.h:59:19 */ // sockaddr address family type 446 type X__segsz_t = X__int32_t /* _types.h:60:19 */ // segment size 447 type X__socklen_t = X__uint32_t /* _types.h:61:20 */ // length type for network syscalls 448 type X__suseconds_t = int32 /* _types.h:62:15 */ // microseconds (signed) 449 type X__time_t = X__int64_t /* _types.h:63:19 */ // epoch time 450 type X__timer_t = X__int32_t /* _types.h:64:19 */ // POSIX timer identifiers 451 type X__uid_t = X__uint32_t /* _types.h:65:20 */ // user id 452 type X__useconds_t = X__uint32_t /* _types.h:66:20 */ // microseconds 453 454 // mbstate_t is an opaque object to keep conversion state, during multibyte 455 // stream conversions. The content must not be referenced by user programs. 456 type X__mbstate_t = struct { 457 F__ccgo_pad1 [0]uint32 458 F__mbstate8 [128]int8 459 } /* _types.h:75:3 */ 460 461 type Sigset_t = uint32 /* poll.h:64:22 */ 462 463 type Time_t = X__time_t /* poll.h:69:18 */ 464 465 type Timespec = struct { 466 Ftv_sec Time_t 467 Ftv_nsec int32 468 } /* poll.h:74:1 */ 469 470 var _ int8 /* gen.c:2:13: */