ffi 1.11.1 → 1.15.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (331) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +207 -0
  3. data/Gemfile +3 -4
  4. data/README.md +24 -3
  5. data/Rakefile +65 -69
  6. data/ext/ffi_c/AbstractMemory.c +29 -34
  7. data/ext/ffi_c/Buffer.c +4 -9
  8. data/ext/ffi_c/Call.c +6 -22
  9. data/ext/ffi_c/Call.h +2 -2
  10. data/ext/ffi_c/ClosurePool.c +75 -25
  11. data/ext/ffi_c/ClosurePool.h +3 -1
  12. data/ext/ffi_c/DynamicLibrary.c +2 -7
  13. data/ext/ffi_c/Function.c +43 -43
  14. data/ext/ffi_c/Function.h +0 -4
  15. data/ext/ffi_c/FunctionInfo.c +3 -8
  16. data/ext/ffi_c/LastError.c +2 -6
  17. data/ext/ffi_c/LongDouble.c +12 -10
  18. data/ext/ffi_c/LongDouble.h +0 -4
  19. data/ext/ffi_c/MemoryPointer.c +3 -8
  20. data/ext/ffi_c/MemoryPointer.h +0 -4
  21. data/ext/ffi_c/MethodHandle.c +21 -31
  22. data/ext/ffi_c/MethodHandle.h +3 -2
  23. data/ext/ffi_c/Platform.c +5 -9
  24. data/ext/ffi_c/Pointer.c +25 -26
  25. data/ext/ffi_c/Pointer.h +0 -4
  26. data/ext/ffi_c/Struct.c +49 -56
  27. data/ext/ffi_c/Struct.h +12 -6
  28. data/ext/ffi_c/StructByValue.c +2 -7
  29. data/ext/ffi_c/StructLayout.c +22 -20
  30. data/ext/ffi_c/Thread.c +0 -8
  31. data/ext/ffi_c/Thread.h +1 -9
  32. data/ext/ffi_c/Type.c +1 -1
  33. data/ext/ffi_c/Types.c +7 -8
  34. data/ext/ffi_c/Types.h +3 -4
  35. data/ext/ffi_c/Variadic.c +14 -9
  36. data/ext/ffi_c/compat.h +4 -0
  37. data/ext/ffi_c/extconf.rb +36 -24
  38. data/ext/ffi_c/libffi/.appveyor.yml +29 -13
  39. data/ext/ffi_c/libffi/.gitattributes +4 -0
  40. data/ext/ffi_c/libffi/.travis/bfin-sim.exp +58 -0
  41. data/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +14 -0
  42. data/ext/ffi_c/libffi/.travis/build-in-container.sh +12 -0
  43. data/ext/ffi_c/libffi/.travis/build.sh +116 -8
  44. data/ext/ffi_c/libffi/.travis/install.sh +65 -16
  45. data/ext/ffi_c/libffi/.travis/m32r-sim.exp +58 -0
  46. data/ext/ffi_c/libffi/.travis/moxie-sim.exp +1 -1
  47. data/ext/ffi_c/libffi/.travis/or1k-sim.exp +58 -0
  48. data/ext/ffi_c/libffi/.travis/powerpc-eabisim.exp +58 -0
  49. data/ext/ffi_c/libffi/.travis/site.exp +10 -1
  50. data/ext/ffi_c/libffi/.travis/wine-sim.exp +55 -0
  51. data/ext/ffi_c/libffi/.travis.yml +51 -2
  52. data/ext/ffi_c/libffi/{ChangeLog.libffi-3.1 → ChangeLog.old} +1407 -0
  53. data/ext/ffi_c/libffi/LICENSE +1 -1
  54. data/ext/ffi_c/libffi/LICENSE-BUILDTOOLS +5 -4
  55. data/ext/ffi_c/libffi/Makefile.am +56 -72
  56. data/ext/ffi_c/libffi/Makefile.in +458 -207
  57. data/ext/ffi_c/libffi/README.md +33 -8
  58. data/ext/ffi_c/libffi/config.guess +552 -331
  59. data/ext/ffi_c/libffi/config.sub +1321 -1306
  60. data/ext/ffi_c/libffi/configure +414 -342
  61. data/ext/ffi_c/libffi/configure.ac +32 -11
  62. data/ext/ffi_c/libffi/configure.host +56 -27
  63. data/ext/ffi_c/libffi/doc/Makefile.in +9 -5
  64. data/ext/ffi_c/libffi/doc/libffi.texi +26 -14
  65. data/ext/ffi_c/libffi/doc/version.texi +4 -4
  66. data/ext/ffi_c/libffi/fficonfig.h.in +13 -0
  67. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +2 -4
  68. data/ext/ffi_c/libffi/include/Makefile.in +10 -6
  69. data/ext/ffi_c/libffi/include/ffi.h.in +19 -7
  70. data/ext/ffi_c/libffi/include/ffi_common.h +4 -0
  71. data/ext/ffi_c/libffi/install-sh +23 -13
  72. data/ext/ffi_c/libffi/libffi.map.in +8 -12
  73. data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +2 -48
  74. data/ext/ffi_c/libffi/libtool-version +1 -1
  75. data/ext/ffi_c/libffi/ltmain.sh +156 -61
  76. data/ext/ffi_c/libffi/m4/asmcfi.m4 +1 -1
  77. data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +5 -26
  78. data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +5 -26
  79. data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +2 -1
  80. data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +5 -26
  81. data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +7 -3
  82. data/ext/ffi_c/libffi/make_sunver.pl +333 -0
  83. data/ext/ffi_c/libffi/man/Makefile.in +9 -5
  84. data/ext/ffi_c/libffi/missing +8 -8
  85. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.sln +33 -0
  86. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj +130 -0
  87. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.filters +57 -0
  88. data/ext/ffi_c/libffi/msvc_build/aarch64/Ffi_staticLib.vcxproj.user +4 -0
  89. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +511 -0
  90. data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/fficonfig.h +219 -0
  91. data/ext/ffi_c/libffi/msvcc.sh +38 -13
  92. data/ext/ffi_c/libffi/src/aarch64/ffi.c +151 -67
  93. data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +19 -3
  94. data/ext/ffi_c/libffi/src/aarch64/internal.h +1 -0
  95. data/ext/ffi_c/libffi/src/aarch64/sysv.S +22 -9
  96. data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +506 -0
  97. data/ext/ffi_c/libffi/src/arm/ffi.c +62 -5
  98. data/ext/ffi_c/libffi/src/arm/ffitarget.h +8 -1
  99. data/ext/ffi_c/libffi/src/arm/sysv.S +6 -4
  100. data/ext/ffi_c/libffi/src/arm/sysv_msvc_arm32.S +311 -0
  101. data/ext/ffi_c/libffi/src/closures.c +69 -14
  102. data/ext/ffi_c/libffi/src/csky/ffi.c +395 -0
  103. data/ext/ffi_c/libffi/src/csky/ffitarget.h +63 -0
  104. data/ext/ffi_c/libffi/src/csky/sysv.S +371 -0
  105. data/ext/ffi_c/libffi/src/dlmalloc.c +1 -1
  106. data/ext/ffi_c/libffi/src/kvx/asm.h +5 -0
  107. data/ext/ffi_c/libffi/src/kvx/ffi.c +273 -0
  108. data/ext/ffi_c/libffi/src/kvx/ffitarget.h +75 -0
  109. data/ext/ffi_c/libffi/src/kvx/sysv.S +127 -0
  110. data/ext/ffi_c/libffi/src/mips/ffi.c +5 -1
  111. data/ext/ffi_c/libffi/src/mips/ffitarget.h +1 -1
  112. data/ext/ffi_c/libffi/src/mips/o32.S +2 -0
  113. data/ext/ffi_c/libffi/src/pa/ffi.c +46 -91
  114. data/ext/ffi_c/libffi/src/pa/ffitarget.h +1 -6
  115. data/ext/ffi_c/libffi/src/pa/hpux32.S +4 -2
  116. data/ext/ffi_c/libffi/src/pa/linux.S +27 -4
  117. data/ext/ffi_c/libffi/src/powerpc/ffi.c +6 -4
  118. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +13 -1
  119. data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +211 -32
  120. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +18 -7
  121. data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +10 -4
  122. data/ext/ffi_c/libffi/src/powerpc/linux64.S +91 -28
  123. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +81 -5
  124. data/ext/ffi_c/libffi/src/powerpc/sysv.S +5 -7
  125. data/ext/ffi_c/libffi/src/prep_cif.c +4 -2
  126. data/ext/ffi_c/libffi/src/x86/ffi.c +28 -12
  127. data/ext/ffi_c/libffi/src/x86/ffi64.c +22 -11
  128. data/ext/ffi_c/libffi/src/x86/ffitarget.h +15 -2
  129. data/ext/ffi_c/libffi/src/x86/ffiw64.c +21 -11
  130. data/ext/ffi_c/libffi/src/x86/sysv.S +17 -8
  131. data/ext/ffi_c/libffi/src/x86/sysv_intel.S +995 -0
  132. data/ext/ffi_c/libffi/src/x86/unix64.S +59 -4
  133. data/ext/ffi_c/libffi/src/x86/win64.S +12 -3
  134. data/ext/ffi_c/libffi/src/x86/win64_intel.S +3 -2
  135. data/ext/ffi_c/libffi/testsuite/Makefile.am +114 -109
  136. data/ext/ffi_c/libffi/testsuite/Makefile.in +124 -84
  137. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +32 -8
  138. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +7 -2
  139. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +4 -4
  140. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2 -2
  141. data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +12 -1
  142. data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +9 -8
  143. data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +1 -1
  144. data/ext/ffi_c/libffi/testsuite/libffi.closures/closure.exp +67 -0
  145. data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +138 -0
  146. data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/huge_struct.c +3 -1
  147. data/ext/ffi_c/libffi.darwin.mk +1 -1
  148. data/ffi.gemspec +5 -6
  149. data/lib/ffi/abstract_memory.rb +44 -0
  150. data/lib/ffi/autopointer.rb +1 -1
  151. data/lib/ffi/ffi.rb +2 -0
  152. data/lib/ffi/io.rb +3 -3
  153. data/lib/ffi/library.rb +13 -9
  154. data/lib/ffi/managedstruct.rb +2 -2
  155. data/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
  156. data/lib/ffi/platform/aarch64-freebsd/types.conf +89 -89
  157. data/lib/ffi/platform/aarch64-freebsd12/types.conf +162 -109
  158. data/lib/ffi/platform/aarch64-linux/types.conf +81 -81
  159. data/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
  160. data/lib/ffi/platform/arm-freebsd/types.conf +87 -87
  161. data/lib/ffi/platform/arm-freebsd12/types.conf +87 -87
  162. data/lib/ffi/platform/arm-linux/types.conf +110 -82
  163. data/lib/ffi/platform/i386-cygwin/types.conf +1 -1
  164. data/lib/ffi/platform/i386-darwin/types.conf +63 -63
  165. data/lib/ffi/platform/i386-freebsd/types.conf +87 -87
  166. data/lib/ffi/platform/i386-freebsd12/types.conf +87 -87
  167. data/lib/ffi/platform/i386-gnu/types.conf +84 -84
  168. data/lib/ffi/platform/i386-linux/types.conf +77 -77
  169. data/lib/ffi/platform/i386-netbsd/types.conf +87 -87
  170. data/lib/ffi/platform/i386-openbsd/types.conf +89 -89
  171. data/lib/ffi/platform/i386-solaris/types.conf +96 -96
  172. data/lib/ffi/platform/i386-windows/types.conf +43 -96
  173. data/lib/ffi/platform/ia64-linux/types.conf +79 -79
  174. data/lib/ffi/platform/mips-linux/types.conf +79 -79
  175. data/lib/ffi/platform/mips64-linux/types.conf +81 -81
  176. data/lib/ffi/platform/mips64el-linux/types.conf +81 -81
  177. data/lib/ffi/platform/mipsel-linux/types.conf +79 -79
  178. data/lib/ffi/platform/mipsisa32r6-linux/types.conf +79 -79
  179. data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +79 -79
  180. data/lib/ffi/platform/mipsisa64r6-linux/types.conf +81 -81
  181. data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +81 -81
  182. data/lib/ffi/platform/powerpc-aix/types.conf +155 -155
  183. data/lib/ffi/platform/powerpc-darwin/types.conf +63 -63
  184. data/lib/ffi/platform/powerpc-linux/types.conf +108 -78
  185. data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
  186. data/lib/ffi/platform/powerpc64-linux/types.conf +81 -81
  187. data/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
  188. data/lib/ffi/platform/riscv64-linux/types.conf +104 -0
  189. data/lib/ffi/platform/s390-linux/types.conf +79 -79
  190. data/lib/ffi/platform/s390x-linux/types.conf +79 -79
  191. data/lib/ffi/platform/sparc-linux/types.conf +79 -79
  192. data/lib/ffi/platform/sparc-solaris/types.conf +103 -103
  193. data/lib/ffi/platform/sparc64-linux/types.conf +79 -79
  194. data/lib/ffi/platform/sparcv9-openbsd/types.conf +156 -0
  195. data/lib/ffi/platform/sparcv9-solaris/types.conf +103 -103
  196. data/lib/ffi/platform/x86_64-cygwin/types.conf +1 -1
  197. data/lib/ffi/platform/x86_64-darwin/types.conf +88 -84
  198. data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
  199. data/lib/ffi/platform/x86_64-freebsd/types.conf +89 -89
  200. data/lib/ffi/platform/x86_64-freebsd12/types.conf +139 -109
  201. data/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
  202. data/lib/ffi/platform/x86_64-linux/types.conf +107 -77
  203. data/lib/ffi/platform/x86_64-msys/types.conf +119 -0
  204. data/lib/ffi/platform/x86_64-netbsd/types.conf +89 -89
  205. data/lib/ffi/platform/x86_64-openbsd/types.conf +86 -86
  206. data/lib/ffi/platform/x86_64-solaris/types.conf +96 -96
  207. data/lib/ffi/platform/x86_64-windows/types.conf +42 -110
  208. data/lib/ffi/platform.rb +22 -9
  209. data/lib/ffi/pointer.rb +21 -14
  210. data/lib/ffi/struct.rb +10 -5
  211. data/lib/ffi/tools/const_generator.rb +6 -4
  212. data/lib/ffi/tools/struct_generator.rb +2 -1
  213. data/lib/ffi/tools/types_generator.rb +7 -4
  214. data/lib/ffi/variadic.rb +1 -10
  215. data/lib/ffi/version.rb +1 -1
  216. data/lib/ffi.rb +10 -3
  217. data/rakelib/ffi_gem_helper.rb +65 -0
  218. data/samples/getlogin.rb +1 -1
  219. data/samples/getpid.rb +1 -1
  220. data/samples/gettimeofday.rb +8 -8
  221. data/samples/hello.rb +2 -1
  222. data/samples/inotify.rb +1 -1
  223. data/samples/pty.rb +1 -2
  224. data/samples/qsort.rb +0 -1
  225. metadata +147 -134
  226. data/.gitignore +0 -25
  227. data/.gitmodules +0 -4
  228. data/.travis.yml +0 -42
  229. data/.yardopts +0 -5
  230. data/appveyor.yml +0 -27
  231. data/ext/ffi_c/libffi/ChangeLog.libffi +0 -584
  232. data/ext/ffi_c/libffi/ChangeLog.libgcj +0 -40
  233. data/ext/ffi_c/libffi/ChangeLog.v1 +0 -764
  234. data/ext/ffi_c/win32/stdbool.h +0 -8
  235. data/ext/ffi_c/win32/stdint.h +0 -201
  236. data/samples/sample_helper.rb +0 -6
  237. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn0.c +0 -0
  238. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn1.c +0 -0
  239. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn2.c +0 -0
  240. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn3.c +0 -0
  241. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn4.c +0 -0
  242. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn5.c +0 -0
  243. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_fn6.c +0 -0
  244. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_loc_fn0.c +0 -0
  245. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/closure_simple.c +0 -0
  246. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_12byte.c +0 -0
  247. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_16byte.c +0 -0
  248. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_18byte.c +0 -0
  249. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_19byte.c +0 -0
  250. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_1_1byte.c +0 -0
  251. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte.c +0 -0
  252. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_20byte1.c +0 -0
  253. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_24byte.c +0 -0
  254. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_2byte.c +0 -0
  255. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3_1byte.c +0 -0
  256. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte1.c +0 -0
  257. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3byte2.c +0 -0
  258. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_3float.c +0 -0
  259. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4_1byte.c +0 -0
  260. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_4byte.c +0 -0
  261. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5_1_byte.c +0 -0
  262. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_5byte.c +0 -0
  263. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_64byte.c +0 -0
  264. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6_1_byte.c +0 -0
  265. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_6byte.c +0 -0
  266. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7_1_byte.c +0 -0
  267. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_7byte.c +0 -0
  268. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_8byte.c +0 -0
  269. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte1.c +0 -0
  270. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_9byte2.c +0 -0
  271. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_double.c +0 -0
  272. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_float.c +0 -0
  273. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble.c +0 -0
  274. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split.c +0 -0
  275. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_longdouble_split2.c +0 -0
  276. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_pointer.c +0 -0
  277. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint16.c +0 -0
  278. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint32.c +0 -0
  279. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_sint64.c +0 -0
  280. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint16.c +0 -0
  281. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint32.c +0 -0
  282. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_align_uint64.c +0 -0
  283. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_dbls_struct.c +0 -0
  284. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double.c +0 -0
  285. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_double_va.c +0 -0
  286. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_float.c +0 -0
  287. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble.c +0 -0
  288. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_longdouble_va.c +0 -0
  289. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_args.c +0 -0
  290. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_many_mixed_float_double.c +0 -0
  291. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_schar.c +0 -0
  292. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshort.c +0 -0
  293. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_sshortchar.c +0 -0
  294. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_uchar.c +0 -0
  295. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushort.c +0 -0
  296. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_multi_ushortchar.c +0 -0
  297. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer.c +0 -0
  298. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_pointer_stack.c +0 -0
  299. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_schar.c +0 -0
  300. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sint.c +0 -0
  301. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_sshort.c +0 -0
  302. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_struct_va1.c +0 -0
  303. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar.c +0 -0
  304. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uchar_va.c +0 -0
  305. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint.c +0 -0
  306. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_uint_va.c +0 -0
  307. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulong_va.c +0 -0
  308. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ulonglong.c +0 -0
  309. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort.c +0 -0
  310. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/cls_ushort_va.c +0 -0
  311. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/err_bad_abi.c +0 -0
  312. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct.c +0 -0
  313. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct1.c +0 -0
  314. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct10.c +0 -0
  315. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct11.c +0 -0
  316. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct2.c +0 -0
  317. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct3.c +0 -0
  318. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct4.c +0 -0
  319. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct5.c +0 -0
  320. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct6.c +0 -0
  321. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct7.c +0 -0
  322. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct8.c +0 -0
  323. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/nested_struct9.c +0 -0
  324. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/problem1.c +0 -0
  325. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large.c +0 -0
  326. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_large2.c +0 -0
  327. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium.c +0 -0
  328. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/stret_medium2.c +0 -0
  329. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/testclosure.c +0 -0
  330. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest.cc +0 -0
  331. /data/ext/ffi_c/libffi/testsuite/{libffi.call → libffi.closures}/unwindtest_ffi_call.cc +0 -0
data/lib/ffi/pointer.rb CHANGED
@@ -31,21 +31,28 @@
31
31
  #
32
32
 
33
33
  require 'ffi/platform'
34
+
35
+ # NOTE: all method definitions in this file are conditional on
36
+ # whether they are not already defined. This is needed because
37
+ # some Ruby implementations (e.g., TruffleRuby) might already
38
+ # provide these methods due to using FFI internally, and we
39
+ # should not override them to avoid warnings.
40
+
34
41
  module FFI
35
42
  class Pointer
36
43
 
37
44
  # Pointer size
38
- SIZE = Platform::ADDRESS_SIZE / 8
45
+ SIZE = Platform::ADDRESS_SIZE / 8 unless const_defined?(:SIZE)
39
46
 
40
47
  # Return the size of a pointer on the current platform, in bytes
41
48
  # @return [Numeric]
42
49
  def self.size
43
50
  SIZE
44
- end
51
+ end unless respond_to?(:size)
45
52
 
46
53
  # @param [nil,Numeric] len length of string to return
47
54
  # @return [String]
48
- # Read pointer's contents as a string, or the first +len+ bytes of the
55
+ # Read pointer's contents as a string, or the first +len+ bytes of the
49
56
  # equivalent string if +len+ is not +nil+.
50
57
  def read_string(len=nil)
51
58
  if len
@@ -54,7 +61,7 @@ module FFI
54
61
  else
55
62
  get_string(0)
56
63
  end
57
- end
64
+ end unless method_defined?(:read_string)
58
65
 
59
66
  # @param [Numeric] len length of string to return
60
67
  # @return [String]
@@ -64,7 +71,7 @@ module FFI
64
71
  # ptr.read_string(len) # with len not nil
65
72
  def read_string_length(len)
66
73
  get_bytes(0, len)
67
- end
74
+ end unless method_defined?(:read_string_length)
68
75
 
69
76
  # @return [String]
70
77
  # Read pointer's contents as a string.
@@ -73,7 +80,7 @@ module FFI
73
80
  # ptr.read_string # with no len
74
81
  def read_string_to_null
75
82
  get_string(0)
76
- end
83
+ end unless method_defined?(:read_string_to_null)
77
84
 
78
85
  # @param [String] str string to write
79
86
  # @param [Numeric] len length of string to return
@@ -84,18 +91,18 @@ module FFI
84
91
  # ptr.write_string(str, len) # with len not nil
85
92
  def write_string_length(str, len)
86
93
  put_bytes(0, str, 0, len)
87
- end
94
+ end unless method_defined?(:write_string_length)
88
95
 
89
96
  # @param [String] str string to write
90
97
  # @param [Numeric] len length of string to return
91
98
  # @return [self]
92
- # Write +str+ in pointer's contents, or first +len+ bytes if
99
+ # Write +str+ in pointer's contents, or first +len+ bytes if
93
100
  # +len+ is not +nil+.
94
101
  def write_string(str, len=nil)
95
102
  len = str.bytesize unless len
96
103
  # Write the string data without NUL termination
97
104
  put_bytes(0, str, 0, len)
98
- end
105
+ end unless method_defined?(:write_string)
99
106
 
100
107
  # @param [Type] type type of data to read from pointer's contents
101
108
  # @param [Symbol] reader method to send to +self+ to read +type+
@@ -113,7 +120,7 @@ module FFI
113
120
  tmp += size unless j == length-1 # avoid OOB
114
121
  }
115
122
  ary
116
- end
123
+ end unless method_defined?(:read_array_of_type)
117
124
 
118
125
  # @param [Type] type type of data to write to pointer's contents
119
126
  # @param [Symbol] writer method to send to +self+ to write +type+
@@ -129,12 +136,12 @@ module FFI
129
136
  self.send(writer, i * size, val)
130
137
  }
131
138
  self
132
- end
139
+ end unless method_defined?(:write_array_of_type)
133
140
 
134
141
  # @return [self]
135
142
  def to_ptr
136
143
  self
137
- end
144
+ end unless method_defined?(:to_ptr)
138
145
 
139
146
  # @param [Symbol,Type] type of data to read
140
147
  # @return [Object]
@@ -144,7 +151,7 @@ module FFI
144
151
  # ptr.get(type, 0)
145
152
  def read(type)
146
153
  get(type, 0)
147
- end
154
+ end unless method_defined?(:read)
148
155
 
149
156
  # @param [Symbol,Type] type of data to read
150
157
  # @param [Object] value to write
@@ -155,6 +162,6 @@ module FFI
155
162
  # ptr.put(type, 0)
156
163
  def write(type, value)
157
164
  put(type, 0, value)
158
- end
165
+ end unless method_defined?(:write)
159
166
  end
160
167
  end
data/lib/ffi/struct.rb CHANGED
@@ -190,7 +190,7 @@ module FFI
190
190
  # :field2, :pointer, 6, # set offset to 6 for this field
191
191
  # :field3, :string
192
192
  # end
193
- # @example Creating a layout from a hash +spec+ (Ruby 1.9 only)
193
+ # @example Creating a layout from a hash +spec+
194
194
  # class MyStructFromHash < Struct
195
195
  # layout :field1 => :int,
196
196
  # :field2 => :pointer,
@@ -202,9 +202,8 @@ module FFI
202
202
  # :function2, callback([:pointer], :void),
203
203
  # :field3, :string
204
204
  # end
205
- # @note Creating a layout from a hash +spec+ is supported only for Ruby 1.9.
206
205
  def layout(*spec)
207
- #raise RuntimeError, "struct layout already defined for #{self.inspect}" if defined?(@layout)
206
+ warn "[DEPRECATION] Struct layout is already defined for class #{self.inspect}. Redefinition as in #{caller[0]} will be disallowed in ffi-2.0." if defined?(@layout)
208
207
  return @layout if spec.size == 0
209
208
 
210
209
  builder = StructLayoutBuilder.new
@@ -229,7 +228,11 @@ module FFI
229
228
 
230
229
  def callback(params, ret)
231
230
  mod = enclosing_module
232
- FFI::CallbackInfo.new(find_type(ret, mod), params.map { |e| find_type(e, mod) })
231
+ ret_type = find_type(ret, mod)
232
+ if ret_type == Type::STRING
233
+ raise TypeError, ":string is not allowed as return type of callbacks"
234
+ end
235
+ FFI::CallbackInfo.new(ret_type, params.map { |e| find_type(e, mod) })
233
236
  end
234
237
 
235
238
  def packed(packed = 1)
@@ -245,7 +248,9 @@ module FFI
245
248
  def enclosing_module
246
249
  begin
247
250
  mod = self.name.split("::")[0..-2].inject(Object) { |obj, c| obj.const_get(c) }
248
- (mod < FFI::Library || mod < FFI::Struct || mod.respond_to?(:find_type)) ? mod : nil
251
+ if mod.respond_to?(:find_type) && (mod.is_a?(FFI::Library) || mod < FFI::Struct)
252
+ mod
253
+ end
249
254
  rescue Exception
250
255
  nil
251
256
  end
@@ -105,9 +105,10 @@ module FFI
105
105
  # @return [nil]
106
106
  # @raise if a constant is missing and +:required+ was set to +true+ (see {#initialize})
107
107
  def calculate(options = {})
108
- binary = File.join Dir.tmpdir, "rb_const_gen_bin_#{Process.pid}"
108
+ binary_path = nil
109
109
 
110
110
  Tempfile.open("#{@prefix}.const_generator") do |f|
111
+ binary_path = f.path + ".bin"
111
112
  @includes.each do |inc|
112
113
  f.puts "#include <#{inc}>"
113
114
  end
@@ -124,7 +125,8 @@ module FFI
124
125
  f.puts "\n\treturn 0;\n}"
125
126
  f.flush
126
127
 
127
- output = `gcc #{options[:cppflags]} -D_DARWIN_USE_64_BIT_INODE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -x c -Wall -Werror #{f.path} -o #{binary} 2>&1`
128
+ cc = ENV['CC'] || 'gcc'
129
+ output = `#{cc} #{options[:cppflags]} -D_DARWIN_USE_64_BIT_INODE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -x c -Wall -Werror #{f.path} -o #{binary_path} 2>&1`
128
130
 
129
131
  unless $?.success? then
130
132
  output = output.split("\n").map { |l| "\t#{l}" }.join "\n"
@@ -132,8 +134,8 @@ module FFI
132
134
  end
133
135
  end
134
136
 
135
- output = `#{binary}`
136
- File.unlink(binary + (FFI::Platform.windows? ? ".exe" : ""))
137
+ output = `#{binary_path}`
138
+ File.unlink(binary_path + (FFI::Platform.windows? ? ".exe" : ""))
137
139
  output.each_line do |line|
138
140
  line =~ /^(\S+)\s(.*)$/
139
141
  const = @constants[$1]
@@ -82,7 +82,8 @@ module FFI
82
82
  f.puts "\n return 0;\n}"
83
83
  f.flush
84
84
 
85
- output = `gcc #{options[:cppflags]} #{options[:cflags]} -D_DARWIN_USE_64_BIT_INODE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -x c -Wall -Werror #{f.path} -o #{binary} 2>&1`
85
+ cc = ENV['CC'] || 'gcc'
86
+ output = `#{cc} #{options[:cppflags]} #{options[:cflags]} -D_DARWIN_USE_64_BIT_INODE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -x c -Wall -Werror #{f.path} -o #{binary} 2>&1`
86
87
 
87
88
  unless $?.success? then
88
89
  @found = false
@@ -47,9 +47,12 @@ module FFI
47
47
  typedefs = nil
48
48
  Tempfile.open 'ffi_types_generator' do |io|
49
49
  io.puts <<-C
50
+ #include <stdint.h>
51
+ #include <stddef.h>
50
52
  #include <sys/types.h>
51
53
  #if !(defined(WIN32))
52
54
  #include <sys/socket.h>
55
+ #include <netinet/in.h>
53
56
  #include <sys/resource.h>
54
57
  #endif
55
58
  C
@@ -66,7 +69,7 @@ module FFI
66
69
  end
67
70
  end
68
71
 
69
- code = ""
72
+ code = []
70
73
 
71
74
  typedefs.each_line do |type|
72
75
  # We only care about single line typedef
@@ -116,18 +119,18 @@ module FFI
116
119
  end
117
120
 
118
121
  if type = TYPE_MAP[def_type]
119
- code << "rbx.platform.typedef.#{final_type} = #{type}\n"
122
+ code << "rbx.platform.typedef.#{final_type} = #{type}"
120
123
  TYPE_MAP[final_type] = TYPE_MAP[def_type]
121
124
  else
122
125
  # Fallback to an ordinary pointer if we don't know the type
123
126
  if def_type =~ /\*/
124
- code << "rbx.platform.typedef.#{final_type} = pointer\n"
127
+ code << "rbx.platform.typedef.#{final_type} = pointer"
125
128
  TYPE_MAP[final_type] = :pointer
126
129
  end
127
130
  end
128
131
  end
129
132
 
130
- code
133
+ code.sort.join("\n")
131
134
  end
132
135
  end
133
136
  end
data/lib/ffi/variadic.rb CHANGED
@@ -31,16 +31,7 @@
31
31
  #
32
32
 
33
33
  module FFI
34
- class VariadicInvoker
35
- def init(arg_types, type_map)
36
- @fixed = Array.new
37
- @type_map = type_map
38
- arg_types.each_with_index do |type, i|
39
- @fixed << type unless type == Type::VARARGS
40
- end
41
- end
42
-
43
-
34
+ class VariadicInvoker
44
35
  def call(*args, &block)
45
36
  param_types = Array.new(@fixed)
46
37
  param_values = Array.new
data/lib/ffi/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module FFI
2
- VERSION = '1.11.1'
2
+ VERSION = '1.15.5'
3
3
  end
data/lib/ffi.rb CHANGED
@@ -1,5 +1,4 @@
1
- if !defined?(RUBY_ENGINE) || RUBY_ENGINE == 'ruby' || RUBY_ENGINE == 'rbx'
2
- Object.send(:remove_const, :FFI) if defined?(::FFI)
1
+ if RUBY_ENGINE == 'ruby'
3
2
  begin
4
3
  require RUBY_VERSION.split('.')[0, 2].join('.') + '/ffi_c'
5
4
  rescue Exception
@@ -8,7 +7,15 @@ if !defined?(RUBY_ENGINE) || RUBY_ENGINE == 'ruby' || RUBY_ENGINE == 'rbx'
8
7
 
9
8
  require 'ffi/ffi'
10
9
 
11
- elsif defined?(RUBY_ENGINE)
10
+ elsif RUBY_ENGINE == 'jruby' && (RUBY_ENGINE_VERSION.split('.').map(&:to_i) <=> [9, 2, 20]) >= 0
11
+ JRuby::Util.load_ext("org.jruby.ext.ffi.FFIService")
12
+ require 'ffi/ffi'
13
+
14
+ elsif RUBY_ENGINE == 'truffleruby' && (RUBY_ENGINE_VERSION.split('.').map(&:to_i) <=> [20, 1, 0]) >= 0
15
+ require 'truffleruby/ffi_backend'
16
+ require 'ffi/ffi'
17
+
18
+ else
12
19
  # Remove the ffi gem dir from the load path, then reload the internal ffi implementation
13
20
  $LOAD_PATH.delete(File.dirname(__FILE__))
14
21
  $LOAD_PATH.delete(File.join(File.dirname(__FILE__), 'ffi'))
@@ -0,0 +1,65 @@
1
+ require 'bundler'
2
+ require 'bundler/gem_helper'
3
+
4
+ class FfiGemHelper < Bundler::GemHelper
5
+ attr_accessor :cross_platforms
6
+
7
+ def install
8
+ super
9
+
10
+ task "release:guard_clean" => ["release:update_history"]
11
+
12
+ task "release:update_history" do
13
+ update_history
14
+ end
15
+
16
+ task "release:rubygem_push" => ["gem:native", "gem:java"]
17
+ end
18
+
19
+ def hfile
20
+ "CHANGELOG.md"
21
+ end
22
+
23
+ def headline
24
+ '([^\w]*)(\d+\.\d+\.\d+(?:\.\w+)?)([^\w]+)([2Y][0Y][0-9Y][0-9Y]-[0-1M][0-9M]-[0-3D][0-9D])([^\w]*|$)'
25
+ end
26
+
27
+ def reldate
28
+ Time.now.strftime("%Y-%m-%d")
29
+ end
30
+
31
+ def update_history
32
+ hin = File.read(hfile)
33
+ hout = hin.sub(/#{headline}/) do
34
+ raise "#{hfile} isn't up-to-date for version #{version}" unless $2==version.to_s
35
+ $1 + $2 + $3 + reldate + $5
36
+ end
37
+ if hout != hin
38
+ Bundler.ui.confirm "Updating #{hfile} for release."
39
+ File.write(hfile, hout)
40
+ Rake::FileUtilsExt.sh "git", "commit", hfile, "-m", "Update release date in #{hfile}"
41
+ end
42
+ end
43
+
44
+ def tag_version
45
+ Bundler.ui.confirm "Tag release with annotation:"
46
+ m = File.read(hfile).match(/(?<annotation>#{headline}.*?)#{headline}/m) || raise("Unable to find release notes in #{hfile}")
47
+ Bundler.ui.info(m[:annotation].gsub(/^/, " "))
48
+ IO.popen(["git", "tag", "--file=-", version_tag], "w") do |fd|
49
+ fd.write m[:annotation]
50
+ end
51
+ yield if block_given?
52
+ rescue
53
+ Bundler.ui.error "Untagging #{version_tag} due to error."
54
+ sh_with_code "git tag -d #{version_tag}"
55
+ raise
56
+ end
57
+
58
+ def rubygem_push(path)
59
+ cross_platforms.each do |ruby_platform|
60
+ super(path.gsub(/\.gem\z/, "-#{ruby_platform}.gem"))
61
+ end
62
+ super(path.gsub(/\.gem\z/, "-java.gem"))
63
+ super(path)
64
+ end
65
+ end
data/samples/getlogin.rb CHANGED
@@ -1,5 +1,5 @@
1
- require 'rubygems'
2
1
  require 'ffi'
2
+
3
3
  module Foo
4
4
  extend FFI::Library
5
5
  ffi_lib FFI::Library::LIBC
data/samples/getpid.rb CHANGED
@@ -1,5 +1,5 @@
1
- require 'rubygems'
2
1
  require 'ffi'
2
+
3
3
  module Foo
4
4
  extend FFI::Library
5
5
  ffi_lib FFI::Library::LIBC
@@ -1,16 +1,16 @@
1
- require 'rubygems'
2
1
  require 'ffi'
2
+ require 'rbconfig'
3
+
3
4
  class Timeval < FFI::Struct
4
- rb_maj, rb_min, rb_micro = RUBY_VERSION.split('.')
5
- if rb_maj.to_i >= 1 && rb_min.to_i >= 9 || RUBY_PLATFORM =~ /java/
6
- layout :tv_sec => :ulong, :tv_usec => :ulong
7
- else
8
- layout :tv_sec, :ulong, 0, :tv_usec, :ulong, 4
9
- end
5
+ layout tv_sec: :ulong, tv_usec: :ulong
10
6
  end
11
7
  module LibC
12
8
  extend FFI::Library
13
- ffi_lib FFI::Library::LIBC
9
+ if FFI::Platform.windows?
10
+ ffi_lib RbConfig::CONFIG["LIBRUBY_SO"]
11
+ else
12
+ ffi_lib FFI::Library::LIBC
13
+ end
14
14
  attach_function :gettimeofday, [ :pointer, :pointer ], :int
15
15
  end
16
16
  t = Timeval.new
data/samples/hello.rb CHANGED
@@ -1,4 +1,5 @@
1
- require File.expand_path(File.join(File.dirname(__FILE__), "sample_helper"))
1
+ require 'ffi'
2
+
2
3
  module Foo
3
4
  extend FFI::Library
4
5
  ffi_lib FFI::Library::LIBC
data/samples/inotify.rb CHANGED
@@ -1,5 +1,5 @@
1
- require 'rubygems'
2
1
  require 'ffi'
2
+
3
3
  module Inotify
4
4
  extend FFI::Library
5
5
  ffi_lib FFI::Library::LIBC
data/samples/pty.rb CHANGED
@@ -1,6 +1,5 @@
1
1
  require 'ffi'
2
2
 
3
-
4
3
  module PTY
5
4
  private
6
5
  module LibC
@@ -41,7 +40,7 @@ module PTY
41
40
  #
42
41
  exec_cmd, exec_args = build_args(args)
43
42
  pid = LibC.forkpty(mfdp, name, nil, nil)
44
- raise "forkpty failed: #{LibC.strerror(FFI.errno)}" if pid < 0
43
+ raise "forkpty failed: #{LibC.strerror(FFI.errno)}" if pid < 0
45
44
  if pid == 0
46
45
  LibC.execvp(exec_cmd, exec_args)
47
46
  exit 1
data/samples/qsort.rb CHANGED
@@ -1,4 +1,3 @@
1
- require 'rubygems'
2
1
  require 'ffi'
3
2
 
4
3
  module LibC