ffi 1.0.11 → 1.0.12.pre
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of ffi might be problematic. Click here for more details.
- data/Rakefile +1 -1
- data/ext/ffi_c/AbstractMemory.c +9 -0
- data/ext/ffi_c/AbstractMemory.h +4 -0
- data/ext/ffi_c/Buffer.c +8 -0
- data/ext/ffi_c/Call.c +8 -0
- data/ext/ffi_c/ClosurePool.c +12 -0
- data/ext/ffi_c/DynamicLibrary.c +7 -1
- data/ext/ffi_c/Function.c +11 -1
- data/ext/ffi_c/Function.h +6 -0
- data/ext/ffi_c/FunctionInfo.c +8 -0
- data/ext/ffi_c/LastError.c +8 -0
- data/ext/ffi_c/MemoryPointer.c +8 -0
- data/ext/ffi_c/MemoryPointer.h +6 -0
- data/ext/ffi_c/MethodHandle.c +8 -0
- data/ext/ffi_c/Platform.c +8 -0
- data/ext/ffi_c/Pointer.c +8 -0
- data/ext/ffi_c/Pointer.h +6 -0
- data/ext/ffi_c/Struct.c +6 -0
- data/ext/ffi_c/StructByReference.c +8 -0
- data/ext/ffi_c/StructByValue.c +8 -0
- data/ext/ffi_c/StructLayout.c +6 -0
- data/ext/ffi_c/Thread.c +7 -0
- data/ext/ffi_c/Thread.h +6 -0
- data/ext/ffi_c/Type.c +3 -0
- data/ext/ffi_c/Types.h +4 -0
- data/ext/ffi_c/Variadic.c +8 -0
- data/ext/ffi_c/endian.h +3 -0
- data/ext/ffi_c/extconf.rb +6 -1
- data/ext/ffi_c/libffi.vc.mk +26 -0
- data/ext/ffi_c/libffi.vc64.mk +26 -0
- data/ext/ffi_c/libffi/ChangeLog +541 -0
- data/ext/ffi_c/libffi/ChangeLog.libffi +13 -87
- data/ext/ffi_c/libffi/LICENSE +3 -3
- data/ext/ffi_c/libffi/Makefile.am +41 -32
- data/ext/ffi_c/libffi/Makefile.in +95 -66
- data/ext/ffi_c/libffi/Makefile.vc +141 -0
- data/ext/ffi_c/libffi/Makefile.vc64 +141 -0
- data/ext/ffi_c/libffi/README +40 -4
- data/ext/ffi_c/libffi/aclocal.m4 +729 -7854
- data/ext/ffi_c/libffi/build-ios.sh +67 -0
- data/ext/ffi_c/libffi/compile +11 -10
- data/ext/ffi_c/libffi/config.guess +4 -1
- data/ext/ffi_c/libffi/config.sub +6 -3
- data/ext/ffi_c/libffi/configure +6264 -6354
- data/ext/ffi_c/libffi/configure.ac +155 -63
- data/ext/ffi_c/libffi/depcomp +81 -35
- data/ext/ffi_c/libffi/doc/libffi.info +78 -18
- data/ext/ffi_c/libffi/doc/libffi.texi +64 -5
- data/ext/ffi_c/libffi/doc/stamp-vti +4 -4
- data/ext/ffi_c/libffi/doc/version.texi +4 -4
- data/ext/ffi_c/libffi/fficonfig.h.in +18 -0
- data/ext/ffi_c/libffi/fficonfig.hw +57 -0
- data/ext/ffi_c/libffi/include/Makefile.in +21 -3
- data/ext/ffi_c/libffi/include/ffi.h.in +42 -14
- data/ext/ffi_c/libffi/include/ffi.h.vc +427 -0
- data/ext/ffi_c/libffi/include/ffi.h.vc64 +427 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +9 -5
- data/ext/ffi_c/libffi/install-sh +364 -167
- data/ext/ffi_c/libffi/ltmain.sh +2599 -1369
- data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +176 -0
- data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +195 -0
- data/ext/ffi_c/libffi/m4/ax_check_compiler_flags.m4 +76 -0
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +63 -0
- data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +70 -0
- data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +300 -0
- data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +215 -0
- data/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +79 -0
- data/ext/ffi_c/libffi/m4/libtool.m4 +1239 -768
- data/ext/ffi_c/libffi/m4/ltoptions.m4 +7 -6
- data/ext/ffi_c/libffi/m4/ltversion.m4 +6 -6
- data/ext/ffi_c/libffi/m4/lt~obsolete.m4 +9 -3
- data/ext/ffi_c/libffi/man/Makefile.in +21 -3
- data/ext/ffi_c/libffi/mdate-sh +0 -0
- data/ext/ffi_c/libffi/missing +60 -44
- data/ext/ffi_c/libffi/msvcc.sh +197 -0
- data/ext/ffi_c/libffi/src/alpha/osf.S +39 -18
- data/ext/ffi_c/libffi/src/arm/ffi.c +443 -24
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +17 -1
- data/ext/ffi_c/libffi/src/arm/gentramp.sh +118 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +206 -15
- data/ext/ffi_c/libffi/src/arm/trampoline.S +4450 -0
- data/ext/ffi_c/libffi/src/avr32/ffi.c +4 -2
- data/ext/ffi_c/libffi/src/avr32/ffitarget.h +2 -2
- data/ext/ffi_c/libffi/src/closures.c +17 -35
- data/ext/ffi_c/libffi/src/cris/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/cris/ffitarget.h +2 -2
- data/ext/ffi_c/libffi/src/dlmalloc.c +66 -4
- data/ext/ffi_c/libffi/src/frv/ffitarget.h +2 -6
- data/ext/ffi_c/libffi/src/ia64/ffi.c +7 -5
- data/ext/ffi_c/libffi/src/ia64/ffitarget.h +2 -2
- data/ext/ffi_c/libffi/src/java_raw_api.c +1 -1
- data/ext/ffi_c/libffi/src/m32r/ffitarget.h +2 -2
- data/ext/ffi_c/libffi/src/m68k/ffi.c +10 -0
- data/ext/ffi_c/libffi/src/m68k/ffitarget.h +2 -2
- data/ext/ffi_c/libffi/src/m68k/sysv.S +36 -0
- data/ext/ffi_c/libffi/src/mips/ffi.c +12 -5
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +18 -11
- data/ext/ffi_c/libffi/src/mips/n32.S +4 -4
- data/ext/ffi_c/libffi/src/moxie/eabi.S +128 -0
- data/ext/ffi_c/libffi/src/moxie/ffi.c +276 -0
- data/ext/ffi_c/libffi/src/pa/ffi.c +7 -4
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +6 -5
- data/ext/ffi_c/libffi/src/powerpc/aix.S +5 -1
- data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +2 -0
- data/ext/ffi_c/libffi/src/powerpc/asm.h +1 -1
- data/ext/ffi_c/libffi/src/powerpc/darwin.S +215 -77
- data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +358 -100
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +11 -5
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +603 -172
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +17 -4
- data/ext/ffi_c/libffi/src/prep_cif.c +16 -13
- data/ext/ffi_c/libffi/src/s390/ffitarget.h +4 -2
- data/ext/ffi_c/libffi/src/sh/ffitarget.h +2 -2
- data/ext/ffi_c/libffi/src/sh64/ffitarget.h +2 -2
- data/ext/ffi_c/libffi/src/sparc/ffi.c +55 -11
- data/ext/ffi_c/libffi/src/sparc/ffitarget.h +5 -3
- data/ext/ffi_c/libffi/src/x86/ffi.c +54 -92
- data/ext/ffi_c/libffi/src/x86/ffi64.c +17 -8
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +15 -14
- data/ext/ffi_c/libffi/src/x86/sysv.S +40 -26
- data/ext/ffi_c/libffi/src/x86/unix64.S +4 -0
- data/ext/ffi_c/libffi/src/x86/win32.S +379 -191
- data/ext/ffi_c/libffi/src/x86/win64.S +15 -7
- data/ext/ffi_c/libffi/testsuite/Makefile.am +1 -1
- data/ext/ffi_c/libffi/testsuite/Makefile.in +22 -4
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +350 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +1 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +2 -3
- data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +2 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +17 -17
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.special/special.exp +1 -3
- data/ext/ffi_c/win32/stdint.h +199 -0
- data/gen/Rakefile +18 -2
- data/lib/ffi/platform/arm-linux/types.conf +102 -0
- data/lib/ffi/platform/i486-gnu/types.conf +107 -0
- data/lib/ffi/platform/ia64-linux/types.conf +102 -0
- data/lib/ffi/platform/mips-linux/types.conf +102 -0
- data/lib/ffi/platform/mipsel-linux/types.conf +102 -0
- data/lib/ffi/platform/powerpc-linux/types.conf +100 -0
- data/lib/ffi/platform/s390-linux/types.conf +102 -0
- data/lib/ffi/platform/s390x-linux/types.conf +102 -0
- data/lib/ffi/platform/sparc-linux/types.conf +102 -0
- data/lib/ffi/tools/types_generator.rb +8 -1
- data/lib/ffi_c.bundle +0 -0
- metadata +72 -42
@@ -0,0 +1,102 @@
|
|
1
|
+
rbx.platform.typedef.__u_char = uchar
|
2
|
+
rbx.platform.typedef.__u_short = ushort
|
3
|
+
rbx.platform.typedef.__u_int = uint
|
4
|
+
rbx.platform.typedef.__u_long = ulong
|
5
|
+
rbx.platform.typedef.__int8_t = char
|
6
|
+
rbx.platform.typedef.__uint8_t = uchar
|
7
|
+
rbx.platform.typedef.__int16_t = short
|
8
|
+
rbx.platform.typedef.__uint16_t = ushort
|
9
|
+
rbx.platform.typedef.__int32_t = int
|
10
|
+
rbx.platform.typedef.__uint32_t = uint
|
11
|
+
rbx.platform.typedef.__int64_t = long_long
|
12
|
+
rbx.platform.typedef.__uint64_t = ulong_long
|
13
|
+
rbx.platform.typedef.__quad_t = long_long
|
14
|
+
rbx.platform.typedef.__u_quad_t = ulong_long
|
15
|
+
rbx.platform.typedef.__dev_t = ulong_long
|
16
|
+
rbx.platform.typedef.__uid_t = uint
|
17
|
+
rbx.platform.typedef.__gid_t = uint
|
18
|
+
rbx.platform.typedef.__ino_t = ulong
|
19
|
+
rbx.platform.typedef.__ino64_t = ulong_long
|
20
|
+
rbx.platform.typedef.__mode_t = uint
|
21
|
+
rbx.platform.typedef.__nlink_t = uint
|
22
|
+
rbx.platform.typedef.__off_t = long
|
23
|
+
rbx.platform.typedef.__off64_t = long_long
|
24
|
+
rbx.platform.typedef.__pid_t = int
|
25
|
+
rbx.platform.typedef.__clock_t = long
|
26
|
+
rbx.platform.typedef.__rlim_t = ulong
|
27
|
+
rbx.platform.typedef.__rlim64_t = ulong_long
|
28
|
+
rbx.platform.typedef.__id_t = uint
|
29
|
+
rbx.platform.typedef.__time_t = long
|
30
|
+
rbx.platform.typedef.__useconds_t = uint
|
31
|
+
rbx.platform.typedef.__suseconds_t = long
|
32
|
+
rbx.platform.typedef.__daddr_t = int
|
33
|
+
rbx.platform.typedef.__swblk_t = long
|
34
|
+
rbx.platform.typedef.__key_t = int
|
35
|
+
rbx.platform.typedef.__clockid_t = int
|
36
|
+
rbx.platform.typedef.__timer_t = pointer
|
37
|
+
rbx.platform.typedef.__blksize_t = long
|
38
|
+
rbx.platform.typedef.__blkcnt_t = long
|
39
|
+
rbx.platform.typedef.__blkcnt64_t = long_long
|
40
|
+
rbx.platform.typedef.__fsblkcnt_t = ulong
|
41
|
+
rbx.platform.typedef.__fsblkcnt64_t = ulong_long
|
42
|
+
rbx.platform.typedef.__fsfilcnt_t = ulong
|
43
|
+
rbx.platform.typedef.__fsfilcnt64_t = ulong_long
|
44
|
+
rbx.platform.typedef.__ssize_t = int
|
45
|
+
rbx.platform.typedef.__loff_t = long_long
|
46
|
+
rbx.platform.typedef.*__qaddr_t = long_long
|
47
|
+
rbx.platform.typedef.*__caddr_t = char
|
48
|
+
rbx.platform.typedef.__intptr_t = int
|
49
|
+
rbx.platform.typedef.__socklen_t = uint
|
50
|
+
rbx.platform.typedef.u_char = uchar
|
51
|
+
rbx.platform.typedef.u_short = ushort
|
52
|
+
rbx.platform.typedef.u_int = uint
|
53
|
+
rbx.platform.typedef.u_long = ulong
|
54
|
+
rbx.platform.typedef.quad_t = long_long
|
55
|
+
rbx.platform.typedef.u_quad_t = ulong_long
|
56
|
+
rbx.platform.typedef.loff_t = long_long
|
57
|
+
rbx.platform.typedef.ino_t = ulong_long
|
58
|
+
rbx.platform.typedef.dev_t = ulong_long
|
59
|
+
rbx.platform.typedef.gid_t = uint
|
60
|
+
rbx.platform.typedef.mode_t = uint
|
61
|
+
rbx.platform.typedef.nlink_t = uint
|
62
|
+
rbx.platform.typedef.uid_t = uint
|
63
|
+
rbx.platform.typedef.off_t = long_long
|
64
|
+
rbx.platform.typedef.pid_t = int
|
65
|
+
rbx.platform.typedef.id_t = uint
|
66
|
+
rbx.platform.typedef.ssize_t = int
|
67
|
+
rbx.platform.typedef.daddr_t = int
|
68
|
+
rbx.platform.typedef.key_t = int
|
69
|
+
rbx.platform.typedef.clock_t = long
|
70
|
+
rbx.platform.typedef.time_t = long
|
71
|
+
rbx.platform.typedef.clockid_t = int
|
72
|
+
rbx.platform.typedef.timer_t = pointer
|
73
|
+
rbx.platform.typedef.size_t = uint
|
74
|
+
rbx.platform.typedef.ulong = ulong
|
75
|
+
rbx.platform.typedef.ushort = ushort
|
76
|
+
rbx.platform.typedef.uint = uint
|
77
|
+
rbx.platform.typedef.int8_t = char
|
78
|
+
rbx.platform.typedef.int16_t = short
|
79
|
+
rbx.platform.typedef.int32_t = int
|
80
|
+
rbx.platform.typedef.int64_t = long_long
|
81
|
+
rbx.platform.typedef.u_int8_t = uchar
|
82
|
+
rbx.platform.typedef.u_int16_t = ushort
|
83
|
+
rbx.platform.typedef.u_int32_t = uint
|
84
|
+
rbx.platform.typedef.u_int64_t = ulong_long
|
85
|
+
rbx.platform.typedef.register_t = long
|
86
|
+
rbx.platform.typedef.__sig_atomic_t = int
|
87
|
+
rbx.platform.typedef.suseconds_t = long
|
88
|
+
rbx.platform.typedef.__fd_mask = long
|
89
|
+
rbx.platform.typedef.fd_mask = long
|
90
|
+
rbx.platform.typedef.blksize_t = long
|
91
|
+
rbx.platform.typedef.blkcnt_t = long_long
|
92
|
+
rbx.platform.typedef.fsblkcnt_t = ulong_long
|
93
|
+
rbx.platform.typedef.fsfilcnt_t = ulong_long
|
94
|
+
rbx.platform.typedef.pthread_t = ulong
|
95
|
+
rbx.platform.typedef.pthread_key_t = uint
|
96
|
+
rbx.platform.typedef.pthread_once_t = int
|
97
|
+
rbx.platform.typedef.socklen_t = uint
|
98
|
+
rbx.platform.typedef.sa_family_t = ushort
|
99
|
+
rbx.platform.typedef.rlim_t = ulong_long
|
100
|
+
rbx.platform.typedef.__rlimit_resource_t = int
|
101
|
+
rbx.platform.typedef.__rusage_who_t = int
|
102
|
+
rbx.platform.typedef.__priority_which_t = int
|
@@ -0,0 +1,100 @@
|
|
1
|
+
rbx.platform.typedef.__u_char = uchar
|
2
|
+
rbx.platform.typedef.__u_short = ushort
|
3
|
+
rbx.platform.typedef.__u_int = uint
|
4
|
+
rbx.platform.typedef.__u_long = ulong
|
5
|
+
rbx.platform.typedef.__int8_t = char
|
6
|
+
rbx.platform.typedef.__uint8_t = uchar
|
7
|
+
rbx.platform.typedef.__int16_t = short
|
8
|
+
rbx.platform.typedef.__uint16_t = ushort
|
9
|
+
rbx.platform.typedef.__int32_t = int
|
10
|
+
rbx.platform.typedef.__uint32_t = uint
|
11
|
+
rbx.platform.typedef.__int64_t = long_long
|
12
|
+
rbx.platform.typedef.__uint64_t = ulong_long
|
13
|
+
rbx.platform.typedef.__quad_t = long_long
|
14
|
+
rbx.platform.typedef.__u_quad_t = ulong_long
|
15
|
+
rbx.platform.typedef.__dev_t = ulong_long
|
16
|
+
rbx.platform.typedef.__uid_t = uint
|
17
|
+
rbx.platform.typedef.__gid_t = uint
|
18
|
+
rbx.platform.typedef.__ino_t = ulong
|
19
|
+
rbx.platform.typedef.__ino64_t = ulong_long
|
20
|
+
rbx.platform.typedef.__mode_t = uint
|
21
|
+
rbx.platform.typedef.__nlink_t = uint
|
22
|
+
rbx.platform.typedef.__off_t = long
|
23
|
+
rbx.platform.typedef.__off64_t = long_long
|
24
|
+
rbx.platform.typedef.__pid_t = int
|
25
|
+
rbx.platform.typedef.__clock_t = long
|
26
|
+
rbx.platform.typedef.__rlim_t = ulong
|
27
|
+
rbx.platform.typedef.__rlim64_t = ulong_long
|
28
|
+
rbx.platform.typedef.__id_t = uint
|
29
|
+
rbx.platform.typedef.__time_t = long
|
30
|
+
rbx.platform.typedef.__useconds_t = uint
|
31
|
+
rbx.platform.typedef.__suseconds_t = long
|
32
|
+
rbx.platform.typedef.__daddr_t = int
|
33
|
+
rbx.platform.typedef.__swblk_t = long
|
34
|
+
rbx.platform.typedef.__key_t = int
|
35
|
+
rbx.platform.typedef.__clockid_t = int
|
36
|
+
rbx.platform.typedef.__timer_t = pointer
|
37
|
+
rbx.platform.typedef.__blksize_t = long
|
38
|
+
rbx.platform.typedef.__blkcnt_t = long
|
39
|
+
rbx.platform.typedef.__blkcnt64_t = long_long
|
40
|
+
rbx.platform.typedef.__fsblkcnt_t = ulong
|
41
|
+
rbx.platform.typedef.__fsblkcnt64_t = ulong_long
|
42
|
+
rbx.platform.typedef.__fsfilcnt_t = ulong
|
43
|
+
rbx.platform.typedef.__fsfilcnt64_t = ulong_long
|
44
|
+
rbx.platform.typedef.__ssize_t = int
|
45
|
+
rbx.platform.typedef.__loff_t = long_long
|
46
|
+
rbx.platform.typedef.*__qaddr_t = long_long
|
47
|
+
rbx.platform.typedef.*__caddr_t = char
|
48
|
+
rbx.platform.typedef.__intptr_t = int
|
49
|
+
rbx.platform.typedef.__socklen_t = uint
|
50
|
+
rbx.platform.typedef.u_char = uchar
|
51
|
+
rbx.platform.typedef.u_short = ushort
|
52
|
+
rbx.platform.typedef.u_int = uint
|
53
|
+
rbx.platform.typedef.u_long = ulong
|
54
|
+
rbx.platform.typedef.quad_t = long_long
|
55
|
+
rbx.platform.typedef.u_quad_t = ulong_long
|
56
|
+
rbx.platform.typedef.loff_t = long_long
|
57
|
+
rbx.platform.typedef.ino_t = ulong_long
|
58
|
+
rbx.platform.typedef.dev_t = ulong_long
|
59
|
+
rbx.platform.typedef.gid_t = uint
|
60
|
+
rbx.platform.typedef.mode_t = uint
|
61
|
+
rbx.platform.typedef.nlink_t = uint
|
62
|
+
rbx.platform.typedef.uid_t = uint
|
63
|
+
rbx.platform.typedef.off_t = long_long
|
64
|
+
rbx.platform.typedef.pid_t = int
|
65
|
+
rbx.platform.typedef.id_t = uint
|
66
|
+
rbx.platform.typedef.ssize_t = int
|
67
|
+
rbx.platform.typedef.daddr_t = int
|
68
|
+
rbx.platform.typedef.key_t = int
|
69
|
+
rbx.platform.typedef.time_t = long
|
70
|
+
rbx.platform.typedef.clockid_t = int
|
71
|
+
rbx.platform.typedef.timer_t = pointer
|
72
|
+
rbx.platform.typedef.size_t = uint
|
73
|
+
rbx.platform.typedef.ulong = ulong
|
74
|
+
rbx.platform.typedef.ushort = ushort
|
75
|
+
rbx.platform.typedef.uint = uint
|
76
|
+
rbx.platform.typedef.int8_t = char
|
77
|
+
rbx.platform.typedef.int16_t = short
|
78
|
+
rbx.platform.typedef.int32_t = int
|
79
|
+
rbx.platform.typedef.int64_t = long_long
|
80
|
+
rbx.platform.typedef.u_int8_t = uchar
|
81
|
+
rbx.platform.typedef.u_int16_t = ushort
|
82
|
+
rbx.platform.typedef.u_int32_t = uint
|
83
|
+
rbx.platform.typedef.u_int64_t = ulong_long
|
84
|
+
rbx.platform.typedef.register_t = long
|
85
|
+
rbx.platform.typedef.__sig_atomic_t = int
|
86
|
+
rbx.platform.typedef.suseconds_t = long
|
87
|
+
rbx.platform.typedef.__fd_mask = long
|
88
|
+
rbx.platform.typedef.fd_mask = long
|
89
|
+
rbx.platform.typedef.blkcnt_t = long_long
|
90
|
+
rbx.platform.typedef.fsblkcnt_t = ulong_long
|
91
|
+
rbx.platform.typedef.fsfilcnt_t = ulong_long
|
92
|
+
rbx.platform.typedef.pthread_t = ulong
|
93
|
+
rbx.platform.typedef.pthread_key_t = uint
|
94
|
+
rbx.platform.typedef.pthread_once_t = int
|
95
|
+
rbx.platform.typedef.socklen_t = uint
|
96
|
+
rbx.platform.typedef.sa_family_t = ushort
|
97
|
+
rbx.platform.typedef.rlim_t = ulong_long
|
98
|
+
rbx.platform.typedef.__rlimit_resource_t = int
|
99
|
+
rbx.platform.typedef.__rusage_who_t = int
|
100
|
+
rbx.platform.typedef.__priority_which_t = int
|
@@ -0,0 +1,102 @@
|
|
1
|
+
rbx.platform.typedef.__u_char = uchar
|
2
|
+
rbx.platform.typedef.__u_short = ushort
|
3
|
+
rbx.platform.typedef.__u_int = uint
|
4
|
+
rbx.platform.typedef.__u_long = ulong
|
5
|
+
rbx.platform.typedef.__int8_t = char
|
6
|
+
rbx.platform.typedef.__uint8_t = uchar
|
7
|
+
rbx.platform.typedef.__int16_t = short
|
8
|
+
rbx.platform.typedef.__uint16_t = ushort
|
9
|
+
rbx.platform.typedef.__int32_t = int
|
10
|
+
rbx.platform.typedef.__uint32_t = uint
|
11
|
+
rbx.platform.typedef.__int64_t = long_long
|
12
|
+
rbx.platform.typedef.__uint64_t = ulong_long
|
13
|
+
rbx.platform.typedef.__quad_t = long_long
|
14
|
+
rbx.platform.typedef.__u_quad_t = ulong_long
|
15
|
+
rbx.platform.typedef.__dev_t = ulong_long
|
16
|
+
rbx.platform.typedef.__uid_t = uint
|
17
|
+
rbx.platform.typedef.__gid_t = uint
|
18
|
+
rbx.platform.typedef.__ino_t = ulong
|
19
|
+
rbx.platform.typedef.__ino64_t = ulong_long
|
20
|
+
rbx.platform.typedef.__mode_t = uint
|
21
|
+
rbx.platform.typedef.__nlink_t = uint
|
22
|
+
rbx.platform.typedef.__off_t = long
|
23
|
+
rbx.platform.typedef.__off64_t = long_long
|
24
|
+
rbx.platform.typedef.__pid_t = int
|
25
|
+
rbx.platform.typedef.__clock_t = long
|
26
|
+
rbx.platform.typedef.__rlim_t = ulong
|
27
|
+
rbx.platform.typedef.__rlim64_t = ulong_long
|
28
|
+
rbx.platform.typedef.__id_t = uint
|
29
|
+
rbx.platform.typedef.__time_t = long
|
30
|
+
rbx.platform.typedef.__useconds_t = uint
|
31
|
+
rbx.platform.typedef.__suseconds_t = long
|
32
|
+
rbx.platform.typedef.__daddr_t = int
|
33
|
+
rbx.platform.typedef.__swblk_t = long
|
34
|
+
rbx.platform.typedef.__key_t = int
|
35
|
+
rbx.platform.typedef.__clockid_t = int
|
36
|
+
rbx.platform.typedef.__timer_t = pointer
|
37
|
+
rbx.platform.typedef.__blksize_t = long
|
38
|
+
rbx.platform.typedef.__blkcnt_t = long
|
39
|
+
rbx.platform.typedef.__blkcnt64_t = long_long
|
40
|
+
rbx.platform.typedef.__fsblkcnt_t = ulong
|
41
|
+
rbx.platform.typedef.__fsblkcnt64_t = ulong_long
|
42
|
+
rbx.platform.typedef.__fsfilcnt_t = ulong
|
43
|
+
rbx.platform.typedef.__fsfilcnt64_t = ulong_long
|
44
|
+
rbx.platform.typedef.__ssize_t = long
|
45
|
+
rbx.platform.typedef.__loff_t = long_long
|
46
|
+
rbx.platform.typedef.*__qaddr_t = long_long
|
47
|
+
rbx.platform.typedef.*__caddr_t = char
|
48
|
+
rbx.platform.typedef.__intptr_t = int
|
49
|
+
rbx.platform.typedef.__socklen_t = uint
|
50
|
+
rbx.platform.typedef.u_char = uchar
|
51
|
+
rbx.platform.typedef.u_short = ushort
|
52
|
+
rbx.platform.typedef.u_int = uint
|
53
|
+
rbx.platform.typedef.u_long = ulong
|
54
|
+
rbx.platform.typedef.quad_t = long_long
|
55
|
+
rbx.platform.typedef.u_quad_t = ulong_long
|
56
|
+
rbx.platform.typedef.loff_t = long_long
|
57
|
+
rbx.platform.typedef.ino_t = ulong_long
|
58
|
+
rbx.platform.typedef.dev_t = ulong_long
|
59
|
+
rbx.platform.typedef.gid_t = uint
|
60
|
+
rbx.platform.typedef.mode_t = uint
|
61
|
+
rbx.platform.typedef.nlink_t = uint
|
62
|
+
rbx.platform.typedef.uid_t = uint
|
63
|
+
rbx.platform.typedef.off_t = long_long
|
64
|
+
rbx.platform.typedef.pid_t = int
|
65
|
+
rbx.platform.typedef.id_t = uint
|
66
|
+
rbx.platform.typedef.ssize_t = long
|
67
|
+
rbx.platform.typedef.daddr_t = int
|
68
|
+
rbx.platform.typedef.key_t = int
|
69
|
+
rbx.platform.typedef.clock_t = long
|
70
|
+
rbx.platform.typedef.time_t = long
|
71
|
+
rbx.platform.typedef.clockid_t = int
|
72
|
+
rbx.platform.typedef.timer_t = pointer
|
73
|
+
rbx.platform.typedef.size_t = ulong
|
74
|
+
rbx.platform.typedef.ulong = ulong
|
75
|
+
rbx.platform.typedef.ushort = ushort
|
76
|
+
rbx.platform.typedef.uint = uint
|
77
|
+
rbx.platform.typedef.int8_t = char
|
78
|
+
rbx.platform.typedef.int16_t = short
|
79
|
+
rbx.platform.typedef.int32_t = int
|
80
|
+
rbx.platform.typedef.int64_t = long_long
|
81
|
+
rbx.platform.typedef.u_int8_t = uchar
|
82
|
+
rbx.platform.typedef.u_int16_t = ushort
|
83
|
+
rbx.platform.typedef.u_int32_t = uint
|
84
|
+
rbx.platform.typedef.u_int64_t = ulong_long
|
85
|
+
rbx.platform.typedef.register_t = long
|
86
|
+
rbx.platform.typedef.__sig_atomic_t = int
|
87
|
+
rbx.platform.typedef.suseconds_t = long
|
88
|
+
rbx.platform.typedef.__fd_mask = long
|
89
|
+
rbx.platform.typedef.fd_mask = long
|
90
|
+
rbx.platform.typedef.blksize_t = long
|
91
|
+
rbx.platform.typedef.blkcnt_t = long_long
|
92
|
+
rbx.platform.typedef.fsblkcnt_t = ulong_long
|
93
|
+
rbx.platform.typedef.fsfilcnt_t = ulong_long
|
94
|
+
rbx.platform.typedef.pthread_t = ulong
|
95
|
+
rbx.platform.typedef.pthread_key_t = uint
|
96
|
+
rbx.platform.typedef.pthread_once_t = int
|
97
|
+
rbx.platform.typedef.socklen_t = uint
|
98
|
+
rbx.platform.typedef.sa_family_t = ushort
|
99
|
+
rbx.platform.typedef.rlim_t = ulong_long
|
100
|
+
rbx.platform.typedef.__rlimit_resource_t = int
|
101
|
+
rbx.platform.typedef.__rusage_who_t = int
|
102
|
+
rbx.platform.typedef.__priority_which_t = int
|
@@ -0,0 +1,102 @@
|
|
1
|
+
rbx.platform.typedef.__u_char = uchar
|
2
|
+
rbx.platform.typedef.__u_short = ushort
|
3
|
+
rbx.platform.typedef.__u_int = uint
|
4
|
+
rbx.platform.typedef.__u_long = ulong
|
5
|
+
rbx.platform.typedef.__int8_t = char
|
6
|
+
rbx.platform.typedef.__uint8_t = uchar
|
7
|
+
rbx.platform.typedef.__int16_t = short
|
8
|
+
rbx.platform.typedef.__uint16_t = ushort
|
9
|
+
rbx.platform.typedef.__int32_t = int
|
10
|
+
rbx.platform.typedef.__uint32_t = uint
|
11
|
+
rbx.platform.typedef.__int64_t = long
|
12
|
+
rbx.platform.typedef.__uint64_t = ulong
|
13
|
+
rbx.platform.typedef.__quad_t = long
|
14
|
+
rbx.platform.typedef.__u_quad_t = ulong
|
15
|
+
rbx.platform.typedef.__dev_t = ulong
|
16
|
+
rbx.platform.typedef.__uid_t = uint
|
17
|
+
rbx.platform.typedef.__gid_t = uint
|
18
|
+
rbx.platform.typedef.__ino_t = ulong
|
19
|
+
rbx.platform.typedef.__ino64_t = ulong
|
20
|
+
rbx.platform.typedef.__mode_t = uint
|
21
|
+
rbx.platform.typedef.__nlink_t = ulong
|
22
|
+
rbx.platform.typedef.__off_t = long
|
23
|
+
rbx.platform.typedef.__off64_t = long
|
24
|
+
rbx.platform.typedef.__pid_t = int
|
25
|
+
rbx.platform.typedef.__clock_t = long
|
26
|
+
rbx.platform.typedef.__rlim_t = ulong
|
27
|
+
rbx.platform.typedef.__rlim64_t = ulong
|
28
|
+
rbx.platform.typedef.__id_t = uint
|
29
|
+
rbx.platform.typedef.__time_t = long
|
30
|
+
rbx.platform.typedef.__useconds_t = uint
|
31
|
+
rbx.platform.typedef.__suseconds_t = long
|
32
|
+
rbx.platform.typedef.__daddr_t = int
|
33
|
+
rbx.platform.typedef.__swblk_t = long
|
34
|
+
rbx.platform.typedef.__key_t = int
|
35
|
+
rbx.platform.typedef.__clockid_t = int
|
36
|
+
rbx.platform.typedef.__timer_t = pointer
|
37
|
+
rbx.platform.typedef.__blksize_t = long
|
38
|
+
rbx.platform.typedef.__blkcnt_t = long
|
39
|
+
rbx.platform.typedef.__blkcnt64_t = long
|
40
|
+
rbx.platform.typedef.__fsblkcnt_t = ulong
|
41
|
+
rbx.platform.typedef.__fsblkcnt64_t = ulong
|
42
|
+
rbx.platform.typedef.__fsfilcnt_t = ulong
|
43
|
+
rbx.platform.typedef.__fsfilcnt64_t = ulong
|
44
|
+
rbx.platform.typedef.__ssize_t = long
|
45
|
+
rbx.platform.typedef.__loff_t = long
|
46
|
+
rbx.platform.typedef.*__qaddr_t = long
|
47
|
+
rbx.platform.typedef.*__caddr_t = char
|
48
|
+
rbx.platform.typedef.__intptr_t = long
|
49
|
+
rbx.platform.typedef.__socklen_t = uint
|
50
|
+
rbx.platform.typedef.u_char = uchar
|
51
|
+
rbx.platform.typedef.u_short = ushort
|
52
|
+
rbx.platform.typedef.u_int = uint
|
53
|
+
rbx.platform.typedef.u_long = ulong
|
54
|
+
rbx.platform.typedef.quad_t = long
|
55
|
+
rbx.platform.typedef.u_quad_t = ulong
|
56
|
+
rbx.platform.typedef.loff_t = long
|
57
|
+
rbx.platform.typedef.ino_t = ulong
|
58
|
+
rbx.platform.typedef.dev_t = ulong
|
59
|
+
rbx.platform.typedef.gid_t = uint
|
60
|
+
rbx.platform.typedef.mode_t = uint
|
61
|
+
rbx.platform.typedef.nlink_t = ulong
|
62
|
+
rbx.platform.typedef.uid_t = uint
|
63
|
+
rbx.platform.typedef.off_t = long
|
64
|
+
rbx.platform.typedef.pid_t = int
|
65
|
+
rbx.platform.typedef.id_t = uint
|
66
|
+
rbx.platform.typedef.ssize_t = long
|
67
|
+
rbx.platform.typedef.daddr_t = int
|
68
|
+
rbx.platform.typedef.key_t = int
|
69
|
+
rbx.platform.typedef.clock_t = long
|
70
|
+
rbx.platform.typedef.time_t = long
|
71
|
+
rbx.platform.typedef.clockid_t = int
|
72
|
+
rbx.platform.typedef.timer_t = pointer
|
73
|
+
rbx.platform.typedef.size_t = ulong
|
74
|
+
rbx.platform.typedef.ulong = ulong
|
75
|
+
rbx.platform.typedef.ushort = ushort
|
76
|
+
rbx.platform.typedef.uint = uint
|
77
|
+
rbx.platform.typedef.int8_t = char
|
78
|
+
rbx.platform.typedef.int16_t = short
|
79
|
+
rbx.platform.typedef.int32_t = int
|
80
|
+
rbx.platform.typedef.int64_t = long_long
|
81
|
+
rbx.platform.typedef.u_int8_t = uchar
|
82
|
+
rbx.platform.typedef.u_int16_t = ushort
|
83
|
+
rbx.platform.typedef.u_int32_t = uint
|
84
|
+
rbx.platform.typedef.u_int64_t = ulong_long
|
85
|
+
rbx.platform.typedef.register_t = long
|
86
|
+
rbx.platform.typedef.__sig_atomic_t = int
|
87
|
+
rbx.platform.typedef.suseconds_t = long
|
88
|
+
rbx.platform.typedef.__fd_mask = long
|
89
|
+
rbx.platform.typedef.fd_mask = long
|
90
|
+
rbx.platform.typedef.blksize_t = long
|
91
|
+
rbx.platform.typedef.blkcnt_t = long
|
92
|
+
rbx.platform.typedef.fsblkcnt_t = ulong
|
93
|
+
rbx.platform.typedef.fsfilcnt_t = ulong
|
94
|
+
rbx.platform.typedef.pthread_t = ulong
|
95
|
+
rbx.platform.typedef.pthread_key_t = uint
|
96
|
+
rbx.platform.typedef.pthread_once_t = int
|
97
|
+
rbx.platform.typedef.socklen_t = uint
|
98
|
+
rbx.platform.typedef.sa_family_t = ushort
|
99
|
+
rbx.platform.typedef.rlim_t = ulong
|
100
|
+
rbx.platform.typedef.__rlimit_resource_t = int
|
101
|
+
rbx.platform.typedef.__rusage_who_t = int
|
102
|
+
rbx.platform.typedef.__priority_which_t = int
|
@@ -0,0 +1,102 @@
|
|
1
|
+
rbx.platform.typedef.__u_char = uchar
|
2
|
+
rbx.platform.typedef.__u_short = ushort
|
3
|
+
rbx.platform.typedef.__u_int = uint
|
4
|
+
rbx.platform.typedef.__u_long = ulong
|
5
|
+
rbx.platform.typedef.__int8_t = char
|
6
|
+
rbx.platform.typedef.__uint8_t = uchar
|
7
|
+
rbx.platform.typedef.__int16_t = short
|
8
|
+
rbx.platform.typedef.__uint16_t = ushort
|
9
|
+
rbx.platform.typedef.__int32_t = int
|
10
|
+
rbx.platform.typedef.__uint32_t = uint
|
11
|
+
rbx.platform.typedef.__int64_t = long_long
|
12
|
+
rbx.platform.typedef.__uint64_t = ulong_long
|
13
|
+
rbx.platform.typedef.__quad_t = long_long
|
14
|
+
rbx.platform.typedef.__u_quad_t = ulong_long
|
15
|
+
rbx.platform.typedef.__dev_t = ulong_long
|
16
|
+
rbx.platform.typedef.__uid_t = uint
|
17
|
+
rbx.platform.typedef.__gid_t = uint
|
18
|
+
rbx.platform.typedef.__ino_t = ulong
|
19
|
+
rbx.platform.typedef.__ino64_t = ulong_long
|
20
|
+
rbx.platform.typedef.__mode_t = uint
|
21
|
+
rbx.platform.typedef.__nlink_t = uint
|
22
|
+
rbx.platform.typedef.__off_t = long
|
23
|
+
rbx.platform.typedef.__off64_t = long_long
|
24
|
+
rbx.platform.typedef.__pid_t = int
|
25
|
+
rbx.platform.typedef.__clock_t = long
|
26
|
+
rbx.platform.typedef.__rlim_t = ulong
|
27
|
+
rbx.platform.typedef.__rlim64_t = ulong_long
|
28
|
+
rbx.platform.typedef.__id_t = uint
|
29
|
+
rbx.platform.typedef.__time_t = long
|
30
|
+
rbx.platform.typedef.__useconds_t = uint
|
31
|
+
rbx.platform.typedef.__suseconds_t = int
|
32
|
+
rbx.platform.typedef.__daddr_t = int
|
33
|
+
rbx.platform.typedef.__swblk_t = long
|
34
|
+
rbx.platform.typedef.__key_t = int
|
35
|
+
rbx.platform.typedef.__clockid_t = int
|
36
|
+
rbx.platform.typedef.__timer_t = pointer
|
37
|
+
rbx.platform.typedef.__blksize_t = long
|
38
|
+
rbx.platform.typedef.__blkcnt_t = long
|
39
|
+
rbx.platform.typedef.__blkcnt64_t = long_long
|
40
|
+
rbx.platform.typedef.__fsblkcnt_t = ulong
|
41
|
+
rbx.platform.typedef.__fsblkcnt64_t = ulong_long
|
42
|
+
rbx.platform.typedef.__fsfilcnt_t = ulong
|
43
|
+
rbx.platform.typedef.__fsfilcnt64_t = ulong_long
|
44
|
+
rbx.platform.typedef.__ssize_t = int
|
45
|
+
rbx.platform.typedef.__loff_t = long_long
|
46
|
+
rbx.platform.typedef.*__qaddr_t = long_long
|
47
|
+
rbx.platform.typedef.*__caddr_t = char
|
48
|
+
rbx.platform.typedef.__intptr_t = int
|
49
|
+
rbx.platform.typedef.__socklen_t = uint
|
50
|
+
rbx.platform.typedef.u_char = uchar
|
51
|
+
rbx.platform.typedef.u_short = ushort
|
52
|
+
rbx.platform.typedef.u_int = uint
|
53
|
+
rbx.platform.typedef.u_long = ulong
|
54
|
+
rbx.platform.typedef.quad_t = long_long
|
55
|
+
rbx.platform.typedef.u_quad_t = ulong_long
|
56
|
+
rbx.platform.typedef.loff_t = long_long
|
57
|
+
rbx.platform.typedef.ino_t = ulong_long
|
58
|
+
rbx.platform.typedef.dev_t = ulong_long
|
59
|
+
rbx.platform.typedef.gid_t = uint
|
60
|
+
rbx.platform.typedef.mode_t = uint
|
61
|
+
rbx.platform.typedef.nlink_t = uint
|
62
|
+
rbx.platform.typedef.uid_t = uint
|
63
|
+
rbx.platform.typedef.off_t = long_long
|
64
|
+
rbx.platform.typedef.pid_t = int
|
65
|
+
rbx.platform.typedef.id_t = uint
|
66
|
+
rbx.platform.typedef.ssize_t = int
|
67
|
+
rbx.platform.typedef.daddr_t = int
|
68
|
+
rbx.platform.typedef.key_t = int
|
69
|
+
rbx.platform.typedef.clock_t = long
|
70
|
+
rbx.platform.typedef.time_t = long
|
71
|
+
rbx.platform.typedef.clockid_t = int
|
72
|
+
rbx.platform.typedef.timer_t = pointer
|
73
|
+
rbx.platform.typedef.size_t = uint
|
74
|
+
rbx.platform.typedef.ulong = ulong
|
75
|
+
rbx.platform.typedef.ushort = ushort
|
76
|
+
rbx.platform.typedef.uint = uint
|
77
|
+
rbx.platform.typedef.int8_t = char
|
78
|
+
rbx.platform.typedef.int16_t = short
|
79
|
+
rbx.platform.typedef.int32_t = int
|
80
|
+
rbx.platform.typedef.int64_t = long_long
|
81
|
+
rbx.platform.typedef.u_int8_t = uchar
|
82
|
+
rbx.platform.typedef.u_int16_t = ushort
|
83
|
+
rbx.platform.typedef.u_int32_t = uint
|
84
|
+
rbx.platform.typedef.u_int64_t = ulong_long
|
85
|
+
rbx.platform.typedef.register_t = long
|
86
|
+
rbx.platform.typedef.__sig_atomic_t = int
|
87
|
+
rbx.platform.typedef.suseconds_t = int
|
88
|
+
rbx.platform.typedef.__fd_mask = long
|
89
|
+
rbx.platform.typedef.fd_mask = long
|
90
|
+
rbx.platform.typedef.blksize_t = long
|
91
|
+
rbx.platform.typedef.blkcnt_t = long_long
|
92
|
+
rbx.platform.typedef.fsblkcnt_t = ulong_long
|
93
|
+
rbx.platform.typedef.fsfilcnt_t = ulong_long
|
94
|
+
rbx.platform.typedef.pthread_t = ulong
|
95
|
+
rbx.platform.typedef.pthread_key_t = uint
|
96
|
+
rbx.platform.typedef.pthread_once_t = int
|
97
|
+
rbx.platform.typedef.socklen_t = uint
|
98
|
+
rbx.platform.typedef.sa_family_t = ushort
|
99
|
+
rbx.platform.typedef.rlim_t = ulong_long
|
100
|
+
rbx.platform.typedef.__rlimit_resource_t = int
|
101
|
+
rbx.platform.typedef.__rusage_who_t = int
|
102
|
+
rbx.platform.typedef.__priority_which_t = int
|