ffi 1.1.0-x86-mingw32 → 1.1.1-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of ffi might be problematic. Click here for more details.
- data/Rakefile +1 -1
- data/ext/ffi_c/Buffer.c +1 -1
- data/ext/ffi_c/MethodHandle.c +2 -2
- data/ext/ffi_c/Platform.c +1 -1
- data/ext/ffi_c/Pointer.c +1 -1
- data/ext/ffi_c/Struct.c +0 -1
- data/ext/ffi_c/extconf.rb +0 -1
- data/ext/ffi_c/{endian.h → rbffi_endian.h} +1 -1
- data/lib/1.8/ffi_c.so +0 -0
- data/lib/1.9/ffi_c.so +0 -0
- metadata +5 -5
data/Rakefile
CHANGED
data/ext/ffi_c/Buffer.c
CHANGED
data/ext/ffi_c/MethodHandle.c
CHANGED
@@ -200,7 +200,7 @@ static VALUE custom_trampoline(int argc, VALUE* argv, VALUE self, Closure*);
|
|
200
200
|
*
|
201
201
|
* This results in approx a 30% speedup for x86_64 FFI dispatch
|
202
202
|
*/
|
203
|
-
|
203
|
+
__asm__(
|
204
204
|
".text\n\t"
|
205
205
|
".globl ffi_trampoline\n\t"
|
206
206
|
".globl _ffi_trampoline\n\t"
|
@@ -241,7 +241,7 @@ static VALUE custom_trampoline(caddr_t args, Closure*);
|
|
241
241
|
* This does not make a discernable difference vs a raw closure, so for now,
|
242
242
|
* it is not enabled.
|
243
243
|
*/
|
244
|
-
|
244
|
+
__asm__(
|
245
245
|
".text\n\t"
|
246
246
|
".globl ffi_trampoline\n\t"
|
247
247
|
".globl _ffi_trampoline\n\t"
|
data/ext/ffi_c/Platform.c
CHANGED
data/ext/ffi_c/Pointer.c
CHANGED
data/ext/ffi_c/Struct.c
CHANGED
data/ext/ffi_c/extconf.rb
CHANGED
data/lib/1.8/ffi_c.so
CHANGED
Binary file
|
data/lib/1.9/ffi_c.so
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ffi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 17
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 1.1.
|
9
|
+
- 1
|
10
|
+
version: 1.1.1
|
11
11
|
platform: x86-mingw32
|
12
12
|
authors:
|
13
13
|
- Wayne Meissner
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2012-07-
|
18
|
+
date: 2012-07-28 00:00:00 +10:00
|
19
19
|
default_executable:
|
20
20
|
dependencies: []
|
21
21
|
|
@@ -51,7 +51,6 @@ files:
|
|
51
51
|
- ext/ffi_c/DataConverter.c
|
52
52
|
- ext/ffi_c/DynamicLibrary.c
|
53
53
|
- ext/ffi_c/DynamicLibrary.h
|
54
|
-
- ext/ffi_c/endian.h
|
55
54
|
- ext/ffi_c/extconf.rb
|
56
55
|
- ext/ffi_c/ffi.c
|
57
56
|
- ext/ffi_c/Function.c
|
@@ -349,6 +348,7 @@ files:
|
|
349
348
|
- ext/ffi_c/Pointer.c
|
350
349
|
- ext/ffi_c/Pointer.h
|
351
350
|
- ext/ffi_c/rbffi.h
|
351
|
+
- ext/ffi_c/rbffi_endian.h
|
352
352
|
- ext/ffi_c/Struct.c
|
353
353
|
- ext/ffi_c/Struct.h
|
354
354
|
- ext/ffi_c/StructByReference.c
|