ffi 1.9.18 → 1.9.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.gitignore +22 -0
- data/.gitmodules +3 -0
- data/.travis.yml +52 -0
- data/.yardopts +5 -0
- data/Gemfile +15 -0
- data/{spec/ffi/LICENSE.SPECS → LICENSE.SPECS} +1 -1
- data/README.md +3 -4
- data/Rakefile +41 -5
- data/appveyor.yml +22 -0
- data/ext/ffi_c/AbstractMemory.c +6 -1
- data/ext/ffi_c/Call.c +1 -22
- data/ext/ffi_c/Call.h +0 -9
- data/ext/ffi_c/Closure.c +54 -0
- data/ext/ffi_c/{ClosurePool.h → Closure.h} +13 -23
- data/ext/ffi_c/Function.c +16 -25
- data/ext/ffi_c/Function.h +1 -2
- data/ext/ffi_c/FunctionInfo.c +0 -4
- data/ext/ffi_c/MethodHandle.c +33 -268
- data/ext/ffi_c/Platform.c +10 -2
- data/ext/ffi_c/extconf.rb +10 -5
- data/ext/ffi_c/ffi.c +2 -2
- data/ext/ffi_c/libffi/.appveyor.yml +48 -0
- data/ext/ffi_c/libffi/.gitignore +36 -0
- data/ext/ffi_c/libffi/.travis/install.sh +14 -0
- data/ext/ffi_c/libffi/.travis.yml +30 -0
- data/ext/ffi_c/libffi/ChangeLog.libffi +2 -2
- data/ext/ffi_c/libffi/{ChangeLog → ChangeLog.libffi-3.1} +1402 -2
- data/ext/ffi_c/libffi/ChangeLog.v1 +1 -1
- data/ext/ffi_c/libffi/LICENSE +1 -1
- data/ext/ffi_c/libffi/Makefile.am +169 -158
- data/ext/ffi_c/libffi/Makefile.in +927 -938
- data/ext/ffi_c/libffi/README +164 -52
- data/ext/ffi_c/libffi/acinclude.m4 +387 -0
- data/ext/ffi_c/libffi/autogen.sh +2 -0
- data/ext/ffi_c/libffi/config.guess +336 -371
- data/ext/ffi_c/libffi/config.sub +246 -115
- data/ext/ffi_c/libffi/configure +6976 -2189
- data/ext/ffi_c/libffi/configure.ac +148 -256
- data/ext/ffi_c/libffi/configure.host +277 -4
- data/ext/ffi_c/libffi/doc/Makefile.am +3 -0
- data/ext/ffi_c/libffi/doc/Makefile.in +811 -0
- data/ext/ffi_c/libffi/doc/libffi.texi +430 -45
- data/ext/ffi_c/libffi/doc/version.texi +4 -4
- data/ext/ffi_c/libffi/fficonfig.h.in +24 -13
- data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +203 -0
- data/ext/ffi_c/libffi/include/Makefile.am +3 -3
- data/ext/ffi_c/libffi/include/Makefile.in +188 -71
- data/ext/ffi_c/libffi/include/ffi.h.in +112 -50
- data/ext/ffi_c/libffi/include/ffi_cfi.h +55 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +32 -11
- data/ext/ffi_c/libffi/install-sh +190 -202
- data/ext/ffi_c/libffi/libffi.map.in +80 -0
- data/ext/ffi_c/libffi/libffi.pc.in +3 -2
- data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +1043 -0
- data/ext/ffi_c/libffi/libtool-ldflags +106 -0
- data/ext/ffi_c/libffi/libtool-version +1 -1
- data/ext/ffi_c/libffi/ltmain.sh +3553 -2033
- data/ext/ffi_c/libffi/m4/asmcfi.m4 +13 -0
- data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +69 -0
- data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +13 -8
- data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +31 -104
- data/ext/ffi_c/libffi/m4/{ax_check_compiler_flags.m4 → ax_check_compile_flag.m4} +30 -34
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +32 -11
- data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +6 -5
- data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +31 -21
- data/ext/ffi_c/libffi/man/Makefile.am +2 -2
- data/ext/ffi_c/libffi/man/Makefile.in +141 -49
- data/ext/ffi_c/libffi/man/ffi.3 +10 -0
- data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +6 -4
- data/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +73 -0
- data/ext/ffi_c/libffi/missing +150 -311
- data/ext/ffi_c/libffi/msvcc.sh +72 -9
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +964 -0
- data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +81 -0
- data/ext/ffi_c/libffi/src/aarch64/internal.h +67 -0
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +438 -0
- data/ext/ffi_c/libffi/src/alpha/ffi.c +335 -98
- data/ext/ffi_c/libffi/src/alpha/ffitarget.h +10 -1
- data/ext/ffi_c/libffi/src/alpha/internal.h +23 -0
- data/ext/ffi_c/libffi/src/alpha/osf.S +161 -266
- data/ext/ffi_c/libffi/src/arc/arcompact.S +135 -0
- data/ext/ffi_c/libffi/src/arc/ffi.c +266 -0
- data/ext/ffi_c/libffi/src/arc/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +608 -517
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +24 -7
- data/ext/ffi_c/libffi/src/arm/internal.h +7 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +303 -417
- data/ext/ffi_c/libffi/src/avr32/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/bfin/ffi.c +196 -0
- data/ext/ffi_c/libffi/src/bfin/ffitarget.h +43 -0
- data/ext/ffi_c/libffi/src/bfin/sysv.S +179 -0
- data/ext/ffi_c/libffi/src/closures.c +366 -45
- data/ext/ffi_c/libffi/src/cris/ffi.c +10 -7
- data/ext/ffi_c/libffi/src/cris/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/debug.c +6 -1
- data/ext/ffi_c/libffi/src/dlmalloc.c +16 -11
- data/ext/ffi_c/libffi/src/frv/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/frv/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/ia64/ffi.c +11 -7
- data/ext/ffi_c/libffi/src/ia64/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/ia64/unix.S +2 -0
- data/ext/ffi_c/libffi/src/java_raw_api.c +23 -5
- data/ext/ffi_c/libffi/src/m32r/ffi.c +1 -1
- data/ext/ffi_c/libffi/src/m32r/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/m68k/ffi.c +87 -13
- data/ext/ffi_c/libffi/src/m68k/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/m68k/sysv.S +119 -32
- data/ext/ffi_c/libffi/src/m88k/ffi.c +400 -0
- data/ext/ffi_c/libffi/src/m88k/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/m88k/obsd.S +209 -0
- data/ext/ffi_c/libffi/src/metag/ffi.c +330 -0
- data/ext/ffi_c/libffi/{fficonfig.hw → src/metag/ffitarget.h} +22 -26
- data/ext/ffi_c/libffi/src/metag/sysv.S +311 -0
- data/ext/ffi_c/libffi/src/microblaze/ffi.c +321 -0
- data/ext/ffi_c/libffi/src/microblaze/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/microblaze/sysv.S +302 -0
- data/ext/ffi_c/libffi/src/mips/ffi.c +103 -28
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +10 -3
- data/ext/ffi_c/libffi/src/mips/n32.S +128 -56
- data/ext/ffi_c/libffi/src/mips/o32.S +148 -27
- data/ext/ffi_c/libffi/src/moxie/eabi.S +55 -82
- data/ext/ffi_c/libffi/src/moxie/ffi.c +40 -44
- data/ext/ffi_c/libffi/src/moxie/ffitarget.h +52 -0
- data/ext/ffi_c/libffi/src/nios2/ffi.c +304 -0
- data/ext/ffi_c/libffi/src/nios2/ffitarget.h +52 -0
- data/ext/ffi_c/libffi/src/nios2/sysv.S +136 -0
- data/ext/ffi_c/libffi/src/or1k/ffi.c +328 -0
- data/ext/ffi_c/libffi/src/or1k/ffitarget.h +58 -0
- data/ext/ffi_c/libffi/src/or1k/sysv.S +107 -0
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +8 -1
- data/ext/ffi_c/libffi/src/powerpc/aix.S +245 -7
- data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +253 -4
- data/ext/ffi_c/libffi/src/powerpc/asm.h +2 -2
- data/ext/ffi_c/libffi/src/powerpc/darwin.S +2 -7
- data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +22 -26
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +103 -1378
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +111 -30
- data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +945 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +94 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +923 -0
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +103 -44
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +100 -59
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +360 -108
- data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +138 -68
- data/ext/ffi_c/libffi/src/powerpc/sysv.S +68 -112
- data/ext/ffi_c/libffi/src/prep_cif.c +108 -24
- data/ext/ffi_c/libffi/src/raw_api.c +18 -5
- data/ext/ffi_c/libffi/src/s390/ffi.c +294 -318
- data/ext/ffi_c/libffi/src/s390/ffitarget.h +9 -1
- data/ext/ffi_c/libffi/src/s390/internal.h +11 -0
- data/ext/ffi_c/libffi/src/s390/sysv.S +257 -366
- data/ext/ffi_c/libffi/src/sh/ffi.c +4 -3
- data/ext/ffi_c/libffi/src/sh/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/sh64/ffi.c +3 -2
- data/ext/ffi_c/libffi/src/sh64/ffitarget.h +6 -1
- data/ext/ffi_c/libffi/src/sparc/ffi.c +326 -527
- data/ext/ffi_c/libffi/src/sparc/ffi64.c +608 -0
- data/ext/ffi_c/libffi/src/sparc/ffitarget.h +20 -7
- data/ext/ffi_c/libffi/src/sparc/internal.h +26 -0
- data/ext/ffi_c/libffi/src/sparc/v8.S +364 -234
- data/ext/ffi_c/libffi/src/sparc/v9.S +340 -207
- data/ext/ffi_c/libffi/src/tile/ffi.c +355 -0
- data/ext/ffi_c/libffi/src/tile/ffitarget.h +65 -0
- data/ext/ffi_c/libffi/src/tile/tile.S +360 -0
- data/ext/ffi_c/libffi/src/types.c +43 -14
- data/ext/ffi_c/libffi/src/vax/elfbsd.S +195 -0
- data/ext/ffi_c/libffi/src/vax/ffi.c +276 -0
- data/ext/ffi_c/libffi/src/vax/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/x86/asmnames.h +30 -0
- data/ext/ffi_c/libffi/src/x86/ffi.c +591 -500
- data/ext/ffi_c/libffi/src/x86/ffi64.c +359 -116
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +55 -35
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +287 -0
- data/ext/ffi_c/libffi/src/x86/internal.h +29 -0
- data/ext/ffi_c/libffi/src/x86/internal64.h +22 -0
- data/ext/ffi_c/libffi/src/x86/sysv.S +975 -400
- data/ext/ffi_c/libffi/src/x86/unix64.S +398 -299
- data/ext/ffi_c/libffi/src/x86/win64.S +222 -458
- data/ext/ffi_c/libffi/src/x86/win64_intel.S +237 -0
- data/ext/ffi_c/libffi/src/xtensa/ffi.c +298 -0
- data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/xtensa/sysv.S +253 -0
- data/ext/ffi_c/libffi/stamp-h.in +1 -0
- data/ext/ffi_c/libffi/testsuite/Makefile.am +79 -73
- data/ext/ffi_c/libffi/testsuite/Makefile.in +219 -111
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +121 -25
- data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +21 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +4 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/{closure_stdcall.c → closure_simple.c} +7 -16
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3float.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +4 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +4 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +4 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +10 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +3 -3
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +10 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_args.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_float_double.c +55 -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 +11 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_struct_va1.c +114 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint_va.c +45 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulong_va.c +45 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort_va.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +23 -40
- data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +3 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +6 -4
- data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +4 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +107 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +18 -19
- data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +6 -16
- data/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +57 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +0 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +6 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +8 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +6 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct11.c +121 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +6 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +6 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +6 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/offsets.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +127 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +7 -7
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +7 -7
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +5 -5
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +55 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +9 -7
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +7 -7
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +7 -6
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +9 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +9 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +61 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.special → libffi.call}/unwindtest.cc +3 -10
- data/ext/ffi_c/libffi/testsuite/{libffi.special → libffi.call}/unwindtest_ffi_call.cc +2 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +196 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +121 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +123 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +125 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +71 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +80 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +16 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/{libffi.special/special.exp → libffi.complex/complex.exp} +9 -8
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +51 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +37 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +41 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +34 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +28 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +19 -0
- data/ext/ffi_c/libffi.bsd.mk +11 -5
- data/ext/ffi_c/libffi.darwin.mk +14 -4
- data/ext/ffi_c/libffi.gnu.mk +3 -2
- data/ext/ffi_c/libffi.mk +10 -5
- data/ext/ffi_c/libffi.vc.mk +1 -1
- data/ext/ffi_c/libffi.vc64.mk +1 -1
- data/ffi.gemspec +16 -3
- data/lib/ffi/enum.rb +124 -0
- data/lib/ffi/library.rb +66 -14
- data/lib/ffi/platform/sparc64-linux/types.conf +102 -0
- data/lib/ffi/platform/x86_64-windows/types.conf +113 -20
- data/lib/ffi/platform.rb +7 -2
- data/lib/ffi/pointer.rb +1 -0
- data/lib/ffi/struct.rb +0 -2
- data/lib/ffi/version.rb +1 -2
- data/samples/getlogin.rb +8 -0
- data/samples/getpid.rb +8 -0
- data/samples/gettimeofday.rb +18 -0
- data/samples/hello.rb +7 -0
- data/samples/inotify.rb +60 -0
- data/samples/pty.rb +76 -0
- data/samples/qsort.rb +21 -0
- data/samples/sample_helper.rb +6 -0
- metadata +164 -115
- data/ext/ffi_c/ClosurePool.c +0 -283
- data/ext/ffi_c/libffi/Makefile.vc +0 -141
- data/ext/ffi_c/libffi/Makefile.vc64 +0 -141
- data/ext/ffi_c/libffi/aclocal.m4 +0 -1873
- data/ext/ffi_c/libffi/build-ios.sh +0 -67
- data/ext/ffi_c/libffi/compile +0 -143
- data/ext/ffi_c/libffi/depcomp +0 -630
- data/ext/ffi_c/libffi/doc/libffi.info +0 -593
- data/ext/ffi_c/libffi/doc/stamp-vti +0 -4
- data/ext/ffi_c/libffi/include/ffi.h.vc +0 -427
- data/ext/ffi_c/libffi/include/ffi.h.vc64 +0 -427
- data/ext/ffi_c/libffi/m4/libtool.m4 +0 -7831
- data/ext/ffi_c/libffi/m4/ltoptions.m4 +0 -369
- data/ext/ffi_c/libffi/m4/ltsugar.m4 +0 -123
- data/ext/ffi_c/libffi/m4/ltversion.m4 +0 -23
- data/ext/ffi_c/libffi/m4/lt~obsolete.m4 +0 -98
- data/ext/ffi_c/libffi/mdate-sh +0 -201
- data/ext/ffi_c/libffi/src/arm/gentramp.sh +0 -118
- data/ext/ffi_c/libffi/src/arm/trampoline.S +0 -4450
- data/ext/ffi_c/libffi/src/x86/darwin.S +0 -444
- data/ext/ffi_c/libffi/src/x86/darwin64.S +0 -416
- data/ext/ffi_c/libffi/src/x86/freebsd.S +0 -458
- data/ext/ffi_c/libffi/src/x86/win32.S +0 -1065
- data/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +0 -300
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +0 -63
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +0 -44
- data/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +0 -96
- data/ext/ffi_c/libffi/texinfo.tex +0 -7210
- data/gen/Rakefile +0 -30
- data/libtest/Benchmark.c +0 -52
- data/libtest/BoolTest.c +0 -34
- data/libtest/BufferTest.c +0 -31
- data/libtest/ClosureTest.c +0 -205
- data/libtest/EnumTest.c +0 -51
- data/libtest/FunctionTest.c +0 -70
- data/libtest/GNUmakefile +0 -149
- data/libtest/GlobalVariable.c +0 -62
- data/libtest/LastErrorTest.c +0 -21
- data/libtest/NumberTest.c +0 -132
- data/libtest/PointerTest.c +0 -63
- data/libtest/ReferenceTest.c +0 -23
- data/libtest/StringTest.c +0 -34
- data/libtest/StructTest.c +0 -243
- data/libtest/UnionTest.c +0 -43
- data/libtest/VariadicTest.c +0 -99
- data/spec/ffi/async_callback_spec.rb +0 -35
- data/spec/ffi/bool_spec.rb +0 -32
- data/spec/ffi/buffer_spec.rb +0 -279
- data/spec/ffi/callback_spec.rb +0 -773
- data/spec/ffi/custom_param_type.rb +0 -37
- data/spec/ffi/custom_type_spec.rb +0 -74
- data/spec/ffi/dup_spec.rb +0 -52
- data/spec/ffi/enum_spec.rb +0 -423
- data/spec/ffi/errno_spec.rb +0 -20
- data/spec/ffi/ffi_spec.rb +0 -28
- data/spec/ffi/fixtures/Benchmark.c +0 -52
- data/spec/ffi/fixtures/BoolTest.c +0 -34
- data/spec/ffi/fixtures/BufferTest.c +0 -31
- data/spec/ffi/fixtures/ClosureTest.c +0 -205
- data/spec/ffi/fixtures/EnumTest.c +0 -51
- data/spec/ffi/fixtures/FunctionTest.c +0 -142
- data/spec/ffi/fixtures/GNUmakefile +0 -149
- data/spec/ffi/fixtures/GlobalVariable.c +0 -62
- data/spec/ffi/fixtures/LastErrorTest.c +0 -21
- data/spec/ffi/fixtures/NumberTest.c +0 -132
- data/spec/ffi/fixtures/PipeHelper.h +0 -21
- data/spec/ffi/fixtures/PipeHelperPosix.c +0 -41
- data/spec/ffi/fixtures/PipeHelperWindows.c +0 -72
- data/spec/ffi/fixtures/PointerTest.c +0 -63
- data/spec/ffi/fixtures/ReferenceTest.c +0 -23
- data/spec/ffi/fixtures/StringTest.c +0 -34
- data/spec/ffi/fixtures/StructTest.c +0 -243
- data/spec/ffi/fixtures/UnionTest.c +0 -43
- data/spec/ffi/fixtures/VariadicTest.c +0 -99
- data/spec/ffi/fixtures/classes.rb +0 -438
- data/spec/ffi/function_spec.rb +0 -97
- data/spec/ffi/io_spec.rb +0 -16
- data/spec/ffi/library_spec.rb +0 -286
- data/spec/ffi/long_double.rb +0 -30
- data/spec/ffi/managed_struct_spec.rb +0 -68
- data/spec/ffi/memorypointer_spec.rb +0 -78
- data/spec/ffi/number_spec.rb +0 -247
- data/spec/ffi/platform_spec.rb +0 -114
- data/spec/ffi/pointer_spec.rb +0 -285
- data/spec/ffi/rbx/attach_function_spec.rb +0 -34
- data/spec/ffi/rbx/memory_pointer_spec.rb +0 -194
- data/spec/ffi/rbx/spec_helper.rb +0 -6
- data/spec/ffi/rbx/struct_spec.rb +0 -18
- data/spec/ffi/spec_helper.rb +0 -93
- data/spec/ffi/string_spec.rb +0 -118
- data/spec/ffi/strptr_spec.rb +0 -50
- data/spec/ffi/struct_by_ref_spec.rb +0 -43
- data/spec/ffi/struct_callback_spec.rb +0 -69
- data/spec/ffi/struct_initialize_spec.rb +0 -35
- data/spec/ffi/struct_packed_spec.rb +0 -50
- data/spec/ffi/struct_spec.rb +0 -886
- data/spec/ffi/typedef_spec.rb +0 -91
- data/spec/ffi/union_spec.rb +0 -67
- data/spec/ffi/variadic_spec.rb +0 -132
- data/spec/spec.opts +0 -4
data/gen/Rakefile
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
$LOAD_PATH.unshift File.join(File.dirname(__FILE__), '..', 'lib')
|
|
2
|
-
require 'fileutils'
|
|
3
|
-
require 'ffi'
|
|
4
|
-
require 'ffi/platform'
|
|
5
|
-
require 'ffi/tools/types_generator'
|
|
6
|
-
types_conf = File.expand_path(File.join(FFI::Platform::CONF_DIR, 'types.conf'))
|
|
7
|
-
|
|
8
|
-
logfile = File.join(File.dirname(__FILE__), 'log')
|
|
9
|
-
|
|
10
|
-
file types_conf do |task|
|
|
11
|
-
options = {}
|
|
12
|
-
FileUtils.mkdir_p(File.dirname(task.name), { :mode => 0755 })
|
|
13
|
-
File.open(task.name, File::CREAT|File::TRUNC|File::RDWR, 0644) do |f|
|
|
14
|
-
f.puts FFI::TypesGenerator.generate(options)
|
|
15
|
-
end
|
|
16
|
-
File.open(logfile, 'w') do |log|
|
|
17
|
-
log.puts(types_conf)
|
|
18
|
-
end
|
|
19
|
-
end
|
|
20
|
-
|
|
21
|
-
task :default => types_conf do
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
task :clean do
|
|
25
|
-
File.readlines(logfile).each do |file|
|
|
26
|
-
file.strip!
|
|
27
|
-
rm_f file
|
|
28
|
-
end
|
|
29
|
-
rm_f logfile
|
|
30
|
-
end
|
data/libtest/Benchmark.c
DELETED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2007 Wayne Meissner. All rights reserved.
|
|
3
|
-
*
|
|
4
|
-
* For licensing, see LICENSE.SPECS
|
|
5
|
-
*/
|
|
6
|
-
#include <sys/types.h>
|
|
7
|
-
#include <stdint.h>
|
|
8
|
-
|
|
9
|
-
void returnVoid() {
|
|
10
|
-
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
void returnVoidI(int arg) {
|
|
14
|
-
|
|
15
|
-
}
|
|
16
|
-
int returnInt() {
|
|
17
|
-
return 0;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
int returnIntI(int arg) {
|
|
21
|
-
return arg;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
typedef int8_t s8;
|
|
25
|
-
typedef uint8_t u8;
|
|
26
|
-
typedef int16_t s16;
|
|
27
|
-
typedef uint16_t u16;
|
|
28
|
-
typedef int32_t s32;
|
|
29
|
-
typedef uint32_t u32;
|
|
30
|
-
typedef int64_t s64;
|
|
31
|
-
typedef uint64_t u64;
|
|
32
|
-
typedef float f32;
|
|
33
|
-
typedef double f64;
|
|
34
|
-
typedef void v;
|
|
35
|
-
typedef char* S;
|
|
36
|
-
typedef void* P;
|
|
37
|
-
|
|
38
|
-
#define B6(R, T1, T2, T3, T4, T5, T6) R bench_##T1##T2##T3##T4##T5##T6##_##R(T1 a1, T2 a2, T3 a3, T4 a4, T5 a5, T6 a6) {}
|
|
39
|
-
#define B5(R, T1, T2, T3, T4, T5) R bench_##T1##T2##T3##T4##T5##_##R(T1 a1, T2 a2, T3 a3, T4 a4, T5 a5) {}
|
|
40
|
-
#define B4(R, T1, T2, T3, T4) R bench_##T1##T2##T3##T4##_##R(T1 a1, T2 a2, T3 a3, T4 a4) {}
|
|
41
|
-
#define B3(R, T1, T2, T3) R bench_##T1##T2##T3##_##R(T1 a1, T2 a2, T3 a3) {}
|
|
42
|
-
#define B2(R, T1, T2) R bench_##T1##T2##_##R(T1 a1, T2 a2) {}
|
|
43
|
-
#define B1(R, T1) R bench_##T1##_##R(T1 a1) {}
|
|
44
|
-
#define BrV(T) B1(v, T); B2(v, T, T); B3(v, T, T, T); B4(v, T, T, T, T); B5(v, T, T, T, T, T); B6(v, T, T, T, T, T, T);
|
|
45
|
-
BrV(u32);
|
|
46
|
-
BrV(s32);
|
|
47
|
-
BrV(s64);
|
|
48
|
-
BrV(u64);
|
|
49
|
-
BrV(f32);
|
|
50
|
-
BrV(f64);
|
|
51
|
-
BrV(S);
|
|
52
|
-
BrV(P);
|
data/libtest/BoolTest.c
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2007 Wayne Meissner.
|
|
3
|
-
* Copyright (c) 2009 Aman Gupta.
|
|
4
|
-
*
|
|
5
|
-
* All rights reserved.
|
|
6
|
-
*
|
|
7
|
-
* For licensing, see LICENSE.SPECS
|
|
8
|
-
*/
|
|
9
|
-
|
|
10
|
-
#include <stdbool.h>
|
|
11
|
-
|
|
12
|
-
bool
|
|
13
|
-
bool_return_true()
|
|
14
|
-
{
|
|
15
|
-
return true;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
bool
|
|
19
|
-
bool_return_false()
|
|
20
|
-
{
|
|
21
|
-
return false;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
bool
|
|
25
|
-
bool_return_val(bool value)
|
|
26
|
-
{
|
|
27
|
-
return value;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
bool
|
|
31
|
-
bool_reverse_val(bool value)
|
|
32
|
-
{
|
|
33
|
-
return value ? false : true;
|
|
34
|
-
}
|
data/libtest/BufferTest.c
DELETED
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2007 Wayne Meissner. All rights reserved.
|
|
3
|
-
*
|
|
4
|
-
* For licensing, see LICENSE.SPECS
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
#define MEMSET(buf, value, size) do { \
|
|
9
|
-
int i; for (i = 0; i < size; ++i) buf[i] = value; \
|
|
10
|
-
} while(0)
|
|
11
|
-
#define MEMCPY(dst, src, size) do { \
|
|
12
|
-
int i; for (i = 0; i < size; ++i) dst[i] = src[i]; \
|
|
13
|
-
} while(0)
|
|
14
|
-
|
|
15
|
-
#define FILL(JTYPE, CTYPE) \
|
|
16
|
-
void fill##JTYPE##Buffer(CTYPE* buf, CTYPE value, int size) { MEMSET(buf, value, size); }
|
|
17
|
-
|
|
18
|
-
#define COPY(JTYPE, CTYPE) \
|
|
19
|
-
void copy##JTYPE##Buffer(CTYPE* dst, CTYPE* src, int size) { MEMCPY(dst, src, size); }
|
|
20
|
-
|
|
21
|
-
#define FUNC(JTYPE, CTYPE) \
|
|
22
|
-
FILL(JTYPE, CTYPE); \
|
|
23
|
-
COPY(JTYPE, CTYPE)
|
|
24
|
-
|
|
25
|
-
FUNC(Byte, char);
|
|
26
|
-
FUNC(Short, short);
|
|
27
|
-
FUNC(Int, int);
|
|
28
|
-
FUNC(Long, long long);
|
|
29
|
-
FUNC(Float, float);
|
|
30
|
-
FUNC(Double, double);
|
|
31
|
-
|
data/libtest/ClosureTest.c
DELETED
|
@@ -1,205 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2007 Wayne Meissner. All rights reserved.
|
|
3
|
-
*
|
|
4
|
-
* For licensing, see LICENSE.SPECS
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
#include <stdlib.h>
|
|
8
|
-
#include <stdbool.h>
|
|
9
|
-
#ifndef _WIN32
|
|
10
|
-
# include <pthread.h>
|
|
11
|
-
#else
|
|
12
|
-
# include <windows.h>
|
|
13
|
-
# include <process.h>
|
|
14
|
-
#endif
|
|
15
|
-
|
|
16
|
-
#define R(T, rtype) rtype testClosureVr##T(rtype (*closure)(void)) { \
|
|
17
|
-
return closure != NULL ? (*closure)() : (rtype) 0; \
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
#define P(T, ptype) void testClosure##T##rV(void (*closure)(ptype), ptype a1) { \
|
|
21
|
-
if (closure != NULL) (*closure)(a1); \
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
void testClosureVrV(void (*closure)(void))
|
|
25
|
-
{
|
|
26
|
-
(*closure)();
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
R(Z, bool);
|
|
30
|
-
R(B, char);
|
|
31
|
-
R(S, short);
|
|
32
|
-
R(I, int);
|
|
33
|
-
R(L, long);
|
|
34
|
-
R(J, long long);
|
|
35
|
-
R(LL, long long);
|
|
36
|
-
R(F, float);
|
|
37
|
-
R(D, double);
|
|
38
|
-
R(P, const void*);
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
P(Z, bool);
|
|
42
|
-
P(B, char);
|
|
43
|
-
P(S, short);
|
|
44
|
-
P(I, int);
|
|
45
|
-
P(L, long);
|
|
46
|
-
P(J, long long);
|
|
47
|
-
P(LL, long long);
|
|
48
|
-
P(F, float);
|
|
49
|
-
P(D, double);
|
|
50
|
-
P(P, const void*);
|
|
51
|
-
P(UL, unsigned long);
|
|
52
|
-
|
|
53
|
-
#if defined(_WIN32) && !defined(_WIN64)
|
|
54
|
-
bool __stdcall testClosureStdcall(long *a1, void __stdcall(*closure)(void *, long), long a2) { \
|
|
55
|
-
void* sp_pre;
|
|
56
|
-
void* sp_post;
|
|
57
|
-
|
|
58
|
-
asm volatile (" movl %%esp,%0" : "=g" (sp_pre));
|
|
59
|
-
(*closure)(a1, a2);
|
|
60
|
-
asm volatile (" movl %%esp,%0" : "=g" (sp_post));
|
|
61
|
-
|
|
62
|
-
/* %esp before pushing parameters on the stack and after the call returns
|
|
63
|
-
* should be equal, if both sides respects the stdcall convention */
|
|
64
|
-
return sp_pre == sp_post;
|
|
65
|
-
}
|
|
66
|
-
#endif
|
|
67
|
-
|
|
68
|
-
void testOptionalClosureBrV(void (*closure)(char), char a1)
|
|
69
|
-
{
|
|
70
|
-
if (closure) {
|
|
71
|
-
(*closure)(a1);
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
struct ThreadVrV {
|
|
77
|
-
void (*closure)(void);
|
|
78
|
-
int count;
|
|
79
|
-
};
|
|
80
|
-
|
|
81
|
-
static void *
|
|
82
|
-
threadVrV(void *arg)
|
|
83
|
-
{
|
|
84
|
-
struct ThreadVrV* t = (struct ThreadVrV *) arg;
|
|
85
|
-
|
|
86
|
-
int i;
|
|
87
|
-
for (i = 0; i < t->count; i++) {
|
|
88
|
-
(*t->closure)();
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
return NULL;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
void testThreadedClosureVrV(void (*closure)(void), int n)
|
|
95
|
-
{
|
|
96
|
-
struct ThreadVrV arg = {closure, n};
|
|
97
|
-
#ifndef _WIN32
|
|
98
|
-
pthread_t t;
|
|
99
|
-
pthread_create(&t, NULL, threadVrV, &arg);
|
|
100
|
-
pthread_join(t, NULL);
|
|
101
|
-
#else
|
|
102
|
-
HANDLE hThread = (HANDLE) _beginthread((void (*)(void *))threadVrV, 0, &arg);
|
|
103
|
-
WaitForSingleObject(hThread, INFINITE);
|
|
104
|
-
#endif
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
struct s8f32s32 {
|
|
108
|
-
char s8;
|
|
109
|
-
float f32;
|
|
110
|
-
int s32;
|
|
111
|
-
};
|
|
112
|
-
|
|
113
|
-
// Takes a struct argument
|
|
114
|
-
void testClosureTrV(void (*closure)(struct s8f32s32 s), struct s8f32s32* s)
|
|
115
|
-
{
|
|
116
|
-
(*closure)(*s);
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
// Returns a struct value
|
|
120
|
-
struct s8f32s32 testClosureVrT(struct s8f32s32 (*closure)())
|
|
121
|
-
{
|
|
122
|
-
return (*closure)();
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
typedef int (*returnTypeClosure_t)(int) ;
|
|
126
|
-
typedef returnTypeClosure_t (*lookupClosure_t)();
|
|
127
|
-
|
|
128
|
-
int testReturnsClosure(lookupClosure_t lookup, int val)
|
|
129
|
-
{
|
|
130
|
-
returnTypeClosure_t func = lookup ? (*lookup)() : NULL;
|
|
131
|
-
return func ? (*func)(val) : 0;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
static int multiplyByTwo(int value)
|
|
135
|
-
{
|
|
136
|
-
return value * 2;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
returnTypeClosure_t testReturnsFunctionPointer()
|
|
140
|
-
{
|
|
141
|
-
return multiplyByTwo;
|
|
142
|
-
}
|
|
143
|
-
|
|
144
|
-
typedef int (*argumentClosure_t)(int);
|
|
145
|
-
typedef int (*withArgumentClosure_t)(argumentClosure_t, int);
|
|
146
|
-
|
|
147
|
-
int testArgumentClosure(withArgumentClosure_t closure_with, argumentClosure_t closure_arg, int val)
|
|
148
|
-
{
|
|
149
|
-
return (*closure_with)(closure_arg, val);
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
//
|
|
154
|
-
// These macros produce functions of the form:
|
|
155
|
-
// testClosureBIrV(void (*closure)(char, int), char a1, int a2) {}
|
|
156
|
-
//
|
|
157
|
-
#define C2_(J1, J2, N1, N2) \
|
|
158
|
-
void testClosure##J1##J2##rV(void (*closure)(N1, N2), N1 a1, N2 a2) \
|
|
159
|
-
{ \
|
|
160
|
-
if (closure != NULL) (*closure)(a1, a2); \
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
#define C2(J, N) \
|
|
164
|
-
C2_(B, J, char, N) \
|
|
165
|
-
C2_(S, J, short, N) \
|
|
166
|
-
C2_(I, J, int, N) \
|
|
167
|
-
C2_(LL, J, long long, N) \
|
|
168
|
-
C2_(F, J, float, N) \
|
|
169
|
-
C2_(D, J, double, N) \
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
C2(B, char);
|
|
173
|
-
C2(S, short);
|
|
174
|
-
C2(I, int);
|
|
175
|
-
C2(LL, long long);
|
|
176
|
-
C2(F, float);
|
|
177
|
-
C2(D, double);
|
|
178
|
-
|
|
179
|
-
#define C3_(J1, J2, J3, N1, N2, N3) \
|
|
180
|
-
void testClosure##J1##J2##J3##rV(void (*closure)(N1, N2, N3), N1 a1, N2 a2, N3 a3) \
|
|
181
|
-
{ \
|
|
182
|
-
(*closure)(a1, a2, a3); \
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
#define C3(J, N) \
|
|
187
|
-
C3_(B, J, B, char, N, char) \
|
|
188
|
-
C3_(S, J, S, short, N, short) \
|
|
189
|
-
C3_(I, J, I, int, N, int) \
|
|
190
|
-
C3_(LL, J, LL, long long, N, long long) \
|
|
191
|
-
C3_(F, J, F, float, N, float) \
|
|
192
|
-
C3_(D, J, D, double, N, double) \
|
|
193
|
-
|
|
194
|
-
C3(B, char);
|
|
195
|
-
C3(S, short);
|
|
196
|
-
C3(I, int);
|
|
197
|
-
C3(LL, long long);
|
|
198
|
-
C3(F, float);
|
|
199
|
-
C3(D, double);
|
|
200
|
-
C3_(B, S, I, char, short, int);
|
|
201
|
-
C3_(B, S, LL, char, short, long long);
|
|
202
|
-
C3_(LL, S, B, long long, short, char);
|
|
203
|
-
C3_(LL, B, S, long long, char, short);
|
|
204
|
-
|
|
205
|
-
|
data/libtest/EnumTest.c
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2007 Wayne Meissner. All rights reserved.
|
|
3
|
-
*
|
|
4
|
-
* For licensing, see LICENSE.SPECS
|
|
5
|
-
*/
|
|
6
|
-
#include <stdint.h>
|
|
7
|
-
|
|
8
|
-
int test_untagged_enum(int val) {
|
|
9
|
-
return val;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
int test_untagged_typedef_enum(int val) {
|
|
13
|
-
return val;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
uint8_t test_untagged_nonint_enum(uint8_t val) {
|
|
17
|
-
return val;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
uint16_t test_tagged_nonint_enum1(uint16_t val) {
|
|
21
|
-
return val;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
uint32_t test_tagged_nonint_enum2(uint32_t val) {
|
|
25
|
-
return val;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
uint64_t test_tagged_nonint_enum3(uint64_t val) {
|
|
29
|
-
return val;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
typedef enum {c1, c2, c3, c4} enum_type1;
|
|
33
|
-
enum_type1 test_tagged_typedef_enum1(enum_type1 val) {
|
|
34
|
-
return val;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
typedef enum {c5 = 42, c6, c7, c8} enum_type2;
|
|
38
|
-
enum_type2 test_tagged_typedef_enum2(enum_type2 val) {
|
|
39
|
-
return val;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
typedef enum {c9 = 42, c10, c11 = 4242, c12} enum_type3;
|
|
43
|
-
enum_type3 test_tagged_typedef_enum3(enum_type3 val) {
|
|
44
|
-
return val;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
typedef enum {c13 = 42, c14 = 4242, c15 = 424242, c16 = 42424242} enum_type4;
|
|
48
|
-
enum_type4 test_tagged_typedef_enum4(enum_type4 val) {
|
|
49
|
-
return val;
|
|
50
|
-
}
|
|
51
|
-
|
data/libtest/FunctionTest.c
DELETED
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2007 Wayne Meissner. All rights reserved.
|
|
3
|
-
*
|
|
4
|
-
* For licensing, see LICENSE.SPECS
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
#ifdef _WIN32
|
|
8
|
-
#include <windows.h>
|
|
9
|
-
#define sleep(x) Sleep((x)*1000)
|
|
10
|
-
#endif
|
|
11
|
-
|
|
12
|
-
#ifndef _WIN32
|
|
13
|
-
#include <unistd.h>
|
|
14
|
-
#include <pthread.h>
|
|
15
|
-
#endif
|
|
16
|
-
|
|
17
|
-
int testAdd(int a, int b)
|
|
18
|
-
{
|
|
19
|
-
return a + b;
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
int testFunctionAdd(int a, int b, int (*f)(int, int))
|
|
23
|
-
{
|
|
24
|
-
return f(a, b);
|
|
25
|
-
};
|
|
26
|
-
|
|
27
|
-
void testBlocking(int seconds) {
|
|
28
|
-
sleep(seconds);
|
|
29
|
-
};
|
|
30
|
-
|
|
31
|
-
struct async_data {
|
|
32
|
-
void (*fn)(int);
|
|
33
|
-
int value;
|
|
34
|
-
};
|
|
35
|
-
|
|
36
|
-
static void* asyncThreadCall(void *data)
|
|
37
|
-
{
|
|
38
|
-
struct async_data* d = (struct async_data *) data;
|
|
39
|
-
if (d != NULL && d->fn != NULL) {
|
|
40
|
-
(*d->fn)(d->value);
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
return NULL;
|
|
44
|
-
}
|
|
45
|
-
|
|
46
|
-
void testAsyncCallback(void (*fn)(int), int value)
|
|
47
|
-
{
|
|
48
|
-
#ifndef _WIN32
|
|
49
|
-
pthread_t t;
|
|
50
|
-
struct async_data d;
|
|
51
|
-
d.fn = fn;
|
|
52
|
-
d.value = value;
|
|
53
|
-
pthread_create(&t, NULL, asyncThreadCall, &d);
|
|
54
|
-
pthread_join(t, NULL);
|
|
55
|
-
#else
|
|
56
|
-
(*fn)(value);
|
|
57
|
-
#endif
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
#if defined(_WIN32) && !defined(_WIN64)
|
|
61
|
-
struct StructUCDP {
|
|
62
|
-
unsigned char a1;
|
|
63
|
-
double a2;
|
|
64
|
-
void *a3;
|
|
65
|
-
};
|
|
66
|
-
|
|
67
|
-
void __stdcall testStdcallManyParams(long *a1, char a2, short int a3, int a4, __int64 a5,
|
|
68
|
-
struct StructUCDP a6, struct StructUCDP *a7, float a8, double a9) {
|
|
69
|
-
}
|
|
70
|
-
#endif
|
data/libtest/GNUmakefile
DELETED
|
@@ -1,149 +0,0 @@
|
|
|
1
|
-
# -*- makefile -*-
|
|
2
|
-
|
|
3
|
-
ifeq ($(OS),)
|
|
4
|
-
BUILD_OS := $(shell uname -s | tr '[:upper:]' '[:lower:]')
|
|
5
|
-
OS := $(BUILD_OS)
|
|
6
|
-
endif
|
|
7
|
-
|
|
8
|
-
ifeq ($(CPU),)
|
|
9
|
-
CPU := $(shell uname -m | sed -e 's/i[345678]86/i386/')
|
|
10
|
-
endif
|
|
11
|
-
|
|
12
|
-
PLATFORM = $(CPU)-$(OS)
|
|
13
|
-
|
|
14
|
-
ifeq ($(OS), sunos)
|
|
15
|
-
OS = solaris
|
|
16
|
-
endif
|
|
17
|
-
|
|
18
|
-
SRC_DIR = libtest
|
|
19
|
-
BUILD_DIR ?= build
|
|
20
|
-
TEST_BUILD_DIR = $(BUILD_DIR)/libtest
|
|
21
|
-
# Set defaults to unix (linux/solaris/bsd)
|
|
22
|
-
PREFIX = lib
|
|
23
|
-
LIBEXT ?= so
|
|
24
|
-
LIBNAME = $(PREFIX)test.$(LIBEXT)
|
|
25
|
-
|
|
26
|
-
export MACOSX_DEPLOYMENT_TARGET=10.4
|
|
27
|
-
|
|
28
|
-
CCACHE := $(strip $(realpath $(shell which ccache 2> /dev/null)))
|
|
29
|
-
|
|
30
|
-
TEST_SRCS = $(wildcard $(SRC_DIR)/*.c)
|
|
31
|
-
TEST_OBJS := $(patsubst $(SRC_DIR)/%.c, $(TEST_BUILD_DIR)/%.o, $(TEST_SRCS))
|
|
32
|
-
|
|
33
|
-
#
|
|
34
|
-
# Compiler/linker flags from:
|
|
35
|
-
# http://weblogs.java.net/blog/kellyohair/archive/2006/01/compilation_of_1.html
|
|
36
|
-
JFLAGS = -fno-omit-frame-pointer -fno-strict-aliasing
|
|
37
|
-
OFLAGS = -O2 $(JFLAGS)
|
|
38
|
-
WFLAGS = -W -Wall -Wno-unused -Wno-parentheses
|
|
39
|
-
PICFLAGS = -fPIC
|
|
40
|
-
SOFLAGS = -shared
|
|
41
|
-
LDFLAGS += $(SOFLAGS)
|
|
42
|
-
|
|
43
|
-
IFLAGS = -I"$(BUILD_DIR)"
|
|
44
|
-
CFLAGS = $(OFLAGS) $(WFLAGS) $(IFLAGS) $(PICFLAGS) -D_REENTRANT
|
|
45
|
-
|
|
46
|
-
ifneq ($(strip $(findstring $(OS), win32, mingw, cygwin)),)
|
|
47
|
-
# For cygwin => win32-native builds, strip out cygwin deps
|
|
48
|
-
ifneq ($(findstring cygwin, $(BUILD_OS)),)
|
|
49
|
-
CC += -mno-cygwin -mwin32
|
|
50
|
-
LDFLAGS += -mno-cygwin -Wl,--add-stdcall-alias
|
|
51
|
-
endif
|
|
52
|
-
PICFLAGS=
|
|
53
|
-
LIBEXT=dll
|
|
54
|
-
CC = gcc
|
|
55
|
-
endif
|
|
56
|
-
|
|
57
|
-
ifeq ($(OS), darwin)
|
|
58
|
-
ifneq ($(findstring $(CPU),ppc),)
|
|
59
|
-
ARCHFLAGS += -arch ppc
|
|
60
|
-
endif
|
|
61
|
-
ifneq ($(findstring $(CPU),i386 x86_64),)
|
|
62
|
-
ARCHFLAGS += -arch i386 -arch x86_64
|
|
63
|
-
endif
|
|
64
|
-
CFLAGS += $(ARCHFLAGS) -DTARGET_RT_MAC_CFM=0
|
|
65
|
-
CFLAGS += -fno-common
|
|
66
|
-
LDFLAGS = $(ARCHFLAGS) -dynamiclib
|
|
67
|
-
# link against the universal libraries on ppc machines
|
|
68
|
-
LDFLAGS += -L$(MACSDK)/usr/lib
|
|
69
|
-
LIBEXT = dylib
|
|
70
|
-
FFI_CFLAGS += -isysroot $(MACSDK)
|
|
71
|
-
PICFLAGS =
|
|
72
|
-
SOFLAGS =
|
|
73
|
-
endif
|
|
74
|
-
|
|
75
|
-
ifeq ($(OS), linux)
|
|
76
|
-
SOFLAGS += -Wl,-soname,$(LIBNAME)
|
|
77
|
-
endif
|
|
78
|
-
|
|
79
|
-
ifeq ($(OS), solaris)
|
|
80
|
-
CC = /usr/sfw/bin/gcc -std=c99
|
|
81
|
-
LD = /usr/ccs/bin/ld
|
|
82
|
-
SOFLAGS = -shared -static-libgcc
|
|
83
|
-
endif
|
|
84
|
-
|
|
85
|
-
ifeq ($(OS), aix)
|
|
86
|
-
LIBEXT = a
|
|
87
|
-
SOFLAGS = -shared -static-libgcc
|
|
88
|
-
PICFLAGS += -pthread
|
|
89
|
-
endif
|
|
90
|
-
|
|
91
|
-
ifneq ($(findstring bsd, $(OS)),)
|
|
92
|
-
SOFLAGS = -shared -static-libgcc
|
|
93
|
-
CFLAGS += -pthread
|
|
94
|
-
LDFLAGS += -pthread
|
|
95
|
-
endif
|
|
96
|
-
|
|
97
|
-
ifeq ($(CPU), i386)
|
|
98
|
-
MODEL = 32
|
|
99
|
-
endif
|
|
100
|
-
|
|
101
|
-
ifeq ($(CPU), sparcv9)
|
|
102
|
-
MODEL = 64
|
|
103
|
-
endif
|
|
104
|
-
|
|
105
|
-
ifeq ($(CPU), amd64)
|
|
106
|
-
MODEL = 64
|
|
107
|
-
endif
|
|
108
|
-
|
|
109
|
-
ifeq ($(CPU), x86_64)
|
|
110
|
-
MODEL = 64
|
|
111
|
-
endif
|
|
112
|
-
|
|
113
|
-
ifeq ($(CPU), ppc64)
|
|
114
|
-
MODEL = 64
|
|
115
|
-
endif
|
|
116
|
-
|
|
117
|
-
ifeq ($(CPU), powerpc64)
|
|
118
|
-
MODEL = 64
|
|
119
|
-
endif
|
|
120
|
-
|
|
121
|
-
MODELFLAG =
|
|
122
|
-
ifneq ($(MODEL),)
|
|
123
|
-
MODELFLAG = -m$(MODEL)
|
|
124
|
-
endif
|
|
125
|
-
|
|
126
|
-
# On platforms (linux, solaris) that support both 32bit and 64bit, force building for one or the other
|
|
127
|
-
ifneq ($(or $(findstring linux, $(OS)), $(findstring solaris, $(OS))),)
|
|
128
|
-
# Change the CC/LD instead of CFLAGS/LDFLAGS, incase other things in the flags
|
|
129
|
-
# makes the libffi build choke
|
|
130
|
-
CC += $(MODELFLAG)
|
|
131
|
-
LD += $(MODELFLAG)
|
|
132
|
-
endif
|
|
133
|
-
|
|
134
|
-
LIBTEST = $(BUILD_DIR)/$(LIBNAME)
|
|
135
|
-
|
|
136
|
-
all: $(LIBTEST)
|
|
137
|
-
|
|
138
|
-
$(TEST_BUILD_DIR)/%.o : $(SRC_DIR)/%.c
|
|
139
|
-
@mkdir -p $(@D)
|
|
140
|
-
$(CCACHE) $(CC) $(CFLAGS) -c $< -o $@
|
|
141
|
-
|
|
142
|
-
$(LIBTEST): $(TEST_OBJS)
|
|
143
|
-
$(CC) -o $@ $(LDFLAGS) $(TEST_OBJS) -lm
|
|
144
|
-
|
|
145
|
-
clean::
|
|
146
|
-
# nothing to do - ant will delete the build dir
|
|
147
|
-
|
|
148
|
-
debug::
|
|
149
|
-
@echo "SRCS=$(TEST_SRCS)"
|
data/libtest/GlobalVariable.c
DELETED
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2007 Wayne Meissner. All rights reserved.
|
|
3
|
-
*
|
|
4
|
-
* For licensing, see LICENSE.SPECS
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
#include <sys/types.h>
|
|
8
|
-
#include <stdint.h>
|
|
9
|
-
|
|
10
|
-
typedef int8_t s8;
|
|
11
|
-
typedef uint8_t u8;
|
|
12
|
-
typedef int16_t s16;
|
|
13
|
-
typedef uint16_t u16;
|
|
14
|
-
typedef int32_t s32;
|
|
15
|
-
typedef uint32_t u32;
|
|
16
|
-
typedef int64_t s64;
|
|
17
|
-
typedef uint64_t u64;
|
|
18
|
-
typedef signed long sL;
|
|
19
|
-
typedef unsigned long uL;
|
|
20
|
-
typedef float f32;
|
|
21
|
-
typedef double f64;
|
|
22
|
-
#if !defined(__OpenBSD__)
|
|
23
|
-
typedef unsigned long ulong;
|
|
24
|
-
#endif
|
|
25
|
-
typedef void* pointer;
|
|
26
|
-
typedef void* P;
|
|
27
|
-
|
|
28
|
-
#define GVAR(T) \
|
|
29
|
-
extern T gvar_##T; \
|
|
30
|
-
T gvar_##T = (T) -1; \
|
|
31
|
-
T gvar_##T##_get() { return gvar_##T; }; \
|
|
32
|
-
void gvar_##T##_set(T v) { gvar_##T = v; }
|
|
33
|
-
|
|
34
|
-
GVAR(s8);
|
|
35
|
-
GVAR(u8);
|
|
36
|
-
GVAR(s16);
|
|
37
|
-
GVAR(u16);
|
|
38
|
-
GVAR(s32);
|
|
39
|
-
GVAR(u32);
|
|
40
|
-
GVAR(s64);
|
|
41
|
-
GVAR(u64);
|
|
42
|
-
GVAR(long);
|
|
43
|
-
GVAR(ulong);
|
|
44
|
-
GVAR(pointer);
|
|
45
|
-
|
|
46
|
-
struct gstruct {
|
|
47
|
-
long data;
|
|
48
|
-
};
|
|
49
|
-
|
|
50
|
-
struct gstruct gvar_gstruct = { -1 };
|
|
51
|
-
|
|
52
|
-
struct gstruct*
|
|
53
|
-
gvar_gstruct_get(void)
|
|
54
|
-
{
|
|
55
|
-
return &gvar_gstruct;
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
void
|
|
59
|
-
gvar_gstruct_set(const struct gstruct* val)
|
|
60
|
-
{
|
|
61
|
-
gvar_gstruct = *val;
|
|
62
|
-
}
|
data/libtest/LastErrorTest.c
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) 2007 Wayne Meissner. All rights reserved.
|
|
3
|
-
*
|
|
4
|
-
* For licensing, see LICENSE.SPECS
|
|
5
|
-
*/
|
|
6
|
-
|
|
7
|
-
#if defined(_WIN32) || defined(__WIN32__)
|
|
8
|
-
# include <windows.h>
|
|
9
|
-
#else
|
|
10
|
-
# include <errno.h>
|
|
11
|
-
#endif
|
|
12
|
-
|
|
13
|
-
int setLastError(int error) {
|
|
14
|
-
#if defined(_WIN32) || defined(__WIN32__)
|
|
15
|
-
SetLastError(error);
|
|
16
|
-
#else
|
|
17
|
-
errno = error;
|
|
18
|
-
#endif
|
|
19
|
-
return -1;
|
|
20
|
-
}
|
|
21
|
-
|