ffi 1.10.0 → 1.13.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/{appveyor.yml → .appveyor.yml} +9 -1
- data/.github/workflows/ci.yml +64 -0
- data/.gitignore +3 -0
- data/.gitmodules +1 -0
- data/.travis.yml +35 -20
- data/CHANGELOG.md +124 -0
- data/Gemfile +6 -4
- data/README.md +29 -17
- data/Rakefile +29 -120
- data/ext/ffi_c/AbstractMemory.c +5 -9
- data/ext/ffi_c/Buffer.c +2 -2
- data/ext/ffi_c/Call.c +14 -41
- data/ext/ffi_c/Call.h +4 -7
- data/ext/ffi_c/ClosurePool.c +11 -14
- data/ext/ffi_c/DynamicLibrary.c +1 -1
- data/ext/ffi_c/Function.c +18 -117
- data/ext/ffi_c/FunctionInfo.c +1 -2
- data/ext/ffi_c/LongDouble.c +12 -10
- data/ext/ffi_c/LongDouble.h +0 -4
- data/ext/ffi_c/MemoryPointer.c +1 -1
- data/ext/ffi_c/MethodHandle.c +18 -24
- data/ext/ffi_c/MethodHandle.h +3 -2
- data/ext/ffi_c/Platform.c +1 -47
- data/ext/ffi_c/Pointer.c +1 -1
- data/ext/ffi_c/Struct.c +47 -51
- data/ext/ffi_c/Struct.h +12 -6
- data/ext/ffi_c/StructLayout.c +20 -14
- data/ext/ffi_c/Thread.c +4 -223
- data/ext/ffi_c/Thread.h +0 -14
- data/ext/ffi_c/Type.c +0 -18
- data/ext/ffi_c/Type.h +0 -1
- data/ext/ffi_c/Types.c +1 -1
- data/ext/ffi_c/Variadic.c +9 -15
- data/ext/ffi_c/compat.h +4 -0
- data/ext/ffi_c/extconf.rb +36 -26
- data/ext/ffi_c/ffi.c +3 -8
- data/ext/ffi_c/libffi.darwin.mk +1 -1
- data/ext/ffi_c/libffi/.appveyor.yml +29 -13
- data/ext/ffi_c/libffi/.gitattributes +4 -0
- data/ext/ffi_c/libffi/.travis.yml +51 -2
- data/ext/ffi_c/libffi/.travis/bfin-sim.exp +58 -0
- data/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +14 -0
- data/ext/ffi_c/libffi/.travis/build-in-container.sh +12 -0
- data/ext/ffi_c/libffi/.travis/build.sh +116 -8
- data/ext/ffi_c/libffi/.travis/install.sh +65 -16
- data/ext/ffi_c/libffi/.travis/m32r-sim.exp +58 -0
- data/ext/ffi_c/libffi/.travis/or1k-sim.exp +58 -0
- data/ext/ffi_c/libffi/.travis/powerpc-eabisim.exp +58 -0
- data/ext/ffi_c/libffi/.travis/site.exp +10 -1
- data/ext/ffi_c/libffi/.travis/wine-sim.exp +55 -0
- data/ext/ffi_c/libffi/{ChangeLog.libffi-3.1 → ChangeLog.old} +1407 -0
- data/ext/ffi_c/libffi/LICENSE +1 -1
- data/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +5 -4
- data/ext/ffi_c/libffi/Makefile.am +35 -41
- data/ext/ffi_c/libffi/README.md +29 -8
- data/ext/ffi_c/libffi/configure.ac +31 -11
- data/ext/ffi_c/libffi/configure.host +26 -9
- data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +1 -3
- data/ext/ffi_c/libffi/include/ffi.h.in +19 -7
- data/ext/ffi_c/libffi/include/ffi_common.h +5 -1
- data/ext/ffi_c/libffi/libffi.map.in +8 -12
- data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +2 -48
- data/ext/ffi_c/libffi/libtool-version +1 -1
- data/ext/ffi_c/libffi/m4/asmcfi.m4 +1 -1
- data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +5 -26
- data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +5 -26
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +2 -1
- data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +5 -26
- data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +7 -3
- data/ext/ffi_c/libffi/make_sunver.pl +333 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +33 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +130 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +57 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +4 -0
- data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +511 -0
- data/ext/ffi_c/libffi/msvcc.sh +27 -2
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +132 -58
- data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +13 -2
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +21 -8
- data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +40 -5
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +8 -1
- data/ext/ffi_c/libffi/src/arm/sysv.S +2 -0
- data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
- data/ext/ffi_c/libffi/src/closures.c +51 -13
- data/ext/ffi_c/libffi/src/frv/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/metag/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/mips/o32.S +2 -0
- data/ext/ffi_c/libffi/src/moxie/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/pa/ffi.c +46 -91
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +1 -6
- data/ext/ffi_c/libffi/src/pa/hpux32.S +4 -2
- data/ext/ffi_c/libffi/src/pa/linux.S +27 -4
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +6 -4
- data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +211 -32
- data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +18 -7
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +10 -4
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +83 -28
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +68 -4
- data/ext/ffi_c/libffi/src/powerpc/sysv.S +5 -7
- data/ext/ffi_c/libffi/src/prep_cif.c +4 -2
- data/ext/ffi_c/libffi/src/riscv/ffi.c +42 -6
- data/ext/ffi_c/libffi/src/riscv/ffitarget.h +1 -0
- data/ext/ffi_c/libffi/src/riscv/sysv.S +86 -7
- data/ext/ffi_c/libffi/src/x86/ffi.c +21 -10
- data/ext/ffi_c/libffi/src/x86/ffi64.c +15 -11
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +15 -2
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +15 -10
- data/ext/ffi_c/libffi/src/x86/sysv.S +103 -8
- data/ext/ffi_c/libffi/src/x86/sysv_intel.S +995 -0
- data/ext/ffi_c/libffi/src/x86/unix64.S +99 -2
- data/ext/ffi_c/libffi/src/x86/win64.S +9 -1
- data/ext/ffi_c/libffi/testsuite/Makefile.am +114 -109
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +26 -22
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +7 -2
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +12 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +67 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn0.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn3.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn4.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn5.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn6.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_loc_fn0.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_simple.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_12byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_16byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_18byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_19byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_1_1byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_24byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_2byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3_1byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3float.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4_1byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5_1_byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_64byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6_1_byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7_1_byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_8byte.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_double.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_float.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_pointer.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint16.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint32.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint64.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint16.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint32.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint64.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_dbls_struct.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_float.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_args.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_float_double.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_schar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshort.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshortchar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_uchar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushort.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushortchar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer_stack.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_schar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sint.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sshort.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_struct_va1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulong_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulonglong.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort_va.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/err_bad_abi.c +0 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +138 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/huge_struct.c +1 -1
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct10.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct11.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct3.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct4.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct5.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct6.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct7.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct8.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct9.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/problem1.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium2.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/testclosure.c +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest.cc +0 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest_ffi_call.cc +0 -0
- data/ext/ffi_c/rbffi.h +0 -2
- data/ffi.gemspec +12 -5
- data/lib/ffi.rb +10 -2
- data/lib/ffi/data_converter.rb +67 -0
- data/lib/ffi/ffi.rb +2 -0
- data/lib/ffi/library.rb +10 -6
- data/lib/ffi/platform.rb +12 -3
- data/lib/ffi/platform/aarch64-freebsd/types.conf +89 -89
- data/lib/ffi/platform/aarch64-freebsd12/types.conf +89 -89
- data/lib/ffi/platform/aarch64-linux/types.conf +81 -81
- data/lib/ffi/platform/arm-freebsd/types.conf +87 -87
- data/lib/ffi/platform/arm-freebsd12/types.conf +87 -87
- data/lib/ffi/platform/arm-linux/types.conf +110 -82
- data/lib/ffi/platform/i386-cygwin/types.conf +1 -1
- data/lib/ffi/platform/i386-darwin/types.conf +63 -63
- data/lib/ffi/platform/i386-freebsd/types.conf +87 -87
- data/lib/ffi/platform/i386-freebsd12/types.conf +87 -87
- data/lib/ffi/platform/i386-gnu/types.conf +84 -84
- data/lib/ffi/platform/i386-linux/types.conf +77 -77
- data/lib/ffi/platform/i386-netbsd/types.conf +87 -87
- data/lib/ffi/platform/i386-openbsd/types.conf +89 -89
- data/lib/ffi/platform/i386-solaris/types.conf +96 -96
- data/lib/ffi/platform/i386-windows/types.conf +43 -96
- data/lib/ffi/platform/ia64-linux/types.conf +79 -79
- data/lib/ffi/platform/mips-linux/types.conf +79 -79
- data/lib/ffi/platform/mips64-linux/types.conf +81 -81
- data/lib/ffi/platform/mips64el-linux/types.conf +81 -81
- data/lib/ffi/platform/mipsel-linux/types.conf +79 -79
- data/lib/ffi/platform/mipsisa32r6-linux/types.conf +79 -79
- data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +79 -79
- data/lib/ffi/platform/mipsisa64r6-linux/types.conf +81 -81
- data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +81 -81
- data/lib/ffi/platform/powerpc-aix/types.conf +155 -155
- data/lib/ffi/platform/powerpc-darwin/types.conf +63 -63
- data/lib/ffi/platform/powerpc-linux/types.conf +108 -78
- data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
- data/lib/ffi/platform/powerpc64-linux/types.conf +81 -81
- data/lib/ffi/platform/s390-linux/types.conf +79 -79
- data/lib/ffi/platform/s390x-linux/types.conf +79 -79
- data/lib/ffi/platform/sparc-linux/types.conf +79 -79
- data/lib/ffi/platform/sparc-solaris/types.conf +103 -103
- data/lib/ffi/platform/sparc64-linux/types.conf +79 -79
- data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
- data/lib/ffi/platform/sparcv9-solaris/types.conf +103 -103
- data/lib/ffi/platform/x86_64-cygwin/types.conf +1 -1
- data/lib/ffi/platform/x86_64-darwin/types.conf +88 -84
- data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
- data/lib/ffi/platform/x86_64-freebsd/types.conf +89 -89
- data/lib/ffi/platform/x86_64-freebsd12/types.conf +139 -109
- data/lib/ffi/platform/x86_64-linux/types.conf +107 -77
- data/lib/ffi/platform/x86_64-netbsd/types.conf +89 -89
- data/lib/ffi/platform/x86_64-openbsd/types.conf +86 -86
- data/lib/ffi/platform/x86_64-solaris/types.conf +96 -96
- data/lib/ffi/platform/x86_64-windows/types.conf +42 -110
- data/lib/ffi/pointer.rb +20 -13
- data/lib/ffi/struct.rb +13 -68
- data/lib/ffi/struct_by_reference.rb +72 -0
- data/lib/ffi/struct_layout.rb +96 -0
- data/lib/ffi/tools/const_generator.rb +5 -4
- data/lib/ffi/tools/generator.rb +47 -2
- data/lib/ffi/tools/generator_task.rb +13 -17
- data/lib/ffi/tools/struct_generator.rb +4 -4
- data/lib/ffi/tools/types_generator.rb +7 -4
- data/lib/ffi/types.rb +1 -1
- data/lib/ffi/version.rb +1 -1
- data/samples/getlogin.rb +1 -1
- data/samples/getpid.rb +1 -1
- data/samples/gettimeofday.rb +8 -8
- data/samples/hello.rb +2 -1
- data/samples/inotify.rb +1 -1
- data/samples/pty.rb +1 -2
- data/samples/qsort.rb +0 -1
- metadata +141 -116
- data/ext/ffi_c/DataConverter.c +0 -91
- data/ext/ffi_c/StructByReference.c +0 -190
- data/ext/ffi_c/StructByReference.h +0 -50
- data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
- data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
- data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
- data/samples/sample_helper.rb +0 -6
@@ -1,102 +1,132 @@
|
|
1
|
-
rbx.platform.typedef
|
2
|
-
rbx.platform.typedef.
|
3
|
-
rbx.platform.typedef.
|
4
|
-
rbx.platform.typedef.
|
5
|
-
rbx.platform.typedef.
|
6
|
-
rbx.platform.typedef.
|
7
|
-
rbx.platform.typedef.
|
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
|
1
|
+
rbx.platform.typedef.*__caddr_t = char
|
2
|
+
rbx.platform.typedef.__blkcnt64_t = long
|
3
|
+
rbx.platform.typedef.__blkcnt_t = long
|
4
|
+
rbx.platform.typedef.__blksize_t = long
|
5
|
+
rbx.platform.typedef.__clock_t = long
|
6
|
+
rbx.platform.typedef.__clockid_t = int
|
7
|
+
rbx.platform.typedef.__daddr_t = int
|
15
8
|
rbx.platform.typedef.__dev_t = ulong
|
16
|
-
rbx.platform.typedef.
|
9
|
+
rbx.platform.typedef.__fd_mask = long
|
10
|
+
rbx.platform.typedef.__fsblkcnt64_t = ulong
|
11
|
+
rbx.platform.typedef.__fsblkcnt_t = ulong
|
12
|
+
rbx.platform.typedef.__fsfilcnt64_t = ulong
|
13
|
+
rbx.platform.typedef.__fsfilcnt_t = ulong
|
14
|
+
rbx.platform.typedef.__fsword_t = long
|
17
15
|
rbx.platform.typedef.__gid_t = uint
|
18
|
-
rbx.platform.typedef.
|
16
|
+
rbx.platform.typedef.__id_t = uint
|
19
17
|
rbx.platform.typedef.__ino64_t = ulong
|
18
|
+
rbx.platform.typedef.__ino_t = ulong
|
19
|
+
rbx.platform.typedef.__int16_t = short
|
20
|
+
rbx.platform.typedef.__int32_t = int
|
21
|
+
rbx.platform.typedef.__int64_t = long
|
22
|
+
rbx.platform.typedef.__int8_t = char
|
23
|
+
rbx.platform.typedef.__intmax_t = long
|
24
|
+
rbx.platform.typedef.__intptr_t = long
|
25
|
+
rbx.platform.typedef.__key_t = int
|
26
|
+
rbx.platform.typedef.__loff_t = long
|
20
27
|
rbx.platform.typedef.__mode_t = uint
|
21
28
|
rbx.platform.typedef.__nlink_t = ulong
|
22
|
-
rbx.platform.typedef.__off_t = long
|
23
29
|
rbx.platform.typedef.__off64_t = long
|
30
|
+
rbx.platform.typedef.__off_t = long
|
24
31
|
rbx.platform.typedef.__pid_t = int
|
25
|
-
rbx.platform.typedef.
|
26
|
-
rbx.platform.typedef.
|
32
|
+
rbx.platform.typedef.__priority_which_t = int
|
33
|
+
rbx.platform.typedef.__quad_t = long
|
27
34
|
rbx.platform.typedef.__rlim64_t = ulong
|
28
|
-
rbx.platform.typedef.
|
29
|
-
rbx.platform.typedef.
|
30
|
-
rbx.platform.typedef.
|
35
|
+
rbx.platform.typedef.__rlim_t = ulong
|
36
|
+
rbx.platform.typedef.__rlimit_resource_t = int
|
37
|
+
rbx.platform.typedef.__rusage_who_t = int
|
38
|
+
rbx.platform.typedef.__sig_atomic_t = int
|
39
|
+
rbx.platform.typedef.__socklen_t = uint
|
40
|
+
rbx.platform.typedef.__ssize_t = long
|
31
41
|
rbx.platform.typedef.__suseconds_t = long
|
32
|
-
rbx.platform.typedef.
|
33
|
-
rbx.platform.typedef.
|
34
|
-
rbx.platform.typedef.
|
35
|
-
rbx.platform.typedef.__clockid_t = int
|
42
|
+
rbx.platform.typedef.__syscall_slong_t = long
|
43
|
+
rbx.platform.typedef.__syscall_ulong_t = ulong
|
44
|
+
rbx.platform.typedef.__time_t = long
|
36
45
|
rbx.platform.typedef.__timer_t = pointer
|
46
|
+
rbx.platform.typedef.__u_char = uchar
|
47
|
+
rbx.platform.typedef.__u_int = uint
|
48
|
+
rbx.platform.typedef.__u_long = ulong
|
49
|
+
rbx.platform.typedef.__u_quad_t = ulong
|
50
|
+
rbx.platform.typedef.__u_short = ushort
|
51
|
+
rbx.platform.typedef.__uid_t = uint
|
52
|
+
rbx.platform.typedef.__uint16_t = ushort
|
53
|
+
rbx.platform.typedef.__uint32_t = uint
|
54
|
+
rbx.platform.typedef.__uint64_t = ulong
|
55
|
+
rbx.platform.typedef.__uint8_t = uchar
|
56
|
+
rbx.platform.typedef.__uintmax_t = ulong
|
57
|
+
rbx.platform.typedef.__useconds_t = uint
|
58
|
+
rbx.platform.typedef.blkcnt_t = long
|
37
59
|
rbx.platform.typedef.blksize_t = long
|
38
|
-
rbx.platform.typedef.
|
39
|
-
rbx.platform.typedef.
|
40
|
-
rbx.platform.typedef.
|
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
|
60
|
+
rbx.platform.typedef.clock_t = long
|
61
|
+
rbx.platform.typedef.clockid_t = int
|
62
|
+
rbx.platform.typedef.daddr_t = int
|
58
63
|
rbx.platform.typedef.dev_t = ulong
|
64
|
+
rbx.platform.typedef.fd_mask = long
|
65
|
+
rbx.platform.typedef.fsblkcnt_t = ulong
|
66
|
+
rbx.platform.typedef.fsfilcnt_t = ulong
|
59
67
|
rbx.platform.typedef.gid_t = uint
|
68
|
+
rbx.platform.typedef.id_t = uint
|
60
69
|
rbx.platform.typedef.in_addr_t = uint
|
61
70
|
rbx.platform.typedef.in_port_t = ushort
|
71
|
+
rbx.platform.typedef.ino_t = ulong
|
72
|
+
rbx.platform.typedef.int16_t = short
|
73
|
+
rbx.platform.typedef.int32_t = int
|
74
|
+
rbx.platform.typedef.int64_t = long
|
75
|
+
rbx.platform.typedef.int8_t = char
|
76
|
+
rbx.platform.typedef.int_fast16_t = long
|
77
|
+
rbx.platform.typedef.int_fast32_t = long
|
78
|
+
rbx.platform.typedef.int_fast64_t = long
|
79
|
+
rbx.platform.typedef.int_fast8_t = char
|
80
|
+
rbx.platform.typedef.int_least32_t = int
|
81
|
+
rbx.platform.typedef.int_least64_t = long
|
82
|
+
rbx.platform.typedef.int_least8_t = char
|
83
|
+
rbx.platform.typedef.intmax_t = long
|
84
|
+
rbx.platform.typedef.intptr_t = long
|
85
|
+
rbx.platform.typedef.key_t = int
|
86
|
+
rbx.platform.typedef.loff_t = long
|
62
87
|
rbx.platform.typedef.mode_t = uint
|
63
88
|
rbx.platform.typedef.nlink_t = ulong
|
64
|
-
rbx.platform.typedef.uid_t = uint
|
65
89
|
rbx.platform.typedef.off_t = long
|
66
90
|
rbx.platform.typedef.pid_t = int
|
67
|
-
rbx.platform.typedef.
|
91
|
+
rbx.platform.typedef.pthread_key_t = uint
|
92
|
+
rbx.platform.typedef.pthread_once_t = int
|
93
|
+
rbx.platform.typedef.pthread_t = ulong
|
94
|
+
rbx.platform.typedef.ptrdiff_t = long
|
95
|
+
rbx.platform.typedef.quad_t = long
|
96
|
+
rbx.platform.typedef.register_t = long
|
97
|
+
rbx.platform.typedef.rlim_t = ulong
|
98
|
+
rbx.platform.typedef.sa_family_t = ushort
|
99
|
+
rbx.platform.typedef.size_t = ulong
|
100
|
+
rbx.platform.typedef.socklen_t = uint
|
68
101
|
rbx.platform.typedef.ssize_t = long
|
69
|
-
rbx.platform.typedef.
|
70
|
-
rbx.platform.typedef.key_t = int
|
102
|
+
rbx.platform.typedef.suseconds_t = long
|
71
103
|
rbx.platform.typedef.time_t = long
|
72
|
-
rbx.platform.typedef.clockid_t = int
|
73
104
|
rbx.platform.typedef.timer_t = pointer
|
74
|
-
rbx.platform.typedef.
|
75
|
-
rbx.platform.typedef.
|
76
|
-
rbx.platform.typedef.ushort = ushort
|
77
|
-
rbx.platform.typedef.uint = uint
|
78
|
-
rbx.platform.typedef.int8_t = char
|
79
|
-
rbx.platform.typedef.int16_t = short
|
80
|
-
rbx.platform.typedef.int32_t = int
|
81
|
-
rbx.platform.typedef.int64_t = long_long
|
82
|
-
rbx.platform.typedef.u_int8_t = uchar
|
105
|
+
rbx.platform.typedef.u_char = uchar
|
106
|
+
rbx.platform.typedef.u_int = uint
|
83
107
|
rbx.platform.typedef.u_int16_t = ushort
|
84
108
|
rbx.platform.typedef.u_int32_t = uint
|
85
109
|
rbx.platform.typedef.u_int64_t = ulong_long
|
86
|
-
rbx.platform.typedef.
|
87
|
-
rbx.platform.typedef.
|
88
|
-
rbx.platform.typedef.
|
89
|
-
rbx.platform.typedef.
|
90
|
-
rbx.platform.typedef.
|
91
|
-
rbx.platform.typedef.
|
92
|
-
rbx.platform.typedef.
|
93
|
-
rbx.platform.typedef.
|
94
|
-
rbx.platform.typedef.
|
95
|
-
rbx.platform.typedef.
|
96
|
-
rbx.platform.typedef.
|
97
|
-
rbx.platform.typedef.
|
98
|
-
rbx.platform.typedef.
|
99
|
-
rbx.platform.typedef.
|
100
|
-
rbx.platform.typedef.
|
101
|
-
rbx.platform.typedef.
|
102
|
-
rbx.platform.typedef.
|
110
|
+
rbx.platform.typedef.u_int8_t = uchar
|
111
|
+
rbx.platform.typedef.u_long = ulong
|
112
|
+
rbx.platform.typedef.u_quad_t = ulong
|
113
|
+
rbx.platform.typedef.u_short = ushort
|
114
|
+
rbx.platform.typedef.uid_t = uint
|
115
|
+
rbx.platform.typedef.uint = uint
|
116
|
+
rbx.platform.typedef.uint16_t = ushort
|
117
|
+
rbx.platform.typedef.uint32_t = uint
|
118
|
+
rbx.platform.typedef.uint64_t = ulong
|
119
|
+
rbx.platform.typedef.uint8_t = uchar
|
120
|
+
rbx.platform.typedef.uint_fast16_t = ulong
|
121
|
+
rbx.platform.typedef.uint_fast32_t = ulong
|
122
|
+
rbx.platform.typedef.uint_fast64_t = ulong
|
123
|
+
rbx.platform.typedef.uint_fast8_t = uchar
|
124
|
+
rbx.platform.typedef.uint_least16_t = ushort
|
125
|
+
rbx.platform.typedef.uint_least32_t = uint
|
126
|
+
rbx.platform.typedef.uint_least64_t = ulong
|
127
|
+
rbx.platform.typedef.uint_least8_t = uchar
|
128
|
+
rbx.platform.typedef.uintmax_t = ulong
|
129
|
+
rbx.platform.typedef.uintptr_t = ulong
|
130
|
+
rbx.platform.typedef.ulong = ulong
|
131
|
+
rbx.platform.typedef.ushort = ushort
|
132
|
+
rbx.platform.typedef.wchar_t = int
|
@@ -1,128 +1,128 @@
|
|
1
|
-
rbx.platform.typedef.__int8_t = char
|
2
|
-
rbx.platform.typedef.__uint8_t = uchar
|
3
|
-
rbx.platform.typedef.__int16_t = short
|
4
|
-
rbx.platform.typedef.__uint16_t = ushort
|
5
|
-
rbx.platform.typedef.__int32_t = int
|
6
|
-
rbx.platform.typedef.__uint32_t = uint
|
7
|
-
rbx.platform.typedef.__int64_t = long_long
|
8
|
-
rbx.platform.typedef.__uint64_t = ulong_long
|
9
|
-
rbx.platform.typedef.__int_least8_t = char
|
10
|
-
rbx.platform.typedef.__uint_least8_t = uchar
|
11
|
-
rbx.platform.typedef.__int_least16_t = short
|
12
|
-
rbx.platform.typedef.__uint_least16_t = ushort
|
13
|
-
rbx.platform.typedef.__int_least32_t = int
|
14
|
-
rbx.platform.typedef.__uint_least32_t = uint
|
15
|
-
rbx.platform.typedef.__int_least64_t = long_long
|
16
|
-
rbx.platform.typedef.__uint_least64_t = ulong_long
|
17
|
-
rbx.platform.typedef.__int_fast8_t = int
|
18
|
-
rbx.platform.typedef.__uint_fast8_t = uint
|
19
|
-
rbx.platform.typedef.__int_fast16_t = int
|
20
|
-
rbx.platform.typedef.__uint_fast16_t = uint
|
21
|
-
rbx.platform.typedef.__int_fast32_t = int
|
22
|
-
rbx.platform.typedef.__uint_fast32_t = uint
|
23
|
-
rbx.platform.typedef.__int_fast64_t = long_long
|
24
|
-
rbx.platform.typedef.__uint_fast64_t = ulong_long
|
25
|
-
rbx.platform.typedef.__intptr_t = long
|
26
|
-
rbx.platform.typedef.__uintptr_t = ulong
|
27
|
-
rbx.platform.typedef.__intmax_t = long_long
|
28
|
-
rbx.platform.typedef.__uintmax_t = ulong_long
|
29
|
-
rbx.platform.typedef.__register_t = int
|
30
|
-
rbx.platform.typedef.__vaddr_t = ulong
|
31
|
-
rbx.platform.typedef.__paddr_t = ulong
|
32
|
-
rbx.platform.typedef.__vsize_t = ulong
|
33
|
-
rbx.platform.typedef.__psize_t = ulong
|
34
1
|
rbx.platform.typedef.__clock_t = int
|
35
2
|
rbx.platform.typedef.__clockid_t = int
|
36
|
-
rbx.platform.typedef.__off_t = long_long
|
37
|
-
rbx.platform.typedef.__ptrdiff_t = long
|
38
|
-
rbx.platform.typedef.__size_t = ulong
|
39
|
-
rbx.platform.typedef.__ssize_t = long
|
40
|
-
rbx.platform.typedef.__time_t = int
|
41
|
-
rbx.platform.typedef.__timer_t = int
|
42
|
-
rbx.platform.typedef.__wchar_t = int
|
43
|
-
rbx.platform.typedef.__wint_t = int
|
44
|
-
rbx.platform.typedef.__rune_t = int
|
45
|
-
rbx.platform.typedef.__wctrans_t = pointer
|
46
|
-
rbx.platform.typedef.__wctype_t = pointer
|
47
3
|
rbx.platform.typedef.__cpuid_t = ulong
|
48
4
|
rbx.platform.typedef.__dev_t = int
|
5
|
+
rbx.platform.typedef.__fd_mask = int
|
49
6
|
rbx.platform.typedef.__fixpt_t = uint
|
50
7
|
rbx.platform.typedef.__gid_t = uint
|
51
8
|
rbx.platform.typedef.__id_t = uint
|
52
9
|
rbx.platform.typedef.__in_addr_t = uint
|
53
10
|
rbx.platform.typedef.__in_port_t = ushort
|
54
11
|
rbx.platform.typedef.__ino_t = uint
|
12
|
+
rbx.platform.typedef.__int16_t = short
|
13
|
+
rbx.platform.typedef.__int32_t = int
|
14
|
+
rbx.platform.typedef.__int64_t = long_long
|
15
|
+
rbx.platform.typedef.__int8_t = char
|
16
|
+
rbx.platform.typedef.__int_fast16_t = int
|
17
|
+
rbx.platform.typedef.__int_fast32_t = int
|
18
|
+
rbx.platform.typedef.__int_fast64_t = long_long
|
19
|
+
rbx.platform.typedef.__int_fast8_t = int
|
20
|
+
rbx.platform.typedef.__int_least16_t = short
|
21
|
+
rbx.platform.typedef.__int_least32_t = int
|
22
|
+
rbx.platform.typedef.__int_least64_t = long_long
|
23
|
+
rbx.platform.typedef.__int_least8_t = char
|
24
|
+
rbx.platform.typedef.__intmax_t = long_long
|
25
|
+
rbx.platform.typedef.__intptr_t = long
|
55
26
|
rbx.platform.typedef.__key_t = long
|
56
27
|
rbx.platform.typedef.__mode_t = uint
|
57
28
|
rbx.platform.typedef.__nlink_t = uint
|
29
|
+
rbx.platform.typedef.__off_t = long_long
|
30
|
+
rbx.platform.typedef.__paddr_t = ulong
|
58
31
|
rbx.platform.typedef.__pid_t = int
|
32
|
+
rbx.platform.typedef.__psize_t = ulong
|
33
|
+
rbx.platform.typedef.__ptrdiff_t = long
|
34
|
+
rbx.platform.typedef.__register_t = int
|
59
35
|
rbx.platform.typedef.__rlim_t = ulong_long
|
36
|
+
rbx.platform.typedef.__rune_t = int
|
60
37
|
rbx.platform.typedef.__sa_family_t = uchar
|
61
38
|
rbx.platform.typedef.__segsz_t = int
|
39
|
+
rbx.platform.typedef.__size_t = ulong
|
62
40
|
rbx.platform.typedef.__socklen_t = uint
|
41
|
+
rbx.platform.typedef.__ssize_t = long
|
42
|
+
rbx.platform.typedef.__suseconds_t = int
|
63
43
|
rbx.platform.typedef.__swblk_t = int
|
44
|
+
rbx.platform.typedef.__time_t = int
|
45
|
+
rbx.platform.typedef.__timer_t = int
|
64
46
|
rbx.platform.typedef.__uid_t = uint
|
47
|
+
rbx.platform.typedef.__uint16_t = ushort
|
48
|
+
rbx.platform.typedef.__uint32_t = uint
|
49
|
+
rbx.platform.typedef.__uint64_t = ulong_long
|
50
|
+
rbx.platform.typedef.__uint8_t = uchar
|
51
|
+
rbx.platform.typedef.__uint_fast16_t = uint
|
52
|
+
rbx.platform.typedef.__uint_fast32_t = uint
|
53
|
+
rbx.platform.typedef.__uint_fast64_t = ulong_long
|
54
|
+
rbx.platform.typedef.__uint_fast8_t = uint
|
55
|
+
rbx.platform.typedef.__uint_least16_t = ushort
|
56
|
+
rbx.platform.typedef.__uint_least32_t = uint
|
57
|
+
rbx.platform.typedef.__uint_least64_t = ulong_long
|
58
|
+
rbx.platform.typedef.__uint_least8_t = uchar
|
59
|
+
rbx.platform.typedef.__uintmax_t = ulong_long
|
60
|
+
rbx.platform.typedef.__uintptr_t = ulong
|
65
61
|
rbx.platform.typedef.__useconds_t = uint
|
66
|
-
rbx.platform.typedef.
|
67
|
-
rbx.platform.typedef.
|
68
|
-
rbx.platform.typedef.
|
69
|
-
rbx.platform.typedef.
|
70
|
-
rbx.platform.typedef.
|
71
|
-
rbx.platform.typedef.
|
72
|
-
rbx.platform.typedef.ushort = ushort
|
73
|
-
rbx.platform.typedef.uint = uint
|
74
|
-
rbx.platform.typedef.ulong = ulong
|
75
|
-
rbx.platform.typedef.cpuid_t = ulong
|
76
|
-
rbx.platform.typedef.register_t = int
|
77
|
-
rbx.platform.typedef.int8_t = char
|
78
|
-
rbx.platform.typedef.uint8_t = uchar
|
79
|
-
rbx.platform.typedef.int16_t = short
|
80
|
-
rbx.platform.typedef.uint16_t = ushort
|
81
|
-
rbx.platform.typedef.int32_t = int
|
82
|
-
rbx.platform.typedef.uint32_t = uint
|
83
|
-
rbx.platform.typedef.int64_t = long_long
|
84
|
-
rbx.platform.typedef.uint64_t = ulong_long
|
85
|
-
rbx.platform.typedef.intptr_t = long
|
86
|
-
rbx.platform.typedef.uintptr_t = ulong
|
87
|
-
rbx.platform.typedef.u_int8_t = uchar
|
88
|
-
rbx.platform.typedef.u_int16_t = ushort
|
89
|
-
rbx.platform.typedef.u_int32_t = uint
|
90
|
-
rbx.platform.typedef.u_int64_t = ulong_long
|
91
|
-
rbx.platform.typedef.quad_t = long_long
|
92
|
-
rbx.platform.typedef.u_quad_t = ulong_long
|
93
|
-
rbx.platform.typedef.qaddr_t = pointer
|
94
|
-
rbx.platform.typedef.vaddr_t = ulong
|
95
|
-
rbx.platform.typedef.paddr_t = ulong
|
96
|
-
rbx.platform.typedef.vsize_t = ulong
|
97
|
-
rbx.platform.typedef.psize_t = ulong
|
62
|
+
rbx.platform.typedef.__vaddr_t = ulong
|
63
|
+
rbx.platform.typedef.__vsize_t = ulong
|
64
|
+
rbx.platform.typedef.__wchar_t = int
|
65
|
+
rbx.platform.typedef.__wctrans_t = pointer
|
66
|
+
rbx.platform.typedef.__wctype_t = pointer
|
67
|
+
rbx.platform.typedef.__wint_t = int
|
98
68
|
rbx.platform.typedef.caddr_t = string
|
99
|
-
rbx.platform.typedef.
|
69
|
+
rbx.platform.typedef.clock_t = int
|
70
|
+
rbx.platform.typedef.clockid_t = int
|
71
|
+
rbx.platform.typedef.cpuid_t = ulong
|
100
72
|
rbx.platform.typedef.daddr32_t = int
|
101
73
|
rbx.platform.typedef.daddr64_t = long_long
|
74
|
+
rbx.platform.typedef.daddr_t = int
|
102
75
|
rbx.platform.typedef.dev_t = int
|
103
76
|
rbx.platform.typedef.fixpt_t = uint
|
104
77
|
rbx.platform.typedef.gid_t = uint
|
105
78
|
rbx.platform.typedef.id_t = uint
|
79
|
+
rbx.platform.typedef.in_addr_t = uint
|
80
|
+
rbx.platform.typedef.in_port_t = ushort
|
106
81
|
rbx.platform.typedef.ino_t = uint
|
82
|
+
rbx.platform.typedef.int16_t = short
|
83
|
+
rbx.platform.typedef.int32_t = int
|
84
|
+
rbx.platform.typedef.int64_t = long_long
|
85
|
+
rbx.platform.typedef.int8_t = char
|
86
|
+
rbx.platform.typedef.intptr_t = long
|
107
87
|
rbx.platform.typedef.key_t = long
|
108
88
|
rbx.platform.typedef.mode_t = uint
|
109
89
|
rbx.platform.typedef.nlink_t = uint
|
90
|
+
rbx.platform.typedef.off_t = long_long
|
91
|
+
rbx.platform.typedef.paddr_t = ulong
|
110
92
|
rbx.platform.typedef.pid_t = int
|
93
|
+
rbx.platform.typedef.psize_t = ulong
|
94
|
+
rbx.platform.typedef.qaddr_t = pointer
|
95
|
+
rbx.platform.typedef.quad_t = long_long
|
96
|
+
rbx.platform.typedef.register_t = int
|
111
97
|
rbx.platform.typedef.rlim_t = ulong_long
|
112
|
-
rbx.platform.typedef.segsz_t = int
|
113
|
-
rbx.platform.typedef.swblk_t = int
|
114
|
-
rbx.platform.typedef.uid_t = uint
|
115
|
-
rbx.platform.typedef.useconds_t = uint
|
116
|
-
rbx.platform.typedef.suseconds_t = int
|
117
|
-
rbx.platform.typedef.in_addr_t = uint
|
118
|
-
rbx.platform.typedef.in_port_t = ushort
|
119
98
|
rbx.platform.typedef.sa_family_t = uchar
|
120
|
-
rbx.platform.typedef.
|
121
|
-
rbx.platform.typedef.clock_t = int
|
122
|
-
rbx.platform.typedef.clockid_t = int
|
99
|
+
rbx.platform.typedef.segsz_t = int
|
123
100
|
rbx.platform.typedef.size_t = ulong
|
101
|
+
rbx.platform.typedef.socklen_t = uint
|
124
102
|
rbx.platform.typedef.ssize_t = long
|
103
|
+
rbx.platform.typedef.suseconds_t = int
|
104
|
+
rbx.platform.typedef.swblk_t = int
|
125
105
|
rbx.platform.typedef.time_t = int
|
126
106
|
rbx.platform.typedef.timer_t = int
|
127
|
-
rbx.platform.typedef.
|
128
|
-
rbx.platform.typedef.
|
107
|
+
rbx.platform.typedef.u_char = uchar
|
108
|
+
rbx.platform.typedef.u_int = uint
|
109
|
+
rbx.platform.typedef.u_int16_t = ushort
|
110
|
+
rbx.platform.typedef.u_int32_t = uint
|
111
|
+
rbx.platform.typedef.u_int64_t = ulong_long
|
112
|
+
rbx.platform.typedef.u_int8_t = uchar
|
113
|
+
rbx.platform.typedef.u_long = ulong
|
114
|
+
rbx.platform.typedef.u_quad_t = ulong_long
|
115
|
+
rbx.platform.typedef.u_short = ushort
|
116
|
+
rbx.platform.typedef.uid_t = uint
|
117
|
+
rbx.platform.typedef.uint = uint
|
118
|
+
rbx.platform.typedef.uint16_t = ushort
|
119
|
+
rbx.platform.typedef.uint32_t = uint
|
120
|
+
rbx.platform.typedef.uint64_t = ulong_long
|
121
|
+
rbx.platform.typedef.uint8_t = uchar
|
122
|
+
rbx.platform.typedef.uintptr_t = ulong
|
123
|
+
rbx.platform.typedef.ulong = ulong
|
124
|
+
rbx.platform.typedef.unchar = uchar
|
125
|
+
rbx.platform.typedef.useconds_t = uint
|
126
|
+
rbx.platform.typedef.ushort = ushort
|
127
|
+
rbx.platform.typedef.vaddr_t = ulong
|
128
|
+
rbx.platform.typedef.vsize_t = ulong
|
@@ -1,50 +1,10 @@
|
|
1
|
-
rbx.platform.typedef.__int8_t = char
|
2
|
-
rbx.platform.typedef.__uint8_t = uchar
|
3
|
-
rbx.platform.typedef.__int16_t = short
|
4
|
-
rbx.platform.typedef.__uint16_t = ushort
|
5
|
-
rbx.platform.typedef.__int32_t = int
|
6
|
-
rbx.platform.typedef.__uint32_t = uint
|
7
|
-
rbx.platform.typedef.__int64_t = long_long
|
8
|
-
rbx.platform.typedef.__uint64_t = ulong_long
|
9
|
-
rbx.platform.typedef.__int_least8_t = char
|
10
|
-
rbx.platform.typedef.__uint_least8_t = uchar
|
11
|
-
rbx.platform.typedef.__int_least16_t = short
|
12
|
-
rbx.platform.typedef.__uint_least16_t = ushort
|
13
|
-
rbx.platform.typedef.__int_least32_t = int
|
14
|
-
rbx.platform.typedef.__uint_least32_t = uint
|
15
|
-
rbx.platform.typedef.__int_least64_t = long_long
|
16
|
-
rbx.platform.typedef.__uint_least64_t = ulong_long
|
17
|
-
rbx.platform.typedef.__int_fast8_t = int
|
18
|
-
rbx.platform.typedef.__uint_fast8_t = uint
|
19
|
-
rbx.platform.typedef.__int_fast16_t = int
|
20
|
-
rbx.platform.typedef.__uint_fast16_t = uint
|
21
|
-
rbx.platform.typedef.__int_fast32_t = int
|
22
|
-
rbx.platform.typedef.__uint_fast32_t = uint
|
23
|
-
rbx.platform.typedef.__int_fast64_t = long_long
|
24
|
-
rbx.platform.typedef.__uint_fast64_t = ulong_long
|
25
|
-
rbx.platform.typedef.__intptr_t = long
|
26
|
-
rbx.platform.typedef.__uintptr_t = ulong
|
27
|
-
rbx.platform.typedef.__intmax_t = long_long
|
28
|
-
rbx.platform.typedef.__uintmax_t = ulong_long
|
29
|
-
rbx.platform.typedef.__register_t = long
|
30
|
-
rbx.platform.typedef.__vaddr_t = ulong
|
31
|
-
rbx.platform.typedef.__paddr_t = ulong
|
32
|
-
rbx.platform.typedef.__vsize_t = ulong
|
33
|
-
rbx.platform.typedef.__psize_t = ulong
|
34
|
-
rbx.platform.typedef.__ptrdiff_t = long
|
35
|
-
rbx.platform.typedef.__size_t = ulong
|
36
|
-
rbx.platform.typedef.__ssize_t = long
|
37
|
-
rbx.platform.typedef.__wchar_t = int
|
38
|
-
rbx.platform.typedef.__wint_t = int
|
39
|
-
rbx.platform.typedef.__rune_t = int
|
40
|
-
rbx.platform.typedef.__wctrans_t = pointer
|
41
|
-
rbx.platform.typedef.__wctype_t = pointer
|
42
1
|
rbx.platform.typedef.__blkcnt_t = long_long
|
43
2
|
rbx.platform.typedef.__blksize_t = int
|
44
3
|
rbx.platform.typedef.__clock_t = long_long
|
45
4
|
rbx.platform.typedef.__clockid_t = int
|
46
5
|
rbx.platform.typedef.__cpuid_t = ulong
|
47
6
|
rbx.platform.typedef.__dev_t = int
|
7
|
+
rbx.platform.typedef.__fd_mask = uint
|
48
8
|
rbx.platform.typedef.__fixpt_t = uint
|
49
9
|
rbx.platform.typedef.__fsblkcnt_t = ulong_long
|
50
10
|
rbx.platform.typedef.__fsfilcnt_t = ulong_long
|
@@ -53,82 +13,122 @@ rbx.platform.typedef.__id_t = uint
|
|
53
13
|
rbx.platform.typedef.__in_addr_t = uint
|
54
14
|
rbx.platform.typedef.__in_port_t = ushort
|
55
15
|
rbx.platform.typedef.__ino_t = ulong_long
|
16
|
+
rbx.platform.typedef.__int16_t = short
|
17
|
+
rbx.platform.typedef.__int32_t = int
|
18
|
+
rbx.platform.typedef.__int64_t = long_long
|
19
|
+
rbx.platform.typedef.__int8_t = char
|
20
|
+
rbx.platform.typedef.__int_fast16_t = int
|
21
|
+
rbx.platform.typedef.__int_fast32_t = int
|
22
|
+
rbx.platform.typedef.__int_fast64_t = long_long
|
23
|
+
rbx.platform.typedef.__int_fast8_t = int
|
24
|
+
rbx.platform.typedef.__int_least16_t = short
|
25
|
+
rbx.platform.typedef.__int_least32_t = int
|
26
|
+
rbx.platform.typedef.__int_least64_t = long_long
|
27
|
+
rbx.platform.typedef.__int_least8_t = char
|
28
|
+
rbx.platform.typedef.__intmax_t = long_long
|
29
|
+
rbx.platform.typedef.__intptr_t = long
|
56
30
|
rbx.platform.typedef.__key_t = long
|
57
31
|
rbx.platform.typedef.__mode_t = uint
|
58
32
|
rbx.platform.typedef.__nlink_t = uint
|
59
33
|
rbx.platform.typedef.__off_t = long_long
|
34
|
+
rbx.platform.typedef.__paddr_t = ulong
|
60
35
|
rbx.platform.typedef.__pid_t = int
|
36
|
+
rbx.platform.typedef.__psize_t = ulong
|
37
|
+
rbx.platform.typedef.__ptrdiff_t = long
|
38
|
+
rbx.platform.typedef.__register_t = long
|
61
39
|
rbx.platform.typedef.__rlim_t = ulong_long
|
40
|
+
rbx.platform.typedef.__rune_t = int
|
62
41
|
rbx.platform.typedef.__sa_family_t = uchar
|
63
42
|
rbx.platform.typedef.__segsz_t = int
|
43
|
+
rbx.platform.typedef.__size_t = ulong
|
64
44
|
rbx.platform.typedef.__socklen_t = uint
|
45
|
+
rbx.platform.typedef.__ssize_t = long
|
65
46
|
rbx.platform.typedef.__suseconds_t = long
|
66
47
|
rbx.platform.typedef.__swblk_t = int
|
67
48
|
rbx.platform.typedef.__time_t = long_long
|
68
49
|
rbx.platform.typedef.__timer_t = int
|
69
50
|
rbx.platform.typedef.__uid_t = uint
|
51
|
+
rbx.platform.typedef.__uint16_t = ushort
|
52
|
+
rbx.platform.typedef.__uint32_t = uint
|
53
|
+
rbx.platform.typedef.__uint64_t = ulong_long
|
54
|
+
rbx.platform.typedef.__uint8_t = uchar
|
55
|
+
rbx.platform.typedef.__uint_fast16_t = uint
|
56
|
+
rbx.platform.typedef.__uint_fast32_t = uint
|
57
|
+
rbx.platform.typedef.__uint_fast64_t = ulong_long
|
58
|
+
rbx.platform.typedef.__uint_fast8_t = uint
|
59
|
+
rbx.platform.typedef.__uint_least16_t = ushort
|
60
|
+
rbx.platform.typedef.__uint_least32_t = uint
|
61
|
+
rbx.platform.typedef.__uint_least64_t = ulong_long
|
62
|
+
rbx.platform.typedef.__uint_least8_t = uchar
|
63
|
+
rbx.platform.typedef.__uintmax_t = ulong_long
|
64
|
+
rbx.platform.typedef.__uintptr_t = ulong
|
70
65
|
rbx.platform.typedef.__useconds_t = uint
|
71
|
-
rbx.platform.typedef.
|
72
|
-
rbx.platform.typedef.
|
73
|
-
rbx.platform.typedef.
|
74
|
-
rbx.platform.typedef.
|
75
|
-
rbx.platform.typedef.
|
76
|
-
rbx.platform.typedef.
|
77
|
-
rbx.platform.typedef.uint = uint
|
78
|
-
rbx.platform.typedef.ulong = ulong
|
79
|
-
rbx.platform.typedef.cpuid_t = ulong
|
80
|
-
rbx.platform.typedef.register_t = long
|
81
|
-
rbx.platform.typedef.int8_t = char
|
82
|
-
rbx.platform.typedef.uint8_t = uchar
|
83
|
-
rbx.platform.typedef.int16_t = short
|
84
|
-
rbx.platform.typedef.uint16_t = ushort
|
85
|
-
rbx.platform.typedef.int32_t = int
|
86
|
-
rbx.platform.typedef.uint32_t = uint
|
87
|
-
rbx.platform.typedef.int64_t = long_long
|
88
|
-
rbx.platform.typedef.uint64_t = ulong_long
|
89
|
-
rbx.platform.typedef.u_int8_t = uchar
|
90
|
-
rbx.platform.typedef.u_int16_t = ushort
|
91
|
-
rbx.platform.typedef.u_int32_t = uint
|
92
|
-
rbx.platform.typedef.u_int64_t = ulong_long
|
93
|
-
rbx.platform.typedef.quad_t = long_long
|
94
|
-
rbx.platform.typedef.u_quad_t = ulong_long
|
95
|
-
rbx.platform.typedef.qaddr_t = pointer
|
96
|
-
rbx.platform.typedef.vaddr_t = ulong
|
97
|
-
rbx.platform.typedef.paddr_t = ulong
|
98
|
-
rbx.platform.typedef.vsize_t = ulong
|
99
|
-
rbx.platform.typedef.psize_t = ulong
|
66
|
+
rbx.platform.typedef.__vaddr_t = ulong
|
67
|
+
rbx.platform.typedef.__vsize_t = ulong
|
68
|
+
rbx.platform.typedef.__wchar_t = int
|
69
|
+
rbx.platform.typedef.__wctrans_t = pointer
|
70
|
+
rbx.platform.typedef.__wctype_t = pointer
|
71
|
+
rbx.platform.typedef.__wint_t = int
|
100
72
|
rbx.platform.typedef.blkcnt_t = long_long
|
101
73
|
rbx.platform.typedef.blksize_t = int
|
102
74
|
rbx.platform.typedef.caddr_t = string
|
75
|
+
rbx.platform.typedef.clock_t = long_long
|
76
|
+
rbx.platform.typedef.clockid_t = int
|
77
|
+
rbx.platform.typedef.cpuid_t = ulong
|
103
78
|
rbx.platform.typedef.daddr32_t = int
|
104
79
|
rbx.platform.typedef.daddr_t = long_long
|
105
80
|
rbx.platform.typedef.dev_t = int
|
106
81
|
rbx.platform.typedef.fixpt_t = uint
|
82
|
+
rbx.platform.typedef.fsblkcnt_t = ulong_long
|
83
|
+
rbx.platform.typedef.fsfilcnt_t = ulong_long
|
107
84
|
rbx.platform.typedef.gid_t = uint
|
108
85
|
rbx.platform.typedef.id_t = uint
|
86
|
+
rbx.platform.typedef.in_addr_t = uint
|
87
|
+
rbx.platform.typedef.in_port_t = ushort
|
109
88
|
rbx.platform.typedef.ino_t = ulong_long
|
89
|
+
rbx.platform.typedef.int16_t = short
|
90
|
+
rbx.platform.typedef.int32_t = int
|
91
|
+
rbx.platform.typedef.int64_t = long_long
|
92
|
+
rbx.platform.typedef.int8_t = char
|
110
93
|
rbx.platform.typedef.key_t = long
|
111
94
|
rbx.platform.typedef.mode_t = uint
|
112
95
|
rbx.platform.typedef.nlink_t = uint
|
96
|
+
rbx.platform.typedef.off_t = long_long
|
97
|
+
rbx.platform.typedef.paddr_t = ulong
|
98
|
+
rbx.platform.typedef.pid_t = int
|
99
|
+
rbx.platform.typedef.psize_t = ulong
|
100
|
+
rbx.platform.typedef.qaddr_t = pointer
|
101
|
+
rbx.platform.typedef.quad_t = long_long
|
102
|
+
rbx.platform.typedef.register_t = long
|
113
103
|
rbx.platform.typedef.rlim_t = ulong_long
|
104
|
+
rbx.platform.typedef.sa_family_t = uchar
|
114
105
|
rbx.platform.typedef.segsz_t = int
|
115
|
-
rbx.platform.typedef.
|
116
|
-
rbx.platform.typedef.uid_t = uint
|
117
|
-
rbx.platform.typedef.useconds_t = uint
|
118
|
-
rbx.platform.typedef.suseconds_t = long
|
119
|
-
rbx.platform.typedef.fsblkcnt_t = ulong_long
|
120
|
-
rbx.platform.typedef.fsfilcnt_t = ulong_long
|
121
|
-
rbx.platform.typedef.in_addr_t = uint
|
122
|
-
rbx.platform.typedef.in_port_t = ushort
|
123
|
-
rbx.platform.typedef.clock_t = long_long
|
124
|
-
rbx.platform.typedef.clockid_t = int
|
125
|
-
rbx.platform.typedef.pid_t = int
|
106
|
+
rbx.platform.typedef.sigset_t = uint
|
126
107
|
rbx.platform.typedef.size_t = ulong
|
108
|
+
rbx.platform.typedef.socklen_t = uint
|
127
109
|
rbx.platform.typedef.ssize_t = long
|
110
|
+
rbx.platform.typedef.suseconds_t = long
|
111
|
+
rbx.platform.typedef.swblk_t = int
|
128
112
|
rbx.platform.typedef.time_t = long_long
|
129
113
|
rbx.platform.typedef.timer_t = int
|
130
|
-
rbx.platform.typedef.
|
131
|
-
rbx.platform.typedef.
|
132
|
-
rbx.platform.typedef.
|
133
|
-
rbx.platform.typedef.
|
134
|
-
rbx.platform.typedef.
|
114
|
+
rbx.platform.typedef.u_char = uchar
|
115
|
+
rbx.platform.typedef.u_int = uint
|
116
|
+
rbx.platform.typedef.u_int16_t = ushort
|
117
|
+
rbx.platform.typedef.u_int32_t = uint
|
118
|
+
rbx.platform.typedef.u_int64_t = ulong_long
|
119
|
+
rbx.platform.typedef.u_int8_t = uchar
|
120
|
+
rbx.platform.typedef.u_long = ulong
|
121
|
+
rbx.platform.typedef.u_quad_t = ulong_long
|
122
|
+
rbx.platform.typedef.u_short = ushort
|
123
|
+
rbx.platform.typedef.uid_t = uint
|
124
|
+
rbx.platform.typedef.uint = uint
|
125
|
+
rbx.platform.typedef.uint16_t = ushort
|
126
|
+
rbx.platform.typedef.uint32_t = uint
|
127
|
+
rbx.platform.typedef.uint64_t = ulong_long
|
128
|
+
rbx.platform.typedef.uint8_t = uchar
|
129
|
+
rbx.platform.typedef.ulong = ulong
|
130
|
+
rbx.platform.typedef.unchar = uchar
|
131
|
+
rbx.platform.typedef.useconds_t = uint
|
132
|
+
rbx.platform.typedef.ushort = ushort
|
133
|
+
rbx.platform.typedef.vaddr_t = ulong
|
134
|
+
rbx.platform.typedef.vsize_t = ulong
|