ffi 1.13.1 → 1.14.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (96) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +25 -0
  3. data/README.md +10 -2
  4. data/ext/ffi_c/AbstractMemory.c +25 -26
  5. data/ext/ffi_c/Buffer.c +2 -7
  6. data/ext/ffi_c/Call.c +2 -7
  7. data/ext/ffi_c/ClosurePool.c +64 -11
  8. data/ext/ffi_c/ClosurePool.h +3 -1
  9. data/ext/ffi_c/DynamicLibrary.c +1 -6
  10. data/ext/ffi_c/Function.c +8 -13
  11. data/ext/ffi_c/FunctionInfo.c +2 -6
  12. data/ext/ffi_c/LastError.c +2 -6
  13. data/ext/ffi_c/MemoryPointer.c +2 -7
  14. data/ext/ffi_c/MethodHandle.c +4 -8
  15. data/ext/ffi_c/Platform.c +2 -7
  16. data/ext/ffi_c/Pointer.c +24 -25
  17. data/ext/ffi_c/Struct.c +3 -6
  18. data/ext/ffi_c/StructByValue.c +2 -7
  19. data/ext/ffi_c/StructLayout.c +2 -5
  20. data/ext/ffi_c/Thread.c +0 -5
  21. data/ext/ffi_c/Thread.h +1 -6
  22. data/ext/ffi_c/Type.c +1 -1
  23. data/ext/ffi_c/Variadic.c +2 -7
  24. data/ext/ffi_c/extconf.rb +17 -4
  25. data/ext/ffi_c/libffi/.travis/bfin-sim.exp +1 -1
  26. data/ext/ffi_c/libffi/.travis/m32r-sim.exp +1 -1
  27. data/ext/ffi_c/libffi/.travis/moxie-sim.exp +1 -1
  28. data/ext/ffi_c/libffi/.travis/or1k-sim.exp +1 -1
  29. data/ext/ffi_c/libffi/.travis/powerpc-eabisim.exp +1 -1
  30. data/ext/ffi_c/libffi/.travis/wine-sim.exp +1 -1
  31. data/ext/ffi_c/libffi/Makefile.am +48 -58
  32. data/ext/ffi_c/libffi/README.md +4 -0
  33. data/ext/ffi_c/libffi/config.guess +552 -331
  34. data/ext/ffi_c/libffi/config.sub +1321 -1306
  35. data/ext/ffi_c/libffi/configure.ac +6 -1
  36. data/ext/ffi_c/libffi/configure.host +32 -20
  37. data/ext/ffi_c/libffi/doc/Makefile.am +3 -0
  38. data/ext/ffi_c/libffi/doc/libffi.texi +997 -0
  39. data/ext/ffi_c/libffi/doc/version.texi +4 -0
  40. data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +1 -1
  41. data/ext/ffi_c/libffi/msvcc.sh +11 -11
  42. data/ext/ffi_c/libffi/src/aarch64/ffi.c +45 -35
  43. data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +10 -5
  44. data/ext/ffi_c/libffi/src/aarch64/internal.h +1 -0
  45. data/ext/ffi_c/libffi/src/aarch64/sysv.S +1 -1
  46. data/ext/ffi_c/libffi/src/aarch64/win64_armasm.S +1 -1
  47. data/ext/ffi_c/libffi/src/arm/ffi.c +22 -0
  48. data/ext/ffi_c/libffi/src/arm/sysv.S +4 -4
  49. data/ext/ffi_c/libffi/src/closures.c +23 -6
  50. data/ext/ffi_c/libffi/src/csky/ffi.c +395 -0
  51. data/ext/ffi_c/libffi/src/csky/ffitarget.h +63 -0
  52. data/ext/ffi_c/libffi/src/csky/sysv.S +371 -0
  53. data/ext/ffi_c/libffi/src/dlmalloc.c +1 -1
  54. data/ext/ffi_c/libffi/src/kvx/asm.h +5 -0
  55. data/ext/ffi_c/libffi/src/kvx/ffi.c +273 -0
  56. data/ext/ffi_c/libffi/src/kvx/ffitarget.h +75 -0
  57. data/ext/ffi_c/libffi/src/kvx/sysv.S +127 -0
  58. data/ext/ffi_c/libffi/src/mips/ffi.c +5 -1
  59. data/ext/ffi_c/libffi/src/mips/ffitarget.h +1 -1
  60. data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +13 -1
  61. data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +1 -1
  62. data/ext/ffi_c/libffi/src/powerpc/linux64.S +8 -0
  63. data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +13 -1
  64. data/ext/ffi_c/libffi/src/prep_cif.c +1 -1
  65. data/ext/ffi_c/libffi/src/x86/ffi.c +8 -2
  66. data/ext/ffi_c/libffi/src/x86/ffi64.c +7 -0
  67. data/ext/ffi_c/libffi/src/x86/ffiw64.c +5 -0
  68. data/ext/ffi_c/libffi/src/x86/sysv.S +2 -2
  69. data/ext/ffi_c/libffi/src/x86/unix64.S +1 -2
  70. data/ext/ffi_c/libffi/src/x86/win64.S +3 -2
  71. data/ext/ffi_c/libffi/src/x86/win64_intel.S +3 -2
  72. data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +22 -2
  73. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +4 -4
  74. data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2 -2
  75. data/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +2 -0
  76. data/ffi.gemspec +1 -1
  77. data/lib/ffi.rb +2 -2
  78. data/lib/ffi/abstract_memory.rb +44 -0
  79. data/lib/ffi/ffi.rb +1 -0
  80. data/lib/ffi/library.rb +1 -1
  81. data/lib/ffi/platform.rb +15 -6
  82. data/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
  83. data/lib/ffi/platform/aarch64-openbsd/types.conf +134 -0
  84. data/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
  85. data/lib/ffi/platform/x86_64-msys/types.conf +119 -0
  86. data/lib/ffi/pointer.rb +21 -7
  87. data/lib/ffi/version.rb +1 -1
  88. metadata +15 -11
  89. data/.appveyor.yml +0 -30
  90. data/.github/workflows/ci.yml +0 -64
  91. data/.gitignore +0 -25
  92. data/.gitmodules +0 -4
  93. data/.travis.yml +0 -58
  94. data/.yardopts +0 -5
  95. data/ext/ffi_c/win32/stdbool.h +0 -8
  96. data/ext/ffi_c/win32/stdint.h +0 -201
@@ -0,0 +1,134 @@
1
+ rbx.platform.typedef.__blkcnt_t = long_long
2
+ rbx.platform.typedef.__blksize_t = int
3
+ rbx.platform.typedef.__clock_t = long_long
4
+ rbx.platform.typedef.__clockid_t = int
5
+ rbx.platform.typedef.__cpuid_t = ulong
6
+ rbx.platform.typedef.__dev_t = int
7
+ rbx.platform.typedef.__fd_mask = uint
8
+ rbx.platform.typedef.__fixpt_t = uint
9
+ rbx.platform.typedef.__fsblkcnt_t = ulong_long
10
+ rbx.platform.typedef.__fsfilcnt_t = ulong_long
11
+ rbx.platform.typedef.__gid_t = uint
12
+ rbx.platform.typedef.__id_t = uint
13
+ rbx.platform.typedef.__in_addr_t = uint
14
+ rbx.platform.typedef.__in_port_t = ushort
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
30
+ rbx.platform.typedef.__key_t = long
31
+ rbx.platform.typedef.__mode_t = uint
32
+ rbx.platform.typedef.__nlink_t = uint
33
+ rbx.platform.typedef.__off_t = long_long
34
+ rbx.platform.typedef.__paddr_t = ulong
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
39
+ rbx.platform.typedef.__rlim_t = ulong_long
40
+ rbx.platform.typedef.__rune_t = int
41
+ rbx.platform.typedef.__sa_family_t = uchar
42
+ rbx.platform.typedef.__segsz_t = int
43
+ rbx.platform.typedef.__size_t = ulong
44
+ rbx.platform.typedef.__socklen_t = uint
45
+ rbx.platform.typedef.__ssize_t = long
46
+ rbx.platform.typedef.__suseconds_t = long
47
+ rbx.platform.typedef.__swblk_t = int
48
+ rbx.platform.typedef.__time_t = long_long
49
+ rbx.platform.typedef.__timer_t = int
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
65
+ rbx.platform.typedef.__useconds_t = uint
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
72
+ rbx.platform.typedef.blkcnt_t = long_long
73
+ rbx.platform.typedef.blksize_t = int
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
78
+ rbx.platform.typedef.daddr32_t = int
79
+ rbx.platform.typedef.daddr_t = long_long
80
+ rbx.platform.typedef.dev_t = int
81
+ rbx.platform.typedef.fixpt_t = uint
82
+ rbx.platform.typedef.fsblkcnt_t = ulong_long
83
+ rbx.platform.typedef.fsfilcnt_t = ulong_long
84
+ rbx.platform.typedef.gid_t = uint
85
+ rbx.platform.typedef.id_t = uint
86
+ rbx.platform.typedef.in_addr_t = uint
87
+ rbx.platform.typedef.in_port_t = ushort
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
93
+ rbx.platform.typedef.key_t = long
94
+ rbx.platform.typedef.mode_t = uint
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
103
+ rbx.platform.typedef.rlim_t = ulong_long
104
+ rbx.platform.typedef.sa_family_t = uchar
105
+ rbx.platform.typedef.segsz_t = int
106
+ rbx.platform.typedef.sigset_t = uint
107
+ rbx.platform.typedef.size_t = ulong
108
+ rbx.platform.typedef.socklen_t = uint
109
+ rbx.platform.typedef.ssize_t = long
110
+ rbx.platform.typedef.suseconds_t = long
111
+ rbx.platform.typedef.swblk_t = int
112
+ rbx.platform.typedef.time_t = long_long
113
+ rbx.platform.typedef.timer_t = int
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
@@ -0,0 +1,117 @@
1
+ rbx.platform.typedef.__haiku_addr_t = ulong
2
+ rbx.platform.typedef.__haiku_generic_addr_t = ulong
3
+ rbx.platform.typedef.__haiku_int16 = short
4
+ rbx.platform.typedef.__haiku_int32 = int
5
+ rbx.platform.typedef.__haiku_int64 = long
6
+ rbx.platform.typedef.__haiku_int8 = char
7
+ rbx.platform.typedef.__haiku_phys_addr_t = ulong
8
+ rbx.platform.typedef.__haiku_phys_saddr_t = long
9
+ rbx.platform.typedef.__haiku_saddr_t = long
10
+ rbx.platform.typedef.__haiku_std_int16 = short
11
+ rbx.platform.typedef.__haiku_std_int32 = int
12
+ rbx.platform.typedef.__haiku_std_int64 = long
13
+ rbx.platform.typedef.__haiku_std_int8 = char
14
+ rbx.platform.typedef.__haiku_std_uint16 = ushort
15
+ rbx.platform.typedef.__haiku_std_uint32 = uint
16
+ rbx.platform.typedef.__haiku_std_uint64 = ulong
17
+ rbx.platform.typedef.__haiku_std_uint8 = uchar
18
+ rbx.platform.typedef.__haiku_uint16 = ushort
19
+ rbx.platform.typedef.__haiku_uint32 = uint
20
+ rbx.platform.typedef.__haiku_uint64 = ulong
21
+ rbx.platform.typedef.__haiku_uint8 = uchar
22
+ rbx.platform.typedef.addr_t = ulong
23
+ rbx.platform.typedef.bigtime_t = long
24
+ rbx.platform.typedef.blkcnt_t = long
25
+ rbx.platform.typedef.blksize_t = int
26
+ rbx.platform.typedef.caddr_t = pointer
27
+ rbx.platform.typedef.clock_t = int
28
+ rbx.platform.typedef.clockid_t = int
29
+ rbx.platform.typedef.cnt_t = int
30
+ rbx.platform.typedef.daddr_t = long
31
+ rbx.platform.typedef.dev_t = int
32
+ rbx.platform.typedef.fd_mask = uint
33
+ rbx.platform.typedef.fsblkcnt_t = long
34
+ rbx.platform.typedef.fsfilcnt_t = long
35
+ rbx.platform.typedef.generic_addr_t = ulong
36
+ rbx.platform.typedef.generic_size_t = ulong
37
+ rbx.platform.typedef.gid_t = uint
38
+ rbx.platform.typedef.id_t = int
39
+ rbx.platform.typedef.in_addr_t = uint
40
+ rbx.platform.typedef.in_port_t = ushort
41
+ rbx.platform.typedef.ino_t = long
42
+ rbx.platform.typedef.int16 = short
43
+ rbx.platform.typedef.int16_t = short
44
+ rbx.platform.typedef.int32 = int
45
+ rbx.platform.typedef.int32_t = int
46
+ rbx.platform.typedef.int64 = long
47
+ rbx.platform.typedef.int64_t = long
48
+ rbx.platform.typedef.int8 = char
49
+ rbx.platform.typedef.int8_t = char
50
+ rbx.platform.typedef.int_fast16_t = int
51
+ rbx.platform.typedef.int_fast32_t = int
52
+ rbx.platform.typedef.int_fast64_t = long
53
+ rbx.platform.typedef.int_fast8_t = int
54
+ rbx.platform.typedef.int_least16_t = short
55
+ rbx.platform.typedef.int_least32_t = int
56
+ rbx.platform.typedef.int_least64_t = long
57
+ rbx.platform.typedef.int_least8_t = char
58
+ rbx.platform.typedef.intmax_t = long
59
+ rbx.platform.typedef.intptr_t = long
60
+ rbx.platform.typedef.key_t = int
61
+ rbx.platform.typedef.mode_t = uint
62
+ rbx.platform.typedef.nanotime_t = long
63
+ rbx.platform.typedef.nlink_t = int
64
+ rbx.platform.typedef.off_t = long
65
+ rbx.platform.typedef.perform_code = uint
66
+ rbx.platform.typedef.phys_addr_t = ulong
67
+ rbx.platform.typedef.phys_size_t = ulong
68
+ rbx.platform.typedef.pid_t = int
69
+ rbx.platform.typedef.pthread_key_t = int
70
+ rbx.platform.typedef.ptrdiff_t = long
71
+ rbx.platform.typedef.rlim_t = ulong
72
+ rbx.platform.typedef.sa_family_t = uchar
73
+ rbx.platform.typedef.sig_atomic_t = int
74
+ rbx.platform.typedef.sigset_t = ulong
75
+ rbx.platform.typedef.size_t = ulong
76
+ rbx.platform.typedef.socklen_t = uint
77
+ rbx.platform.typedef.status_t = int
78
+ rbx.platform.typedef.suseconds_t = int
79
+ rbx.platform.typedef.time_t = long
80
+ rbx.platform.typedef.type_code = uint
81
+ rbx.platform.typedef.u_char = uchar
82
+ rbx.platform.typedef.u_int = uint
83
+ rbx.platform.typedef.u_int16_t = ushort
84
+ rbx.platform.typedef.u_int32_t = uint
85
+ rbx.platform.typedef.u_int64_t = ulong
86
+ rbx.platform.typedef.u_int8_t = uchar
87
+ rbx.platform.typedef.u_long = ulong
88
+ rbx.platform.typedef.u_short = ushort
89
+ rbx.platform.typedef.uchar = uchar
90
+ rbx.platform.typedef.uid_t = uint
91
+ rbx.platform.typedef.uint = uint
92
+ rbx.platform.typedef.uint16 = ushort
93
+ rbx.platform.typedef.uint16_t = ushort
94
+ rbx.platform.typedef.uint32 = uint
95
+ rbx.platform.typedef.uint32_t = uint
96
+ rbx.platform.typedef.uint64 = ulong
97
+ rbx.platform.typedef.uint64_t = ulong
98
+ rbx.platform.typedef.uint8 = uchar
99
+ rbx.platform.typedef.uint8_t = uchar
100
+ rbx.platform.typedef.uint_fast16_t = uint
101
+ rbx.platform.typedef.uint_fast32_t = uint
102
+ rbx.platform.typedef.uint_fast64_t = ulong
103
+ rbx.platform.typedef.uint_fast8_t = uint
104
+ rbx.platform.typedef.uint_least16_t = ushort
105
+ rbx.platform.typedef.uint_least32_t = uint
106
+ rbx.platform.typedef.uint_least64_t = ulong
107
+ rbx.platform.typedef.uint_least8_t = uchar
108
+ rbx.platform.typedef.uintmax_t = ulong
109
+ rbx.platform.typedef.uintptr_t = ulong
110
+ rbx.platform.typedef.ulong = ulong
111
+ rbx.platform.typedef.umode_t = uint
112
+ rbx.platform.typedef.unchar = uchar
113
+ rbx.platform.typedef.unichar = ushort
114
+ rbx.platform.typedef.useconds_t = uint
115
+ rbx.platform.typedef.ushort = ushort
116
+ rbx.platform.typedef.void*) = pointer
117
+ rbx.platform.typedef.wchar_t = int
@@ -0,0 +1,119 @@
1
+ rbx.platform.typedef.*addr_t = char
2
+ rbx.platform.typedef.__ULong = uint
3
+ rbx.platform.typedef.__blkcnt_t = long
4
+ rbx.platform.typedef.__blksize_t = int
5
+ rbx.platform.typedef.__clock_t = ulong
6
+ rbx.platform.typedef.__clockid_t = ulong
7
+ rbx.platform.typedef.__cpu_mask = ulong
8
+ rbx.platform.typedef.__dev_t = uint
9
+ rbx.platform.typedef.__fsblkcnt_t = ulong
10
+ rbx.platform.typedef.__fsfilcnt_t = ulong
11
+ rbx.platform.typedef.__gid_t = uint
12
+ rbx.platform.typedef.__id_t = uint
13
+ rbx.platform.typedef.__ino_t = ulong
14
+ rbx.platform.typedef.__int32_t = int
15
+ rbx.platform.typedef.__int64_t = long
16
+ rbx.platform.typedef.__int8_t = char
17
+ rbx.platform.typedef.__int_least32_t = int
18
+ rbx.platform.typedef.__int_least64_t = long
19
+ rbx.platform.typedef.__int_least8_t = char
20
+ rbx.platform.typedef.__intmax_t = long
21
+ rbx.platform.typedef.__intptr_t = long
22
+ rbx.platform.typedef.__key_t = long_long
23
+ rbx.platform.typedef.__loff_t = long_long
24
+ rbx.platform.typedef.__mode_t = uint
25
+ rbx.platform.typedef.__nl_item = int
26
+ rbx.platform.typedef.__nlink_t = ushort
27
+ rbx.platform.typedef.__off_t = long
28
+ rbx.platform.typedef.__pid_t = int
29
+ rbx.platform.typedef.__sigset_t = ulong
30
+ rbx.platform.typedef.__size_t = ulong
31
+ rbx.platform.typedef.__socklen_t = int
32
+ rbx.platform.typedef.__suseconds_t = long
33
+ rbx.platform.typedef.__time_t = long
34
+ rbx.platform.typedef.__timer_t = ulong
35
+ rbx.platform.typedef.__uid_t = uint
36
+ rbx.platform.typedef.__uint32_t = uint
37
+ rbx.platform.typedef.__uint64_t = ulong
38
+ rbx.platform.typedef.__uint8_t = uchar
39
+ rbx.platform.typedef.__uint_least32_t = uint
40
+ rbx.platform.typedef.__uint_least64_t = ulong
41
+ rbx.platform.typedef.__uint_least8_t = uchar
42
+ rbx.platform.typedef.__uintmax_t = ulong
43
+ rbx.platform.typedef.__uintptr_t = ulong
44
+ rbx.platform.typedef.__useconds_t = ulong
45
+ rbx.platform.typedef._fpos64_t = long_long
46
+ rbx.platform.typedef._fpos_t = long
47
+ rbx.platform.typedef._off64_t = long_long
48
+ rbx.platform.typedef._off_t = long
49
+ rbx.platform.typedef.blkcnt_t = long
50
+ rbx.platform.typedef.blksize_t = int
51
+ rbx.platform.typedef.caddr_t = string
52
+ rbx.platform.typedef.clock_t = ulong
53
+ rbx.platform.typedef.clockid_t = ulong
54
+ rbx.platform.typedef.daddr_t = long
55
+ rbx.platform.typedef.dev_t = uint
56
+ rbx.platform.typedef.fd_mask = ulong
57
+ rbx.platform.typedef.fsblkcnt_t = ulong
58
+ rbx.platform.typedef.fsfilcnt_t = ulong
59
+ rbx.platform.typedef.gid_t = uint
60
+ rbx.platform.typedef.id_t = uint
61
+ rbx.platform.typedef.in_addr_t = uint
62
+ rbx.platform.typedef.ino_t = ulong
63
+ rbx.platform.typedef.int32_t = int
64
+ rbx.platform.typedef.int64_t = long
65
+ rbx.platform.typedef.int8_t = char
66
+ rbx.platform.typedef.int_fast16_t = long
67
+ rbx.platform.typedef.int_fast32_t = long
68
+ rbx.platform.typedef.int_fast64_t = long
69
+ rbx.platform.typedef.int_fast8_t = char
70
+ rbx.platform.typedef.int_least32_t = int
71
+ rbx.platform.typedef.int_least64_t = long
72
+ rbx.platform.typedef.int_least8_t = char
73
+ rbx.platform.typedef.intmax_t = long
74
+ rbx.platform.typedef.intptr_t = long
75
+ rbx.platform.typedef.key_t = long_long
76
+ rbx.platform.typedef.loff_t = long_long
77
+ rbx.platform.typedef.mode_t = uint
78
+ rbx.platform.typedef.nlink_t = ushort
79
+ rbx.platform.typedef.off_t = long
80
+ rbx.platform.typedef.pid_t = int
81
+ rbx.platform.typedef.ptrdiff_t = long
82
+ rbx.platform.typedef.register_t = long
83
+ rbx.platform.typedef.rlim_t = ulong
84
+ rbx.platform.typedef.sbintime_t = long
85
+ rbx.platform.typedef.sig_atomic_t = int
86
+ rbx.platform.typedef.sigset_t = ulong
87
+ rbx.platform.typedef.size_t = ulong
88
+ rbx.platform.typedef.socklen_t = int
89
+ rbx.platform.typedef.suseconds_t = long
90
+ rbx.platform.typedef.time_t = long
91
+ rbx.platform.typedef.timer_t = ulong
92
+ rbx.platform.typedef.u_char = uchar
93
+ rbx.platform.typedef.u_int = uint
94
+ rbx.platform.typedef.u_int32_t = uint
95
+ rbx.platform.typedef.u_int64_t = ulong
96
+ rbx.platform.typedef.u_int8_t = uchar
97
+ rbx.platform.typedef.u_long = ulong
98
+ rbx.platform.typedef.u_register_t = ulong
99
+ rbx.platform.typedef.u_short = ushort
100
+ rbx.platform.typedef.uid_t = uint
101
+ rbx.platform.typedef.uint = uint
102
+ rbx.platform.typedef.uint32_t = uint
103
+ rbx.platform.typedef.uint64_t = ulong
104
+ rbx.platform.typedef.uint8_t = uchar
105
+ rbx.platform.typedef.uint_fast16_t = ulong
106
+ rbx.platform.typedef.uint_fast32_t = ulong
107
+ rbx.platform.typedef.uint_fast64_t = ulong
108
+ rbx.platform.typedef.uint_fast8_t = uchar
109
+ rbx.platform.typedef.uint_least32_t = uint
110
+ rbx.platform.typedef.uint_least64_t = ulong
111
+ rbx.platform.typedef.uint_least8_t = uchar
112
+ rbx.platform.typedef.uintmax_t = ulong
113
+ rbx.platform.typedef.uintptr_t = ulong
114
+ rbx.platform.typedef.ulong = ulong
115
+ rbx.platform.typedef.useconds_t = ulong
116
+ rbx.platform.typedef.ushort = ushort
117
+ rbx.platform.typedef.vm_offset_t = ulong
118
+ rbx.platform.typedef.vm_size_t = ulong
119
+ rbx.platform.typedef.wint_t = uint
@@ -85,23 +85,37 @@ module FFI
85
85
  # @param [String] str string to write
86
86
  # @param [Numeric] len length of string to return
87
87
  # @return [self]
88
- # Write +len+ first bytes of +str+ in pointer's contents.
88
+ # Write +len+ first bytes of +str+ in pointer's contents and a final \0 byte.
89
89
  #
90
90
  # Same as:
91
91
  # ptr.write_string(str, len) # with len not nil
92
92
  def write_string_length(str, len)
93
- put_bytes(0, str, 0, len)
93
+ write_string(str, len)
94
94
  end unless method_defined?(:write_string_length)
95
95
 
96
96
  # @param [String] str string to write
97
97
  # @param [Numeric] len length of string to return
98
98
  # @return [self]
99
- # Write +str+ in pointer's contents, or first +len+ bytes if
100
- # +len+ is not +nil+.
99
+ # Write +str+ in pointer's contents.
100
+ # If +len+ is given, write the first +len+ bytes of +str+.
101
+ # In both cases a final \0 byte is written after the string.
101
102
  def write_string(str, len=nil)
102
- len = str.bytesize unless len
103
- # Write the string data without NUL termination
104
- put_bytes(0, str, 0, len)
103
+ if len
104
+ if len == size
105
+ warn "[DEPRECATION] Memory too small to write a final 0-byte in #{caller(1, 1)[0]}. This will raise an error in ffi-2.0. Please use write_bytes instead or enlarge the memory region."
106
+ write_bytes(str, 0, len)
107
+ else
108
+ put_char(len, 0) # Check size before writing str
109
+ write_bytes(str, 0, len)
110
+ end
111
+ else
112
+ if str.bytesize == size
113
+ warn "[DEPRECATION] Memory too small to write a final 0-byte in #{caller(1, 1)[0]}. This will raise an error in ffi-2.0. Please use write_bytes instead or enlarge the memory region."
114
+ write_bytes(str)
115
+ else
116
+ put_string(0, str)
117
+ end
118
+ end
105
119
  end unless method_defined?(:write_string)
106
120
 
107
121
  # @param [Type] type type of data to read from pointer's contents
@@ -1,3 +1,3 @@
1
1
  module FFI
2
- VERSION = '1.13.1'
2
+ VERSION = '1.14.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ffi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.1
4
+ version: 1.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wayne Meissner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-09 00:00:00.000000000 Z
11
+ date: 2020-12-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -87,12 +87,6 @@ extensions:
87
87
  - ext/ffi_c/extconf.rb
88
88
  extra_rdoc_files: []
89
89
  files:
90
- - ".appveyor.yml"
91
- - ".github/workflows/ci.yml"
92
- - ".gitignore"
93
- - ".gitmodules"
94
- - ".travis.yml"
95
- - ".yardopts"
96
90
  - CHANGELOG.md
97
91
  - COPYING
98
92
  - Gemfile
@@ -251,6 +245,9 @@ files:
251
245
  - ext/ffi_c/libffi/src/cris/ffi.c
252
246
  - ext/ffi_c/libffi/src/cris/ffitarget.h
253
247
  - ext/ffi_c/libffi/src/cris/sysv.S
248
+ - ext/ffi_c/libffi/src/csky/ffi.c
249
+ - ext/ffi_c/libffi/src/csky/ffitarget.h
250
+ - ext/ffi_c/libffi/src/csky/sysv.S
254
251
  - ext/ffi_c/libffi/src/debug.c
255
252
  - ext/ffi_c/libffi/src/dlmalloc.c
256
253
  - ext/ffi_c/libffi/src/frv/eabi.S
@@ -261,6 +258,10 @@ files:
261
258
  - ext/ffi_c/libffi/src/ia64/ia64_flags.h
262
259
  - ext/ffi_c/libffi/src/ia64/unix.S
263
260
  - ext/ffi_c/libffi/src/java_raw_api.c
261
+ - ext/ffi_c/libffi/src/kvx/asm.h
262
+ - ext/ffi_c/libffi/src/kvx/ffi.c
263
+ - ext/ffi_c/libffi/src/kvx/ffitarget.h
264
+ - ext/ffi_c/libffi/src/kvx/sysv.S
264
265
  - ext/ffi_c/libffi/src/m32r/ffi.c
265
266
  - ext/ffi_c/libffi/src/m32r/ffitarget.h
266
267
  - ext/ffi_c/libffi/src/m32r/sysv.S
@@ -565,10 +566,9 @@ files:
565
566
  - ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h
566
567
  - ext/ffi_c/rbffi.h
567
568
  - ext/ffi_c/rbffi_endian.h
568
- - ext/ffi_c/win32/stdbool.h
569
- - ext/ffi_c/win32/stdint.h
570
569
  - ffi.gemspec
571
570
  - lib/ffi.rb
571
+ - lib/ffi/abstract_memory.rb
572
572
  - lib/ffi/autopointer.rb
573
573
  - lib/ffi/buffer.rb
574
574
  - lib/ffi/callback.rb
@@ -581,9 +581,11 @@ files:
581
581
  - lib/ffi/managedstruct.rb
582
582
  - lib/ffi/memorypointer.rb
583
583
  - lib/ffi/platform.rb
584
+ - lib/ffi/platform/aarch64-darwin/types.conf
584
585
  - lib/ffi/platform/aarch64-freebsd/types.conf
585
586
  - lib/ffi/platform/aarch64-freebsd12/types.conf
586
587
  - lib/ffi/platform/aarch64-linux/types.conf
588
+ - lib/ffi/platform/aarch64-openbsd/types.conf
587
589
  - lib/ffi/platform/arm-freebsd/types.conf
588
590
  - lib/ffi/platform/arm-freebsd12/types.conf
589
591
  - lib/ffi/platform/arm-linux/types.conf
@@ -623,7 +625,9 @@ files:
623
625
  - lib/ffi/platform/x86_64-dragonflybsd/types.conf
624
626
  - lib/ffi/platform/x86_64-freebsd/types.conf
625
627
  - lib/ffi/platform/x86_64-freebsd12/types.conf
628
+ - lib/ffi/platform/x86_64-haiku/types.conf
626
629
  - lib/ffi/platform/x86_64-linux/types.conf
630
+ - lib/ffi/platform/x86_64-msys/types.conf
627
631
  - lib/ffi/platform/x86_64-netbsd/types.conf
628
632
  - lib/ffi/platform/x86_64-openbsd/types.conf
629
633
  - lib/ffi/platform/x86_64-solaris/types.conf
@@ -676,7 +680,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
676
680
  - !ruby/object:Gem::Version
677
681
  version: '0'
678
682
  requirements: []
679
- rubygems_version: 3.1.2
683
+ rubygems_version: 3.1.4
680
684
  signing_key:
681
685
  specification_version: 4
682
686
  summary: Ruby FFI