We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6211aac commit 5d4e193Copy full SHA for 5d4e193
lib/native/linux-x86-64.jar
445 Bytes
test/com/sun/jna/CallbacksTest.java
@@ -43,7 +43,8 @@ public class CallbacksTest extends TestCase implements Paths {
43
// not attached, and the JVM never unmaps the defunct native thread. In
44
// order to avoid this situation causing tests to time out, we need to
45
// explicitly detach the native thread after our Java code is done with it.
46
- private static final boolean THREAD_DETACH_BUG = Platform.isMac();
+ // Also reproducible on Ubuntu 6 (x86-64), Java 6
47
+ private static final boolean THREAD_DETACH_BUG = Platform.isMac() || (Platform.isLinux() && Platform.is64Bit());
48
49
private static final String UNICODE = "[\u0444]";
50
0 commit comments