JVM Crashing
keoir opened this issue · 16 comments
A fatal error has been detected by the Java Runtime Environment:
SIGILL (0x4) at pc=0xaa50a1c8, pid=27501, tid=0xb5233460
JRE version: OpenJDK Runtime Environment (8.0_272-b10) (build 1.8.0_272-b10)
Java VM: OpenJDK Client VM (25.272-b10 mixed mode linux-aarch32 )
Problematic frame:
C [libJavaCAN.so+0x21c8]
A fatal error has been detected by the Java Runtime Environment:
SIGILL (0x4) at pc=0xaa50a1c8, pid=27501, tid=0xb5233460
JRE version: OpenJDK Runtime Environment (8.0_272-b10) (build 1.8.0_272-b10)
Java VM: OpenJDK Client VM (25.272-b10 mixed mode linux-aarch32 )
Problematic frame:
C [libJavaCAN.so+0x21c8]
Crashing the JVM when it is using the .so file. On a BeagleBone Black Debian OS.
is it possible to get a full stacktrace?
easiest would be the JVM's crash file, if one exists.
Also SIGILL makes me wonder if it selected the right library for the architecture (ARMv7 from what I've seen) or if something like seccomp might be blocking syscalls here? For the latter I definitely need more information about where the crash occurred..
Hi,
according to this dockcross/dockcross#290 and https://github.com/dockcross/dockcross/tree/master/linux-armv7a the target for beaglebone would be armv7a not armv7, maybe that is the problem?
If you have time @keoir, you might try your luck with this: psobiech@76413e9 (it is not a fix, since it would break raspberry pi / armv7, but if that works then we would be able to work to add proper support for beaglebone.
For that we would need System.getProperty("os.arch") from beaglebone or other way to be able to detect it.
Sadly, I do not have this board to verify this claim.
If I knew what I can check for in os.arch, this would probably be easy to solve. Definitely sounds like a plausible explanation.
In the context of #23 I thought about adding an alternative way to load the native library instead of using the architecture detection and unpacking it to /tmp. That would allow to separately build another architecture and load it for testing here.
I added a way to load a libraries from a path specified by a property.
You can build the libraries for any dockcross supported architecture like this (assuming you start in the repo root):
cd core
BUILD_ARCH=armv7a ../compile-native.sh "$JAVA_HOME" javacan-core ..
cd ../epoll
BUILD_ARCH=armv7a ../compile-native.sh "$JAVA_HOME" javacan-epoll ..After that, you'll have the two .so files in the repo root.
Then run your program with the following options: -Djavacan.native.javacan-core.path=path/to/libjavacan-core-armv7a.so -Djavacan.native.javacan-epoll.path=path/to/libjavacan-epoll-armv7a.so
Alternatively you can also build JavaCAN with a single architecture by providing it to the maven build like so:
mvn clean install -Djavacan.build.arch=armv7a(if you are not building on the armv7a device, you'll probably need to skip tests using -DskipTests)
Then you have to run your program with the options -Djavacan.native.javacan-core.classpath=/native/libjavacan-core-armv7a.so -Djavacan.native.javacan-core.classpath=/native/libjavacan-epoll-armv7a.so.
(note, that these properties end with .classpath insead of .path)
As far as I googled, BeagleBone might not report anything unique in os.arch.
@pschichtel Maybe it would be better to have a single option to specify the cpu architecture eg. javacan.cpu.arch, that would disable auto-detection and just load libjavacan-{core/epoll}-{javacan.cpu.arch}.so.
Maybe to satisfy #23 and this use case, we could first try to load system library and then fallback to loading the local one?
try {
System.loadLibrary("javacan-{core/epoll}-{javacan.cpu.arch}");
} catch (UnsatisfiedLinkError e) {
// fallback to load the local one?
System.loadLibrary("/native/libjavacan-{core/epoll}-{javacan.cpu.arch}.so");
}
That would utilize java.library.path and LD_LIBRARY_PATH, so one would be able to install the .so in the operating system specific way, like /usr/local/lib/.
What do you think?
good point about the library search paths... probably should do that. But I still want to provide a way to explicitly specify a file
Full Dump:
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGILL (0x4) at pc=0xaa42e1c8, pid=10111, tid=0xb530e460
#
# JRE version: OpenJDK Runtime Environment (8.0_272-b10) (build 1.8.0_272-8u272-b10-1-b10)
# Java VM: OpenJDK Client VM (25.272-b10 mixed mode linux-aarch32 )
# Problematic frame:
# C [libJavaCAN.so+0x21c8]
#
# Failed to write core dump. Core dumps have been disabled. To enable core dumping, try "ulimit -c unlimited" before starting Java again
#
# If you would like to submit a bug report, please visit:
# http://bugreport.java.com/bugreport/crash.jsp
# The crash happened outside the Java Virtual Machine in native code.
# See problematic frame for where to report the bug.
#
--------------- T H R E A D ---------------
Current thread (0xb5107800): JavaThread "main" [_thread_in_native, id=10112, stack(0xb52bf000,0xb530f000)]
siginfo: si_signo: 4 (SIGILL), si_code: 1 (ILL_ILLOPC), si_addr: 0xaa42e1c8
Registers:
R0=0xaa4410d0
R1=0x00000000
R2=0x00000002
R3=0xaa441000
R4=0xaa440f18
R5=0xaa42e274
R6=0x00000004
R7=0xbebbf144
R8=0xbebbf158
R9=0xaa440f18
R10=0x00000003
R11=0xb530c6fc
R12=0x00000006
R13=0xb530c2d0
R14=0xb6f8ff41
R15=0xaa42e1c8
Top of Stack: (sp=0xb530c2d0)
0xb530c2d0: bebbf158 ffffffff a9d0e6f8 00000004
0xb530c2e0: bebbf144 bebbf158 00000000 b6f8ffe3
0xb530c2f0: 00000000 00000058 b530e920 b530c4e0
0xb530c300: a9d0e858 b6fad880 00000003 b6f3242f
0xb530c310: 00000000 b530c548 b6f922c1 b530c4f0
0xb530c320: b6f84304 b530c348 b530c3cc b6fad880
0xb530c330: b6fae000 aaaaaaab aad1ba0c 00000003
0xb530c340: b6fad880 b6fad880 00000000 00000000
Instructions: (pc=0xaa42e1c8)
0xaa42e1a8: 02 20 a0 e3 4c 10 9f e5 00 00 8f e0 01 10 8f e0
0xaa42e1b8: 44 30 9f e5 01 10 60 e0 41 11 a0 e1 03 30 8f e0
0xaa42e1c8: 11 f2 11 e7 00 00 51 e3 1e ff 2f 01 2c 20 9f e5
0xaa42e1d8: 08 d0 4d e2 02 30 93 e7 04 30 8d e5 00 00 53 e3
Register to memory mapping:
R0=0xaa4410d0: __bss_start__+0 in /tmp/JavaCAN-armv7-7504299648645545403/libJavaCAN.so at 0xaa42c000
R1=0x00000000 is an unknown value
R2=0x00000002 is an unknown value
R3=0xaa441000: <offset 0x15000> in /tmp/JavaCAN-armv7-7504299648645545403/libJavaCAN.so at 0xaa42c000
R4=0xaa440f18: <offset 0x14f18> in /tmp/JavaCAN-armv7-7504299648645545403/libJavaCAN.so at 0xaa42c000
R5=0xaa42e274: <offset 0x2274> in /tmp/JavaCAN-armv7-7504299648645545403/libJavaCAN.so at 0xaa42c000
R6=0x00000004 is an unknown value
R7=0xbebbf144 is an unknown value
R8=0xbebbf158 is an unknown value
R9=0xaa440f18: <offset 0x14f18> in /tmp/JavaCAN-armv7-7504299648645545403/libJavaCAN.so at 0xaa42c000
R10=0x00000003 is an unknown value
R11=0xb530c6fc is pointing into the stack for thread: 0xb5107800
R12=0x00000006 is an unknown value
R13=0xb530c2d0 is pointing into the stack for thread: 0xb5107800
R14=0xb6f8ff41: <offset 0xbf41> in /lib/ld-linux-armhf.so.3 at 0xb6f84000
R15=0xaa42e1c8: <offset 0x21c8> in /tmp/JavaCAN-armv7-7504299648645545403/libJavaCAN.so at 0xaa42c000
Stack: [0xb52bf000,0xb530f000], sp=0xb530c2d0, free space=308k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
C [libJavaCAN.so+0x21c8]
C 0xa9d04198
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j java.lang.ClassLoader$NativeLibrary.load(Ljava/lang/String;Z)V+0
j java.lang.ClassLoader.loadLibrary0(Ljava/lang/Class;Ljava/io/File;)Z+328
j java.lang.ClassLoader.loadLibrary(Ljava/lang/Class;Ljava/lang/String;Z)V+48
j java.lang.Runtime.load0(Ljava/lang/Class;Ljava/lang/String;)V+57
j java.lang.System.load(Ljava/lang/String;)V+7
j tel.schich.javacan.JavaCAN.loadBundledLib(Ljava/lang/String;)V+266
j tel.schich.javacan.JavaCAN.initialize()V+9
j tel.schich.javacan.linux.LinuxNetworkDevice.<clinit>()V+0
v ~StubRoutines::call_stub
j tel.schich.javacan.NetworkDevice.lookup(Ljava/lang/String;)Ltel/schich/javacan/NetworkDevice;+29
j space.sdk.core.entities.comm.CANCommAdapter.onStartup()V+59
j space.sdk.core.service.CommService.init()V+82
j space.sdk.core.SpaceSDK$$Lambda$5.accept(Ljava/lang/Object;)V+4
j java.lang.Iterable.forEach(Ljava/util/function/Consumer;)V+30
j space.sdk.core.SpaceSDK.onEnable()V+47
j space.sdk.core.Main.main([Ljava/lang/String;)V+16
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0xa9d01400 JavaThread "redis-sub" [_thread_in_vm, id=10121, stack(0xa9bb0000,0xa9c00000)]
0xa9ff5c00 JavaThread "commons-pool-evictor-thread" daemon [_thread_blocked, id=10120, stack(0xaa442000,0xaa492000)]
0xb5196400 JavaThread "Service Thread" daemon [_thread_blocked, id=10118, stack(0xaa765000,0xaa7b5000)]
0xb5182c00 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=10117, stack(0xaa7b6000,0xaa836000)]
0xb5180000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=10116, stack(0xaa836000,0xaa886000)]
0xb5166400 JavaThread "Finalizer" daemon [_thread_blocked, id=10115, stack(0xaae1a000,0xaae6a000)]
0xb5163400 JavaThread "Reference Handler" daemon [_thread_blocked, id=10114, stack(0xaae6a000,0xaaeba000)]
=>0xb5107800 JavaThread "main" [_thread_in_native, id=10112, stack(0xb52bf000,0xb530f000)]
Other Threads:
0xb515dc00 VMThread [stack: 0xaaebb000,0xaaf3b000] [id=10113]
0xb5198400 WatcherThread [stack: 0xaa6e5000,0xaa765000] [id=10119]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap:
def new generation total 2432K, used 1309K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 48% used [0xab600000, 0xab707410, 0xab820000)
from space 256K, 100% used [0xab860000, 0xab8a0000, 0xab8a0000)
to space 256K, 0% used [0xab820000, 0xab820000, 0xab860000)
tenured generation total 5504K, used 3131K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 56% used [0xadea0000, 0xae1aec50, 0xae1aee00, 0xae400000)
Metaspace used 7435K, capacity 7630K, committed 7704K, reserved 8496K
Card table byte_map: [0xb3042000,0xb3080000] byte_map_base: 0xb2ae7000
Polling page: 0xb6faa000
CodeCache: size=32768Kb used=1730Kb max_used=1730Kb free=31037Kb
bounds [0xb3100000, 0xb32b8000, 0xb5100000]
total_blobs=525 nmethods=352 adapters=105
compilation: enabled
Compilation events (10 events):
Event: 7.842 Thread 0xb5182c00 348 javax.management.ImmutableDescriptor::<init> (210 bytes)
Event: 7.860 Thread 0xb5182c00 nmethod 348 0xb32ad2c8 code [0xb32ad500, 0xb32adf50]
Event: 7.989 Thread 0xb5182c00 349 java.net.URL::getPort (5 bytes)
Event: 7.990 Thread 0xb5182c00 nmethod 349 0xb32af408 code [0xb32af500, 0xb32af5bc]
Event: 8.067 Thread 0xb5182c00 350 java.lang.invoke.MethodType::checkPtypes (61 bytes)
Event: 8.075 Thread 0xb5182c00 nmethod 350 0xb32af608 code [0xb32af780, 0xb32afc34]
Event: 8.089 Thread 0xb5182c00 351 java.util.Properties::load0 (250 bytes)
Event: 8.094 Thread 0xb5182c00 nmethod 351 0xb32b0048 code [0xb32b0180, 0xb32b054c]
Event: 8.124 Thread 0xb5182c00 352 java.util.BitSet::wordIndex (5 bytes)
Event: 8.125 Thread 0xb5182c00 nmethod 352 0xb32b0848 code [0xb32b0920, 0xb32b09bc]
GC Heap History (10 events):
Event: 5.090 GC heap before
{Heap before GC invocations=6 (full 0):
def new generation total 2432K, used 2431K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 100% used [0xab600000, 0xab820000, 0xab820000)
from space 256K, 99% used [0xab820000, 0xab85fff8, 0xab860000)
to space 256K, 0% used [0xab860000, 0xab860000, 0xab8a0000)
tenured generation total 5504K, used 2080K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 37% used [0xadea0000, 0xae0a8368, 0xae0a8400, 0xae400000)
Metaspace used 4934K, capacity 5084K, committed 5144K, reserved 5424K
Event: 5.104 GC heap after
Heap after GC invocations=7 (full 0):
def new generation total 2432K, used 256K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 0% used [0xab600000, 0xab600000, 0xab820000)
from space 256K, 100% used [0xab860000, 0xab8a0000, 0xab8a0000)
to space 256K, 0% used [0xab820000, 0xab820000, 0xab860000)
tenured generation total 5504K, used 2370K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 43% used [0xadea0000, 0xae0f08a0, 0xae0f0a00, 0xae400000)
Metaspace used 4934K, capacity 5084K, committed 5144K, reserved 5424K
}
Event: 5.770 GC heap before
{Heap before GC invocations=7 (full 0):
def new generation total 2432K, used 2424K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 99% used [0xab600000, 0xab81e050, 0xab820000)
from space 256K, 100% used [0xab860000, 0xab8a0000, 0xab8a0000)
to space 256K, 0% used [0xab820000, 0xab820000, 0xab860000)
tenured generation total 5504K, used 2370K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 43% used [0xadea0000, 0xae0f08a0, 0xae0f0a00, 0xae400000)
Metaspace used 5169K, capacity 5308K, committed 5400K, reserved 5424K
Event: 5.779 GC heap after
Heap after GC invocations=8 (full 0):
def new generation total 2432K, used 256K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 0% used [0xab600000, 0xab600000, 0xab820000)
from space 256K, 100% used [0xab820000, 0xab860000, 0xab860000)
to space 256K, 0% used [0xab860000, 0xab860000, 0xab8a0000)
tenured generation total 5504K, used 2514K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 45% used [0xadea0000, 0xae114840, 0xae114a00, 0xae400000)
Metaspace used 5169K, capacity 5308K, committed 5400K, reserved 5424K
}
Event: 6.385 GC heap before
{Heap before GC invocations=8 (full 0):
def new generation total 2432K, used 2432K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 100% used [0xab600000, 0xab820000, 0xab820000)
from space 256K, 100% used [0xab820000, 0xab860000, 0xab860000)
to space 256K, 0% used [0xab860000, 0xab860000, 0xab8a0000)
tenured generation total 5504K, used 2514K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 45% used [0xadea0000, 0xae114840, 0xae114a00, 0xae400000)
Metaspace used 5529K, capacity 5704K, committed 5784K, reserved 6448K
Event: 6.397 GC heap after
Heap after GC invocations=9 (full 0):
def new generation total 2432K, used 256K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 0% used [0xab600000, 0xab600000, 0xab820000)
from space 256K, 100% used [0xab860000, 0xab8a0000, 0xab8a0000)
to space 256K, 0% used [0xab820000, 0xab820000, 0xab860000)
tenured generation total 5504K, used 2686K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 48% used [0xadea0000, 0xae13f9c0, 0xae13fa00, 0xae400000)
Metaspace used 5529K, capacity 5704K, committed 5784K, reserved 6448K
}
Event: 6.814 GC heap before
{Heap before GC invocations=9 (full 0):
def new generation total 2432K, used 2432K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 100% used [0xab600000, 0xab820000, 0xab820000)
from space 256K, 100% used [0xab860000, 0xab8a0000, 0xab8a0000)
to space 256K, 0% used [0xab820000, 0xab820000, 0xab860000)
tenured generation total 5504K, used 2686K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 48% used [0xadea0000, 0xae13f9c0, 0xae13fa00, 0xae400000)
Metaspace used 5819K, capacity 5960K, committed 6040K, reserved 6448K
Event: 6.822 GC heap after
Heap after GC invocations=10 (full 0):
def new generation total 2432K, used 233K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 0% used [0xab600000, 0xab600000, 0xab820000)
from space 256K, 91% used [0xab820000, 0xab85a6e8, 0xab860000)
to space 256K, 0% used [0xab860000, 0xab860000, 0xab8a0000)
tenured generation total 5504K, used 2783K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 50% used [0xadea0000, 0xae157e88, 0xae158000, 0xae400000)
Metaspace used 5819K, capacity 5960K, committed 6040K, reserved 6448K
}
Event: 7.887 GC heap before
{Heap before GC invocations=10 (full 0):
def new generation total 2432K, used 2409K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 100% used [0xab600000, 0xab820000, 0xab820000)
from space 256K, 91% used [0xab820000, 0xab85a6e8, 0xab860000)
to space 256K, 0% used [0xab860000, 0xab860000, 0xab8a0000)
tenured generation total 5504K, used 2783K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 50% used [0xadea0000, 0xae157e88, 0xae158000, 0xae400000)
Metaspace used 7052K, capacity 7241K, committed 7320K, reserved 7472K
Event: 7.907 GC heap after
Heap after GC invocations=11 (full 0):
def new generation total 2432K, used 256K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 0% used [0xab600000, 0xab600000, 0xab820000)
from space 256K, 100% used [0xab860000, 0xab8a0000, 0xab8a0000)
to space 256K, 0% used [0xab820000, 0xab820000, 0xab860000)
tenured generation total 5504K, used 3131K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 56% used [0xadea0000, 0xae1aec50, 0xae1aee00, 0xae400000)
Metaspace used 7052K, capacity 7241K, committed 7320K, reserved 7472K
}
Deoptimization events (0 events):
No events
Classes redefined (0 events):
No events
Internal exceptions (10 events):
Event: 7.766 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7bb000) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 7.768 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7bcc88) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 7.771 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7bf398) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 7.773 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7c0d98) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 7.776 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7c32f8) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 7.777 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7c4040) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 7.786 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7c7fc0) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 7.818 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7df7a8) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 7.835 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7ecc48) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 8.227 Thread 0xb5107800 Exception <a 'sun/nio/fs/UnixException'> (0xab6d9ff0) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/prims/jni.cpp, line 711]
Events (10 events):
Event: 8.232 Executing VM operation: RevokeBias
Event: 8.233 Executing VM operation: RevokeBias done
Event: 8.233 Executing VM operation: RevokeBias
Event: 8.233 Executing VM operation: RevokeBias done
Event: 8.234 loading class java/nio/channels/Channels$1
Event: 8.235 loading class java/nio/channels/Channels$1 done
Event: 8.240 loading class redis/clients/jedis/Protocol$Command
Event: 8.240 loading class redis/clients/jedis/Protocol$Command done
Event: 8.242 Executing VM operation: RevokeBias
Event: 8.249 Executing VM operation: RevokeBias done
Dynamic libraries:
00444000-00445000 r-xp 00000000 b3:01 4234 /usr/lib/jvm/java-8-openjdk-armhf/jre/bin/java
00454000-00455000 r--p 00000000 b3:01 4234 /usr/lib/jvm/java-8-openjdk-armhf/jre/bin/java
00455000-00456000 rw-p 00001000 b3:01 4234 /usr/lib/jvm/java-8-openjdk-armhf/jre/bin/java
018a5000-019d3000 rw-p 00000000 00:00 0 [heap]
a9bb0000-a9bb3000 ---p 00000000 00:00 0
a9bb3000-a9c40000 rw-p 00000000 00:00 0
a9c40000-a9d00000 ---p 00000000 00:00 0
a9d00000-a9d2b000 rw-p 00000000 00:00 0
a9d2b000-a9e00000 ---p 00000000 00:00 0
a9e00000-a9f00000 rw-p 00000000 00:00 0
a9f00000-a9ffc000 rw-p 00000000 00:00 0
a9ffc000-aa000000 ---p 00000000 00:00 0
aa000000-aa100000 rw-p 00000000 00:00 0
aa100000-aa200000 rw-p 00000000 00:00 0
aa200000-aa300000 rw-p 00000000 00:00 0
aa300000-aa3fa000 rw-p 00000000 00:00 0
aa3fa000-aa400000 ---p 00000000 00:00 0
aa42c000-aa431000 r-xp 00000000 b3:01 253984 /tmp/JavaCAN-armv7-7504299648645545403/libJavaCAN.so
aa431000-aa440000 ---p 00005000 b3:01 253984 /tmp/JavaCAN-armv7-7504299648645545403/libJavaCAN.so
aa440000-aa441000 r--p 00004000 b3:01 253984 /tmp/JavaCAN-armv7-7504299648645545403/libJavaCAN.so
aa441000-aa442000 rw-p 00005000 b3:01 253984 /tmp/JavaCAN-armv7-7504299648645545403/libJavaCAN.so
aa442000-aa445000 ---p 00000000 00:00 0
aa445000-aa492000 rw-p 00000000 00:00 0
aa492000-aa494000 r--s 00005000 b3:01 253995 /usr/local/nebula/plugins/Mil1553Plugin-1.0-SNAPSHOT.jar
aa496000-aa499000 r--s 00029000 b3:01 255081 /usr/local/nebula/lib/httpasyncclient-4.1.4.jar
aa499000-aa4a1000 r--s 00053000 b3:01 255084 /usr/local/nebula/lib/httpcore-nio-4.4.13.jar
aa4a1000-aa4a3000 r--s 00009000 b3:01 254460 /usr/local/nebula/lib/httpmime-4.5.13.jar
aa4a3000-aa4aa000 r--s 0004b000 b3:01 255073 /usr/local/nebula/lib/commons-codec-1.11.jar
aa4aa000-aa4ac000 r--s 0000e000 b3:01 253974 /usr/local/nebula/lib/commons-logging-1.2.jar
aa4ac000-aa4b4000 r--s 00049000 b3:01 255083 /usr/local/nebula/lib/httpcore-4.4.13.jar
aa4b4000-aa4c1000 r--s 000b2000 b3:01 255082 /usr/local/nebula/lib/httpclient-4.5.13.jar
aa4c1000-aa4d2000 r--s 0008d000 b3:01 255088 /usr/local/nebula/lib/joda-time-2.10.8.jar
aa4d2000-aa4dd000 r--s 000b5000 b3:01 255086 /usr/local/nebula/lib/javassist-3.26.0-GA.jar
aa4dd000-aa4eb000 r--s 00093000 b3:01 255087 /usr/local/nebula/lib/jedis-3.2.0.jar
aa4eb000-aa500000 r--s 0021e000 b3:01 255080 /usr/local/nebula/lib/h2-1.4.200.jar
aa500000-aa600000 rw-p 00000000 00:00 0
aa600000-aa604000 r--s 0002b000 b3:01 255090 /usr/local/nebula/lib/unirest-java-3.11.04.jar
aa604000-aa605000 r--s 00002000 b3:01 253973 /usr/local/nebula/lib/bit-lib4j-1.5.2.jar
aa605000-aa607000 r--s 00018000 b3:01 255089 /usr/local/nebula/lib/reflections-0.9.12.jar
aa607000-aa60a000 r--s 0001f000 b3:01 255085 /usr/local/nebula/lib/javacan-2.3.0.jar
aa60a000-aa613000 r--s 00073000 b3:01 255074 /usr/local/nebula/lib/commons-lang3-3.9.jar
aa613000-aa624000 r--s 001bc000 b3:01 4311 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/jsse.jar
aa624000-aa62b000 r-xp 00000000 b3:01 4269 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libmanagement.so
aa62b000-aa63a000 ---p 00007000 b3:01 4269 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libmanagement.so
aa63a000-aa63b000 r--p 00006000 b3:01 4269 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libmanagement.so
aa63b000-aa63c000 rw-p 00007000 b3:01 4269 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libmanagement.so
aa63c000-aa66e000 r--s 00278000 b3:01 255078 /usr/local/nebula/lib/guava-29.0-jre.jar
aa66e000-aa67f000 r-xp 00000000 b3:01 4271 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libnet.so
aa67f000-aa68e000 ---p 00011000 b3:01 4271 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libnet.so
aa68e000-aa68f000 r--p 00010000 b3:01 4271 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libnet.so
aa68f000-aa690000 rw-p 00011000 b3:01 4271 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libnet.so
aa690000-aa69c000 r-xp 00000000 b3:01 4272 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libnio.so
aa69c000-aa6ac000 ---p 0000c000 b3:01 4272 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libnio.so
aa6ac000-aa6ad000 r--p 0000c000 b3:01 4272 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libnio.so
aa6ad000-aa6ae000 rw-p 0000d000 b3:01 4272 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libnio.so
aa6ae000-aa6c9000 r--s 00394000 b3:01 4287 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/cldrdata.jar
aa6c9000-aa6e4000 r--s 001d6000 b3:01 4292 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/nashorn.jar
aa6e4000-aa6e5000 ---p 00000000 00:00 0
aa6e5000-aa765000 rw-p 00000000 00:00 0
aa765000-aa768000 ---p 00000000 00:00 0
aa768000-aa7b5000 rw-p 00000000 00:00 0
aa7b5000-aa7b6000 ---p 00000000 00:00 0
aa7b6000-aa7b9000 ---p 00000000 00:00 0
aa7b9000-aa836000 rw-p 00000000 00:00 0
aa836000-aa839000 ---p 00000000 00:00 0
aa839000-aa886000 rw-p 00000000 00:00 0
aa886000-aab00000 r--p 0006c000 b3:01 45874 /usr/lib/locale/locale-archive
aab00000-aad00000 r--p 00000000 b3:01 45874 /usr/lib/locale/locale-archive
aad00000-aad22000 rw-p 00000000 00:00 0
aad22000-aae00000 ---p 00000000 00:00 0
aae00000-aae03000 r--s 0001d000 b3:01 255075 /usr/local/nebula/lib/commons-pool2-2.6.2.jar
aae03000-aae06000 r--s 00013000 b3:01 253975 /usr/local/nebula/lib/commons-io-1.3.2.jar
aae06000-aae0a000 r--s 00023000 b3:01 255076 /usr/local/nebula/lib/cron-utils-9.0.1.jar
aae0a000-aae0c000 r--s 00014000 b3:01 253970 /usr/local/nebula/lib/auto-common-0.10.jar
aae0c000-aae1a000 r--s 00097000 b3:01 255079 /usr/local/nebula/lib/guice-4.1.0.jar
aae1a000-aae1d000 ---p 00000000 00:00 0
aae1d000-aae6a000 rw-p 00000000 00:00 0
aae6a000-aae6d000 ---p 00000000 00:00 0
aae6d000-aaeba000 rw-p 00000000 00:00 0
aaeba000-aaebb000 ---p 00000000 00:00 0
aaebb000-aaf89000 rw-p 00000000 00:00 0
aaf89000-ab159000 r--s 03c94000 b3:01 4316 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/rt.jar
ab159000-ab5fa000 rw-p 00000000 00:00 0
ab5fa000-ab600000 ---p 00000000 00:00 0
ab600000-ab8a0000 rw-p 00000000 00:00 0
ab8a0000-adea0000 ---p 00000000 00:00 0
adea0000-ae400000 rw-p 00000000 00:00 0
ae400000-b3000000 ---p 00000000 00:00 0
b3000000-b3001000 r--s 00007000 b3:01 253994 /usr/local/nebula/lib/slf4j-api-1.7.12.jar
b3001000-b3002000 r--s 00000000 b3:01 253972 /usr/local/nebula/lib/auto-service-annotations-1.0-rc5.jar
b3002000-b3003000 r--s 00002000 b3:01 253971 /usr/local/nebula/lib/auto-service-1.0-rc5.jar
b3003000-b3005000 r--s 00000000 b3:01 253969 /usr/local/nebula/lib/aopalliance-1.0.jar
b3005000-b300a000 r--s 00036000 b3:01 255077 /usr/local/nebula/lib/gson-2.8.6.jar
b300a000-b300c000 r--s 00001000 b3:01 253985 /usr/local/nebula/lib/j2objc-annotations-1.3.jar
b300c000-b300e000 r--s 00002000 b3:01 253979 /usr/local/nebula/lib/error_prone_annotations-2.3.4.jar
b300e000-b3019000 r--s 00027000 b3:01 255072 /usr/local/nebula/lib/checker-qual-2.11.1.jar
b3019000-b301c000 rw-p 00000000 00:00 0
b301c000-b3042000 ---p 00000000 00:00 0
b3042000-b3044000 rw-p 00000000 00:00 0
b3044000-b3056000 ---p 00000000 00:00 0
b3056000-b3059000 rw-p 00000000 00:00 0
b3059000-b307f000 ---p 00000000 00:00 0
b307f000-b3087000 rw-p 00000000 00:00 0
b3087000-b3100000 ---p 00000000 00:00 0
b3100000-b32b8000 rwxp 00000000 00:00 0
b32b8000-b5100000 ---p 00000000 00:00 0
b5100000-b51fd000 rw-p 00000000 00:00 0
b51fd000-b5200000 ---p 00000000 00:00 0
b5200000-b5201000 r--s 00000000 b3:01 253988 /usr/local/nebula/lib/javax.inject-1.jar
b5201000-b5203000 r--s 00003000 b3:01 253991 /usr/local/nebula/lib/jsr305-3.0.2.jar
b5203000-b5205000 r--s 00000000 b3:01 253980 /usr/local/nebula/lib/failureaccess-1.0.1.jar
b5205000-b5209000 r--s 0001f000 b3:01 3524 /usr/local/nebula/sdk-space-core.jar
b5209000-b520d000 r--s 00040000 b3:01 4295 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/sunpkcs11.jar
b520d000-b5217000 r--s 00117000 b3:01 4291 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/localedata.jar
b5217000-b5219000 r--s 00001000 b3:01 4288 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/dnsns.jar
b5219000-b521c000 r--s 0000f000 b3:01 4289 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/icedtea-sound.jar
b521c000-b521e000 r--s 00010000 b3:01 4296 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/zipfs.jar
b521e000-b5224000 r--s 0003d000 b3:01 4294 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/sunjce_provider.jar
b5224000-b522a000 r-xp 00000000 b3:01 4278 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libzip.so
b522a000-b5239000 ---p 00006000 b3:01 4278 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libzip.so
b5239000-b523a000 r--p 00005000 b3:01 4278 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libzip.so
b523a000-b523b000 rw-p 00006000 b3:01 4278 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libzip.so
b523b000-b5242000 r-xp 00000000 b3:01 46142 /lib/arm-linux-gnueabihf/libnss_files-2.31.so
b5242000-b5251000 ---p 00007000 b3:01 46142 /lib/arm-linux-gnueabihf/libnss_files-2.31.so
b5251000-b5252000 r--p 00006000 b3:01 46142 /lib/arm-linux-gnueabihf/libnss_files-2.31.so
b5252000-b5253000 rw-p 00007000 b3:01 46142 /lib/arm-linux-gnueabihf/libnss_files-2.31.so
b5253000-b5259000 rw-p 00000000 00:00 0
b5259000-b525a000 r--s 00000000 b3:01 253992 /usr/local/nebula/lib/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
b525a000-b525c000 r--s 0000c000 b3:01 4489 /usr/share/java/java-atk-wrapper.jar
b525c000-b5262000 r--s 000d3000 b3:01 4310 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/jfr.jar
b5262000-b527d000 r-xp 00000000 b3:01 4260 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libjava.so
b527d000-b528c000 ---p 0001b000 b3:01 4260 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libjava.so
b528c000-b528d000 r--p 0001a000 b3:01 4260 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libjava.so
b528d000-b528e000 rw-p 0001b000 b3:01 4260 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libjava.so
b528e000-b5297000 r-xp 00000000 b3:01 4277 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libverify.so
b5297000-b52a6000 ---p 00009000 b3:01 4277 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libverify.so
b52a6000-b52a7000 r--p 00008000 b3:01 4277 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libverify.so
b52a7000-b52a8000 rw-p 00009000 b3:01 4277 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libverify.so
b52a8000-b52ad000 r-xp 00000000 b3:01 46147 /lib/arm-linux-gnueabihf/librt-2.31.so
b52ad000-b52bc000 ---p 00005000 b3:01 46147 /lib/arm-linux-gnueabihf/librt-2.31.so
b52bc000-b52bd000 r--p 00004000 b3:01 46147 /lib/arm-linux-gnueabihf/librt-2.31.so
b52bd000-b52be000 rw-p 00005000 b3:01 46147 /lib/arm-linux-gnueabihf/librt-2.31.so
b52be000-b52bf000 ---p 00000000 00:00 0
b52bf000-b52c2000 ---p 00000000 00:00 0
b52c2000-b530f000 rw-p 00000000 00:00 0
b530f000-b5327000 r-xp 00000000 b3:01 44831 /lib/arm-linux-gnueabihf/libgcc_s.so.1
b5327000-b5336000 ---p 00018000 b3:01 44831 /lib/arm-linux-gnueabihf/libgcc_s.so.1
b5336000-b5337000 r--p 00017000 b3:01 44831 /lib/arm-linux-gnueabihf/libgcc_s.so.1
b5337000-b5338000 rw-p 00018000 b3:01 44831 /lib/arm-linux-gnueabihf/libgcc_s.so.1
b5338000-b538f000 r-xp 00000000 b3:01 46137 /lib/arm-linux-gnueabihf/libm-2.31.so
b538f000-b539e000 ---p 00057000 b3:01 46137 /lib/arm-linux-gnueabihf/libm-2.31.so
b539e000-b539f000 r--p 00056000 b3:01 46137 /lib/arm-linux-gnueabihf/libm-2.31.so
b539f000-b53a0000 rw-p 00057000 b3:01 46137 /lib/arm-linux-gnueabihf/libm-2.31.so
b53a0000-b54c2000 r-xp 00000000 b3:01 24365 /usr/lib/arm-linux-gnueabihf/libstdc++.so.6.0.28
b54c2000-b54d2000 ---p 00122000 b3:01 24365 /usr/lib/arm-linux-gnueabihf/libstdc++.so.6.0.28
b54d2000-b54d7000 r--p 00122000 b3:01 24365 /usr/lib/arm-linux-gnueabihf/libstdc++.so.6.0.28
b54d7000-b54d9000 rw-p 00127000 b3:01 24365 /usr/lib/arm-linux-gnueabihf/libstdc++.so.6.0.28
b54d9000-b54db000 rw-p 00000000 00:00 0
b54db000-b59b6000 r-xp 00000000 b3:01 4245 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/client/libjvm.so
b59b6000-b59c5000 ---p 004db000 b3:01 4245 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/client/libjvm.so
b59c5000-b59d6000 r--p 004da000 b3:01 4245 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/client/libjvm.so
b59d6000-b59ee000 rw-p 004eb000 b3:01 4245 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/client/libjvm.so
b59ee000-b6e0d000 rw-p 00000000 00:00 0
b6e0d000-b6e20000 r-xp 00000000 b3:01 46145 /lib/arm-linux-gnueabihf/libpthread-2.31.so
b6e20000-b6e2f000 ---p 00013000 b3:01 46145 /lib/arm-linux-gnueabihf/libpthread-2.31.so
b6e2f000-b6e30000 r--p 00012000 b3:01 46145 /lib/arm-linux-gnueabihf/libpthread-2.31.so
b6e30000-b6e31000 rw-p 00013000 b3:01 46145 /lib/arm-linux-gnueabihf/libpthread-2.31.so
b6e31000-b6e33000 rw-p 00000000 00:00 0
b6e33000-b6e35000 r-xp 00000000 b3:01 46122 /lib/arm-linux-gnueabihf/libdl-2.31.so
b6e35000-b6e44000 ---p 00002000 b3:01 46122 /lib/arm-linux-gnueabihf/libdl-2.31.so
b6e44000-b6e45000 r--p 00001000 b3:01 46122 /lib/arm-linux-gnueabihf/libdl-2.31.so
b6e45000-b6e46000 rw-p 00002000 b3:01 46122 /lib/arm-linux-gnueabihf/libdl-2.31.so
b6e46000-b6e58000 r-xp 00000000 b3:01 45866 /lib/arm-linux-gnueabihf/libz.so.1.2.11
b6e58000-b6e67000 ---p 00012000 b3:01 45866 /lib/arm-linux-gnueabihf/libz.so.1.2.11
b6e67000-b6e68000 r--p 00011000 b3:01 45866 /lib/arm-linux-gnueabihf/libz.so.1.2.11
b6e68000-b6e69000 rw-p 00012000 b3:01 45866 /lib/arm-linux-gnueabihf/libz.so.1.2.11
b6e69000-b6f53000 r-xp 00000000 b3:01 46121 /lib/arm-linux-gnueabihf/libc-2.31.so
b6f53000-b6f62000 ---p 000ea000 b3:01 46121 /lib/arm-linux-gnueabihf/libc-2.31.so
b6f62000-b6f64000 r--p 000e9000 b3:01 46121 /lib/arm-linux-gnueabihf/libc-2.31.so
b6f64000-b6f66000 rw-p 000eb000 b3:01 46121 /lib/arm-linux-gnueabihf/libc-2.31.so
b6f66000-b6f68000 rw-p 00000000 00:00 0
b6f68000-b6f73000 r-xp 00000000 b3:01 4246 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/jli/libjli.so
b6f73000-b6f82000 ---p 0000b000 b3:01 4246 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/jli/libjli.so
b6f82000-b6f83000 r--p 0000a000 b3:01 4246 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/jli/libjli.so
b6f83000-b6f84000 rw-p 0000b000 b3:01 4246 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/jli/libjli.so
b6f84000-b6f9e000 r-xp 00000000 b3:01 44238 /lib/arm-linux-gnueabihf/ld-2.31.so
b6f9e000-b6f9f000 r--s 0000d000 b3:01 4293 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/sunec.jar
b6f9f000-b6fa0000 r--s 0000a000 b3:01 4290 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/jaccess.jar
b6fa0000-b6fa2000 rw-p 00000000 00:00 0
b6fa2000-b6faa000 rw-s 00000000 b3:01 253976 /tmp/hsperfdata_root/10111
b6faa000-b6fab000 r--p 00000000 00:00 0
b6fab000-b6fad000 rw-p 00000000 00:00 0
b6fad000-b6fae000 r--p 00019000 b3:01 44238 /lib/arm-linux-gnueabihf/ld-2.31.so
b6fae000-b6faf000 rw-p 0001a000 b3:01 44238 /lib/arm-linux-gnueabihf/ld-2.31.so
beb9f000-bebc0000 rw-p 00000000 00:00 0 [stack]
bebd5000-bebd6000 r-xp 00000000 00:00 0 [sigpage]
bebd6000-bebd7000 r--p 00000000 00:00 0 [vvar]
bebd7000-bebd8000 r-xp 00000000 00:00 0 [vdso]
ffff0000-ffff1000 r-xp 00000000 00:00 0 [vectors]
VM Arguments:
java_command: sdk-space-core.jar -Djavacan.native.javacan-core.classpath=/native/libjavacan-core-armv7a.so
java_class_path (initial): sdk-space-core.jar
Launcher Type: SUN_STANDARD
Environment Variables:
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
SHELL=/bin/bash
Signal Handlers:
SIGSEGV: [libjvm.so+0x46b56d], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGBUS: [libjvm.so+0x46b56d], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGFPE: [libjvm.so+0x38ade1], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGPIPE: [libjvm.so+0x38ade1], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGXFSZ: [libjvm.so+0x38ade1], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGILL: [libjvm.so+0x38ade1], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGUSR1: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none
SIGUSR2: [libjvm.so+0x38ac71], sa_mask[0]=00000000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO
SIGHUP: [libjvm.so+0x38ad71], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGINT: [libjvm.so+0x38ad71], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGTERM: [libjvm.so+0x38ad71], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGQUIT: [libjvm.so+0x38ad71], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
--------------- S Y S T E M ---------------
OS:PRETTY_NAME="Debian GNU/Linux 10 (buster)"
NAME="Debian GNU/Linux"
VERSION_ID="10"
VERSION="10 (buster)"
VERSION_CODENAME=buster
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
uname:Linux 4.19.94-ti-r42 #1buster SMP PREEMPT Tue Mar 31 19:38:29 UTC 2020 armv7l
libc:glibc 2.31 NPTL 2.31
rlimit: STACK 8192k, CORE 0k, NPROC 3425, NOFILE 524288, AS infinity
load average:0.48 0.13 0.19
/proc/meminfo:
MemTotal: 495036 kB
MemFree: 125660 kB
MemAvailable: 410220 kB
Buffers: 88820 kB
Cached: 180320 kB
SwapCached: 0 kB
Active: 257740 kB
Inactive: 58040 kB
Active(anon): 46788 kB
Inactive(anon): 168 kB
Active(file): 210952 kB
Inactive(file): 57872 kB
Unevictable: 0 kB
Mlocked: 0 kB
HighTotal: 0 kB
HighFree: 0 kB
LowTotal: 495036 kB
LowFree: 125660 kB
SwapTotal: 0 kB
SwapFree: 0 kB
Dirty: 184 kB
Writeback: 0 kB
AnonPages: 46656 kB
Mapped: 27480 kB
Shmem: 296 kB
Slab: 42944 kB
SReclaimable: 26740 kB
SUnreclaim: 16204 kB
KernelStack: 952 kB
PageTables: 1584 kB
NFS_Unstable: 0 kB
Bounce: 0 kB
WritebackTmp: 0 kB
CommitLimit: 247516 kB
Committed_AS: 146976 kB
VmallocTotal: 516096 kB
VmallocUsed: 0 kB
VmallocChunk: 0 kB
Percpu: 140 kB
CmaTotal: 49152 kB
CmaFree: 48116 kB
container (cgroup) information:
container_type: cgroupv1
cpu_cpuset_cpus: 0
cpu_memory_nodes: 0
active_processor_count: 1
cpu_quota: -1
cpu_period: 100000
cpu_shares: -1
memory_limit_in_bytes: -1
memory_and_swap_limit_in_bytes: -1
memory_soft_limit_in_bytes: -1
memory_usage_in_bytes: 165928960
memory_max_usage_in_bytes: 225669120
CPU:total 1 (initial active 1) 0x41:0x3:0xc08:2
/proc/cpuinfo:
processor : 0
model name : ARMv7 Processor rev 2 (v7l)
BogoMIPS : 995.32
Features : half thumb fastmult vfp edsp thumbee neon vfpv3 tls vfpd32
CPU implementer : 0x41
CPU architecture: 7
CPU variant : 0x3
CPU part : 0xc08
CPU revision : 2
Hardware : Generic AM33XX (Flattened Device Tree)
Revision : 0000
Serial : e4:15:f6:e0:a4:dc
Memory: 4k page, physical 495036k(125660k free), swap 0k(0k free)
vm_info: OpenJDK Client VM (25.272-b10) for linux-aarch32 JRE (1.8.0_272-8u272-b10-1-b10), built on Oct 26 2020 20:29:16 by "buildd" with gcc 9.3.0
time: Wed Dec 9 20:18:11 2020
timezone: UTC
elapsed time: 8.369769 seconds (0d 0h 0m 8s)
@keoir I added armv7a to the default build and added the property javacan.native.arch (-Djavacan.native.arch=armv7a), so you can select the library
Got it working, but not getting this error when init is called:
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0xb56f9bd2, pid=2591, tid=0xb52a2460
#
# JRE version: OpenJDK Runtime Environment (8.0_272-b10) (build 1.8.0_272-8u272-b10-1-b10)
# Java VM: OpenJDK Client VM (25.272-b10 mixed mode linux-aarch32 )
# Problematic frame:
# V [libjvm.so+0x28abd2]
#
# Core dump written. Default location: /usr/local/nebula/core or core.2591
#
# An error report file with more information is saved as:
# /usr/local/nebula/hs_err_pid2591.log
#
# If you would like to submit a bug report, please visit:
# http://bugreport.java.com/bugreport/crash.jsp
#
#
# A fatal error has been detected by the Java Runtime Environment:
#
# SIGSEGV (0xb) at pc=0xb56f9bd2, pid=2591, tid=0xb52a2460
#
# JRE version: OpenJDK Runtime Environment (8.0_272-b10) (build 1.8.0_272-8u272-b10-1-b10)
# Java VM: OpenJDK Client VM (25.272-b10 mixed mode linux-aarch32 )
# Problematic frame:
# V [libjvm.so+0x28abd2]
#
# Core dump written. Default location: /usr/local/nebula/core or core.2591
#
# If you would like to submit a bug report, please visit:
# http://bugreport.java.com/bugreport/crash.jsp
#
--------------- T H R E A D ---------------
Current thread (0xb5107800): JavaThread "main" [_thread_in_vm, id=2592, stack(0xb5253000,0xb52a3000)]
siginfo: si_signo: 11 (SIGSEGV), si_code: 1 (SEGV_MAPERR), si_addr: 0x00000000
Registers:
R0=0x0000deab
R1=0x00000000
R2=0x00000000
R3=0x00000000
R4=0xb5107800
R5=0x00000000
R6=0xb5107994
R7=0xb52a1910
R8=0xb596a000
R9=0x00000004
R10=0xb6d8c784
R11=0x00000000
R12=0xb51079d0
R13=0xb52a1910
R14=0xaa414374
R15=0xb56f9bd2
Top of Stack: (sp=0xb52a1910)
0xb52a1910: b52a1918 b6d90608 b5107800 00000000
0xb52a1920: b596a000 1af48700 b5107800 b52a1ca8
0xb52a1930: b6f047c0 b5107800 a9cb32b8 1af48700
0xb52a1940: b52a1958 b5107994 00000000 b313f124
0xb52a1950: a9cb34a8 b5107800 00000004 a9cb32b8
0xb52a1960: b52a1994 aa414374 b5107800 1af48700
0xb52a1970: b52a19d4 b52a1998 00000000 b313f124
0xb52a1980: a9cb34a8 b5107800 00000004 a9cb32b8
Instructions: (pc=0xb56f9bd2)
0xb56f9bb2: 71 d1 63 68 06 22 bc 60 c4 f8 d0 21 00 22 fa 60
0xb56f9bc2: 1b b1 07 f1 08 00 1f f1 6c fc 00 bf eb 07 58 bf
0xb56f9bd2: d5 f8 00 90 79 d4 45 4a 58 f8 02 20 12 68 59 f8
0xb56f9be2: 02 20 ea b1 48 46 07 f1 18 06 b0 f7 72 fc 00 22
Register to memory mapping:
R0=0x0000deab is an unknown value
R1=0x00000000 is an unknown value
R2=0x00000000 is an unknown value
R3=0x00000000 is an unknown value
R4=0xb5107800 is a thread
R5=0x00000000 is an unknown value
R6=0xb5107994 is an unknown value
R7=0xb52a1910 is pointing into the stack for thread: 0xb5107800
R8=0xb596a000: <offset 0x4fb000> in /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/client/libjvm.so at 0xb546f000
R9=0x00000004 is an unknown value
R10=0xb6d8c784: <offset 0x191d784> in /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/client/libjvm.so at 0xb546f000
R11=0x00000000 is an unknown value
R12=0xb51079d0 is an unknown value
R13=0xb52a1910 is pointing into the stack for thread: 0xb5107800
R14=0xaa414374: Java_tel_schich_javacan_platform_linux_LinuxNetworkDevice_resolveInterfaceName+0x28 in /tmp/javacan-core-5431704161820866837/libjavacan-core.so at 0xaa411000
R15=0xb56f9bd2: <offset 0x28abd2> in /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/client/libjvm.so at 0xb546f000
Stack: [0xb5253000,0xb52a3000], sp=0xb52a1910, free space=314k
Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
V [libjvm.so+0x28abd2]
Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
j tel.schich.javacan.platform.linux.LinuxNetworkDevice.resolveInterfaceName(Ljava/lang/String;)J+0
j tel.schich.javacan.platform.linux.LinuxNetworkDevice.lookup(Ljava/lang/String;)Ltel/schich/javacan/NetworkDevice;+1
j tel.schich.javacan.NetworkDevice.lookup(Ljava/lang/String;)Ltel/schich/javacan/NetworkDevice;+29
j space.sdk.core.entities.comm.CANCommAdapter.onStartup()V+59
j space.sdk.core.service.CommService.init()V+88
j space.sdk.core.SpaceSDK$$Lambda$5.accept(Ljava/lang/Object;)V+4
j java.lang.Iterable.forEach(Ljava/util/function/Consumer;)V+30
j space.sdk.core.SpaceSDK.onEnable()V+47
j space.sdk.core.Main.main([Ljava/lang/String;)V+16
v ~StubRoutines::call_stub
--------------- P R O C E S S ---------------
Java Threads: ( => current thread )
0xaa0d5400 JavaThread "redis-sub" [_thread_in_vm, id=2601, stack(0xa9c60000,0xa9cb0000)]
0xaa0ba400 JavaThread "commons-pool-evictor-thread" daemon [_thread_blocked, id=2600, stack(0xa9db0000,0xa9e00000)]
0xb5185400 JavaThread "Service Thread" daemon [_thread_blocked, id=2598, stack(0xaa715000,0xaa765000)]
0xb5182c00 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=2597, stack(0xaa766000,0xaa7e6000)]
0xb5180000 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=2596, stack(0xaa7e6000,0xaa836000)]
0xb5166400 JavaThread "Finalizer" daemon [_thread_blocked, id=2595, stack(0xaacb0000,0xaad00000)]
0xb5163800 JavaThread "Reference Handler" daemon [_thread_blocked, id=2594, stack(0xaae2c000,0xaae7c000)]
=>0xb5107800 JavaThread "main" [_thread_in_vm, id=2592, stack(0xb5253000,0xb52a3000)]
Other Threads:
0xb515dc00 VMThread [stack: 0xaae7d000,0xaaefd000] [id=2593]
0xb5187400 WatcherThread [stack: 0xaa695000,0xaa715000] [id=2599]
VM state:not at safepoint (normal execution)
VM Mutex/Monitor currently owned by a thread: None
Heap:
def new generation total 2432K, used 1314K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 48% used [0xab600000, 0xab708bc8, 0xab820000)
from space 256K, 100% used [0xab860000, 0xab8a0000, 0xab8a0000)
to space 256K, 0% used [0xab820000, 0xab820000, 0xab860000)
tenured generation total 5504K, used 3138K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 57% used [0xadea0000, 0xae1b0a28, 0xae1b0c00, 0xae400000)
Metaspace used 7445K, capacity 7630K, committed 7704K, reserved 8496K
Card table byte_map: [0xab5c2000,0xab600000] byte_map_base: 0xab067000
Polling page: 0xb6f3e000
CodeCache: size=32768Kb used=1734Kb max_used=1734Kb free=31033Kb
bounds [0xb30b6000, 0xb326e000, 0xb50b6000]
total_blobs=533 nmethods=360 adapters=105
compilation: enabled
Compilation events (10 events):
Event: 8.257 Thread 0xb5182c00 353 java.util.zip.ZipCoder::isUTF8 (5 bytes)
Event: 8.258 Thread 0xb5182c00 nmethod 353 0xb3264948 code [0xb3264a40, 0xb3264afc]
Event: 8.412 Thread 0xb5182c00 357 java.net.URL::getPort (5 bytes)
Event: 8.413 Thread 0xb5182c00 nmethod 357 0xb3266248 code [0xb3266340, 0xb32663fc]
Event: 8.475 Thread 0xb5182c00 358 java.lang.invoke.MethodType::checkPtypes (61 bytes)
Event: 8.486 Thread 0xb5182c00 nmethod 358 0xb3266448 code [0xb32665c0, 0xb3266a74]
Event: 8.496 Thread 0xb5182c00 359 java.util.Properties::load0 (250 bytes)
Event: 8.504 Thread 0xb5182c00 nmethod 359 0xb3266e88 code [0xb3266fc0, 0xb326738c]
Event: 8.525 Thread 0xb5182c00 360 java.util.BitSet::wordIndex (5 bytes)
Event: 8.525 Thread 0xb5182c00 nmethod 360 0xb3267688 code [0xb3267760, 0xb32677fc]
GC Heap History (10 events):
Event: 5.381 GC heap before
{Heap before GC invocations=6 (full 0):
def new generation total 2432K, used 2431K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 100% used [0xab600000, 0xab820000, 0xab820000)
from space 256K, 99% used [0xab820000, 0xab85fff8, 0xab860000)
to space 256K, 0% used [0xab860000, 0xab860000, 0xab8a0000)
tenured generation total 5504K, used 2081K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 37% used [0xadea0000, 0xae0a8738, 0xae0a8800, 0xae400000)
Metaspace used 4936K, capacity 5116K, committed 5144K, reserved 5424K
Event: 5.395 GC heap after
Heap after GC invocations=7 (full 0):
def new generation total 2432K, used 255K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 0% used [0xab600000, 0xab600000, 0xab820000)
from space 256K, 99% used [0xab860000, 0xab89fff8, 0xab8a0000)
to space 256K, 0% used [0xab820000, 0xab820000, 0xab860000)
tenured generation total 5504K, used 2370K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 43% used [0xadea0000, 0xae0f0be8, 0xae0f0c00, 0xae400000)
Metaspace used 4936K, capacity 5116K, committed 5144K, reserved 5424K
}
Event: 6.099 GC heap before
{Heap before GC invocations=7 (full 0):
def new generation total 2432K, used 2430K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 99% used [0xab600000, 0xab81f928, 0xab820000)
from space 256K, 99% used [0xab860000, 0xab89fff8, 0xab8a0000)
to space 256K, 0% used [0xab820000, 0xab820000, 0xab860000)
tenured generation total 5504K, used 2370K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 43% used [0xadea0000, 0xae0f0be8, 0xae0f0c00, 0xae400000)
Metaspace used 5171K, capacity 5308K, committed 5400K, reserved 5424K
Event: 6.108 GC heap after
Heap after GC invocations=8 (full 0):
def new generation total 2432K, used 256K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 0% used [0xab600000, 0xab600000, 0xab820000)
from space 256K, 100% used [0xab820000, 0xab860000, 0xab860000)
to space 256K, 0% used [0xab860000, 0xab860000, 0xab8a0000)
tenured generation total 5504K, used 2515K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 45% used [0xadea0000, 0xae114c50, 0xae114e00, 0xae400000)
Metaspace used 5171K, capacity 5308K, committed 5400K, reserved 5424K
}
Event: 6.739 GC heap before
{Heap before GC invocations=8 (full 0):
def new generation total 2432K, used 2432K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 100% used [0xab600000, 0xab820000, 0xab820000)
from space 256K, 100% used [0xab820000, 0xab860000, 0xab860000)
to space 256K, 0% used [0xab860000, 0xab860000, 0xab8a0000)
tenured generation total 5504K, used 2515K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 45% used [0xadea0000, 0xae114c50, 0xae114e00, 0xae400000)
Metaspace used 5530K, capacity 5704K, committed 5784K, reserved 6448K
Event: 6.752 GC heap after
Heap after GC invocations=9 (full 0):
def new generation total 2432K, used 256K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 0% used [0xab600000, 0xab600000, 0xab820000)
from space 256K, 100% used [0xab860000, 0xab8a0000, 0xab8a0000)
to space 256K, 0% used [0xab820000, 0xab820000, 0xab860000)
tenured generation total 5504K, used 2691K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 48% used [0xadea0000, 0xae140d88, 0xae140e00, 0xae400000)
Metaspace used 5530K, capacity 5704K, committed 5784K, reserved 6448K
}
Event: 7.180 GC heap before
{Heap before GC invocations=9 (full 0):
def new generation total 2432K, used 2432K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 100% used [0xab600000, 0xab820000, 0xab820000)
from space 256K, 100% used [0xab860000, 0xab8a0000, 0xab8a0000)
to space 256K, 0% used [0xab820000, 0xab820000, 0xab860000)
tenured generation total 5504K, used 2691K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 48% used [0xadea0000, 0xae140d88, 0xae140e00, 0xae400000)
Metaspace used 5810K, capacity 5960K, committed 6040K, reserved 6448K
Event: 7.188 GC heap after
Heap after GC invocations=10 (full 0):
def new generation total 2432K, used 229K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 0% used [0xab600000, 0xab600000, 0xab820000)
from space 256K, 89% used [0xab820000, 0xab859418, 0xab860000)
to space 256K, 0% used [0xab860000, 0xab860000, 0xab8a0000)
tenured generation total 5504K, used 2786K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 50% used [0xadea0000, 0xae1589b0, 0xae158a00, 0xae400000)
Metaspace used 5810K, capacity 5960K, committed 6040K, reserved 6448K
}
Event: 8.299 GC heap before
{Heap before GC invocations=10 (full 0):
def new generation total 2432K, used 2405K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 100% used [0xab600000, 0xab820000, 0xab820000)
from space 256K, 89% used [0xab820000, 0xab859418, 0xab860000)
to space 256K, 0% used [0xab860000, 0xab860000, 0xab8a0000)
tenured generation total 5504K, used 2786K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 50% used [0xadea0000, 0xae1589b0, 0xae158a00, 0xae400000)
Metaspace used 7048K, capacity 7209K, committed 7320K, reserved 7472K
Event: 8.319 GC heap after
Heap after GC invocations=11 (full 0):
def new generation total 2432K, used 256K [0xab600000, 0xab8a0000, 0xadea0000)
eden space 2176K, 0% used [0xab600000, 0xab600000, 0xab820000)
from space 256K, 100% used [0xab860000, 0xab8a0000, 0xab8a0000)
to space 256K, 0% used [0xab820000, 0xab820000, 0xab860000)
tenured generation total 5504K, used 3138K [0xadea0000, 0xae400000, 0xb3000000)
the space 5504K, 57% used [0xadea0000, 0xae1b0a28, 0xae1b0c00, 0xae400000)
Metaspace used 7048K, capacity 7209K, committed 7320K, reserved 7472K
}
Deoptimization events (0 events):
No events
Classes redefined (0 events):
No events
Internal exceptions (10 events):
Event: 8.167 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7af4f8) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 8.170 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7b1180) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 8.173 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7b3890) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 8.175 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7b5290) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 8.179 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7b77f0) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 8.179 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7b8538) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 8.189 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7bc4c0) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 8.224 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7d4328) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 8.231 Thread 0xb5107800 Exception <a 'java/lang/ArrayIndexOutOfBoundsException'> (0xab7e15e8) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/runtime/sharedRuntime.cpp, line 609]
Event: 8.644 Thread 0xb5107800 Exception <a 'sun/nio/fs/UnixException'> (0xab6c1130) thrown at [/build/openjdk-8-FLOHKg/openjdk-8-8u272-b10/src/hotspot/src/share/vm/prims/jni.cpp, line 711]
Events (10 events):
Event: 8.651 loading class redis/clients/jedis/Protocol$Command
Event: 8.651 loading class redis/clients/jedis/Protocol$Command done
Event: 8.654 Executing VM operation: RevokeBias
Event: 8.654 Executing VM operation: RevokeBias done
Event: 8.665 loading class java/nio/channels/Channels$1
Event: 8.666 loading class java/nio/channels/Channels$1 done
Event: 8.682 loading class java/io/DeleteOnExitHook
Event: 8.685 loading class java/io/DeleteOnExitHook done
Event: 8.685 loading class java/io/DeleteOnExitHook$1
Event: 8.686 loading class java/io/DeleteOnExitHook$1 done
Dynamic libraries:
00430000-00431000 r-xp 00000000 b3:01 4234 /usr/lib/jvm/java-8-openjdk-armhf/jre/bin/java
00440000-00441000 r--p 00000000 b3:01 4234 /usr/lib/jvm/java-8-openjdk-armhf/jre/bin/java
00441000-00442000 rw-p 00001000 b3:01 4234 /usr/lib/jvm/java-8-openjdk-armhf/jre/bin/java
0049e000-005ec000 rw-p 00000000 00:00 0 [heap]
a9c60000-a9c63000 ---p 00000000 00:00 0
a9c63000-a9cf0000 rw-p 00000000 00:00 0
a9cf0000-a9db0000 ---p 00000000 00:00 0
a9db0000-a9db3000 ---p 00000000 00:00 0
a9db3000-a9f00000 rw-p 00000000 00:00 0
a9f00000-aa000000 rw-p 00000000 00:00 0
aa000000-aa0d9000 rw-p 00000000 00:00 0
aa0d9000-aa100000 ---p 00000000 00:00 0
aa100000-aa200000 rw-p 00000000 00:00 0
aa200000-aa300000 rw-p 00000000 00:00 0
aa300000-aa3ff000 rw-p 00000000 00:00 0
aa3ff000-aa400000 ---p 00000000 00:00 0
aa411000-aa416000 r-xp 00000000 b3:01 381896 /tmp/javacan-core-5431704161820866837/libjavacan-core.so
aa416000-aa426000 ---p 00005000 b3:01 381896 /tmp/javacan-core-5431704161820866837/libjavacan-core.so
aa426000-aa427000 r--p 00005000 b3:01 381896 /tmp/javacan-core-5431704161820866837/libjavacan-core.so
aa427000-aa428000 rw-p 00006000 b3:01 381896 /tmp/javacan-core-5431704161820866837/libjavacan-core.so
aa428000-aa42a000 r--s 00005000 b3:01 253995 /usr/local/nebula/plugins/Mil1553Plugin-1.0-SNAPSHOT.jar
aa42a000-aa42d000 r--s 00029000 b3:01 253992 /usr/local/nebula/lib/httpasyncclient-4.1.4.jar
aa42d000-aa435000 r--s 00053000 b3:01 253976 /usr/local/nebula/lib/httpcore-nio-4.4.13.jar
aa435000-aa437000 r--s 00009000 b3:01 253972 /usr/local/nebula/lib/httpmime-4.5.13.jar
aa437000-aa43e000 r--s 0004b000 b3:01 254596 /usr/local/nebula/lib/commons-codec-1.11.jar
aa43e000-aa440000 r--s 0000e000 b3:01 254463 /usr/local/nebula/lib/commons-logging-1.2.jar
aa440000-aa448000 r--s 00049000 b3:01 257132 /usr/local/nebula/lib/httpcore-4.4.13.jar
aa448000-aa455000 r--s 000b2000 b3:01 253974 /usr/local/nebula/lib/httpclient-4.5.13.jar
aa455000-aa459000 r--s 0002b000 b3:01 254455 /usr/local/nebula/lib/unirest-java-3.11.04.jar
aa459000-aa46a000 r--s 0008d000 b3:01 253988 /usr/local/nebula/lib/joda-time-2.10.8.jar
aa46a000-aa46b000 r--s 00002000 b3:01 253970 /usr/local/nebula/lib/bit-lib4j-1.5.2.jar
aa46b000-aa476000 r--s 000b5000 b3:01 253975 /usr/local/nebula/lib/javassist-3.26.0-GA.jar
aa476000-aa478000 r--s 00018000 b3:01 254457 /usr/local/nebula/lib/reflections-0.9.12.jar
aa478000-aa47b000 r--s 0001d000 b3:01 253991 /usr/local/nebula/lib/javacan-1.0.jar
aa47b000-aa47e000 r--s 0001d000 b3:01 253980 /usr/local/nebula/lib/commons-pool2-2.6.2.jar
aa47e000-aa48c000 r--s 00093000 b3:01 254166 /usr/local/nebula/lib/jedis-3.2.0.jar
aa48c000-aa495000 r--s 00073000 b3:01 257133 /usr/local/nebula/lib/commons-lang3-3.9.jar
aa495000-aa498000 r--s 00013000 b3:01 254461 /usr/local/nebula/lib/commons-io-1.3.2.jar
aa498000-aa4ad000 r--s 0021e000 b3:01 253971 /usr/local/nebula/lib/h2-1.4.200.jar
aa4ad000-aa4ae000 r--s 00007000 b3:01 254456 /usr/local/nebula/lib/slf4j-api-1.7.12.jar
aa4ae000-aa4b2000 r--s 00023000 b3:01 254454 /usr/local/nebula/lib/cron-utils-9.0.1.jar
aa4b2000-aa4b4000 r--s 00014000 b3:01 254460 /usr/local/nebula/lib/auto-common-0.10.jar
aa4b4000-aa4b5000 r--s 00000000 b3:01 254593 /usr/local/nebula/lib/auto-service-annotations-1.0-rc5.jar
aa4b5000-aa4b7000 r--s 00000000 b3:01 254592 /usr/local/nebula/lib/aopalliance-1.0.jar
aa4b7000-aa4c8000 r--s 001bc000 b3:01 4311 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/jsse.jar
aa4c8000-aa4cf000 r-xp 00000000 b3:01 4269 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libmanagement.so
aa4cf000-aa4de000 ---p 00007000 b3:01 4269 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libmanagement.so
aa4de000-aa4df000 r--p 00006000 b3:01 4269 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libmanagement.so
aa4df000-aa4e0000 rw-p 00007000 b3:01 4269 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libmanagement.so
aa4e0000-aa4ee000 r--s 00097000 b3:01 253969 /usr/local/nebula/lib/guice-4.1.0.jar
aa4ee000-aa4f3000 r--s 00036000 b3:01 253994 /usr/local/nebula/lib/gson-2.8.6.jar
aa4f3000-aa4f5000 r--s 00001000 b3:01 254458 /usr/local/nebula/lib/j2objc-annotations-1.3.jar
aa4f5000-aa500000 r--s 00027000 b3:01 254595 /usr/local/nebula/lib/checker-qual-2.11.1.jar
aa500000-aa5fe000 rw-p 00000000 00:00 0
aa5fe000-aa600000 ---p 00000000 00:00 0
aa600000-aa601000 r--s 00002000 b3:01 254088 /usr/local/nebula/lib/auto-service-1.0-rc5.jar
aa601000-aa603000 r--s 00002000 b3:01 253979 /usr/local/nebula/lib/error_prone_annotations-2.3.4.jar
aa603000-aa635000 r--s 00278000 b3:01 254598 /usr/local/nebula/lib/guava-29.0-jre.jar
aa635000-aa646000 r-xp 00000000 b3:01 4271 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libnet.so
aa646000-aa655000 ---p 00011000 b3:01 4271 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libnet.so
aa655000-aa656000 r--p 00010000 b3:01 4271 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libnet.so
aa656000-aa657000 rw-p 00011000 b3:01 4271 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libnet.so
aa657000-aa663000 r-xp 00000000 b3:01 4272 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libnio.so
aa663000-aa673000 ---p 0000c000 b3:01 4272 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libnio.so
aa673000-aa674000 r--p 0000c000 b3:01 4272 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libnio.so
aa674000-aa675000 rw-p 0000d000 b3:01 4272 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libnio.so
aa675000-aa679000 r--s 00021000 b3:01 3573 /usr/local/nebula/sdk-space-core.jar
aa679000-aa694000 r--s 00394000 b3:01 4287 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/cldrdata.jar
aa694000-aa695000 ---p 00000000 00:00 0
aa695000-aa715000 rw-p 00000000 00:00 0
aa715000-aa718000 ---p 00000000 00:00 0
aa718000-aa765000 rw-p 00000000 00:00 0
aa765000-aa766000 ---p 00000000 00:00 0
aa766000-aa769000 ---p 00000000 00:00 0
aa769000-aa7e6000 rw-p 00000000 00:00 0
aa7e6000-aa7e9000 ---p 00000000 00:00 0
aa7e9000-aa836000 rw-p 00000000 00:00 0
aa836000-aaab0000 r--p 0006c000 b3:01 45874 /usr/lib/locale/locale-archive
aaab0000-aacb0000 r--p 00000000 b3:01 45874 /usr/lib/locale/locale-archive
aacb0000-aacb3000 ---p 00000000 00:00 0
aacb3000-aad00000 rw-p 00000000 00:00 0
aad00000-aad22000 rw-p 00000000 00:00 0
aad22000-aae00000 ---p 00000000 00:00 0
aae00000-aae01000 r--s 00000000 b3:01 254597 /usr/local/nebula/lib/javax.inject-1.jar
aae01000-aae03000 r--s 00003000 b3:01 253985 /usr/local/nebula/lib/jsr305-3.0.2.jar
aae03000-aae07000 r--s 00040000 b3:01 4295 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/sunpkcs11.jar
aae07000-aae11000 r--s 00117000 b3:01 4291 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/localedata.jar
aae11000-aae2c000 r--s 001d6000 b3:01 4292 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/nashorn.jar
aae2c000-aae2f000 ---p 00000000 00:00 0
aae2f000-aae7c000 rw-p 00000000 00:00 0
aae7c000-aae7d000 ---p 00000000 00:00 0
aae7d000-aaf4b000 rw-p 00000000 00:00 0
aaf4b000-ab11b000 r--s 03c94000 b3:01 4316 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/rt.jar
ab11b000-ab5bc000 rw-p 00000000 00:00 0
ab5bc000-ab5c2000 ---p 00000000 00:00 0
ab5c2000-ab5c4000 rw-p 00000000 00:00 0
ab5c4000-ab5d6000 ---p 00000000 00:00 0
ab5d6000-ab5d9000 rw-p 00000000 00:00 0
ab5d9000-ab5ff000 ---p 00000000 00:00 0
ab5ff000-ab8a0000 rw-p 00000000 00:00 0
ab8a0000-adea0000 ---p 00000000 00:00 0
adea0000-ae400000 rw-p 00000000 00:00 0
ae400000-b3000000 ---p 00000000 00:00 0
b3000000-b3002000 r--s 00000000 b3:01 254459 /usr/local/nebula/lib/failureaccess-1.0.1.jar
b3002000-b3004000 r--s 00001000 b3:01 4288 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/dnsns.jar
b3004000-b3007000 r--s 0000f000 b3:01 4289 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/icedtea-sound.jar
b3007000-b300d000 r--s 0003d000 b3:01 4294 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/sunjce_provider.jar
b300d000-b3010000 rw-p 00000000 00:00 0
b3010000-b3036000 ---p 00000000 00:00 0
b3036000-b303d000 rw-p 00000000 00:00 0
b303d000-b30b6000 ---p 00000000 00:00 0
b30b6000-b326e000 rwxp 00000000 00:00 0
b326e000-b50b6000 ---p 00000000 00:00 0
b50b6000-b50bd000 r-xp 00000000 b3:01 46142 /lib/arm-linux-gnueabihf/libnss_files-2.31.so
b50bd000-b50cc000 ---p 00007000 b3:01 46142 /lib/arm-linux-gnueabihf/libnss_files-2.31.so
b50cc000-b50cd000 r--p 00006000 b3:01 46142 /lib/arm-linux-gnueabihf/libnss_files-2.31.so
b50cd000-b50ce000 rw-p 00007000 b3:01 46142 /lib/arm-linux-gnueabihf/libnss_files-2.31.so
b50ce000-b50d4000 rw-p 00000000 00:00 0
b50d4000-b50ef000 r-xp 00000000 b3:01 4260 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libjava.so
b50ef000-b50fe000 ---p 0001b000 b3:01 4260 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libjava.so
b50fe000-b50ff000 r--p 0001a000 b3:01 4260 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libjava.so
b50ff000-b5100000 rw-p 0001b000 b3:01 4260 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libjava.so
b5100000-b51fd000 rw-p 00000000 00:00 0
b51fd000-b5200000 ---p 00000000 00:00 0
b5200000-b5201000 r--s 00000000 b3:01 257089 /usr/local/nebula/lib/listenablefuture-9999.0-empty-to-avoid-conflict-with-guava.jar
b5201000-b5203000 r--s 00010000 b3:01 4296 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/zipfs.jar
b5203000-b5205000 r--s 0000c000 b3:01 4489 /usr/share/java/java-atk-wrapper.jar
b5205000-b520b000 r--s 000d3000 b3:01 4310 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/jfr.jar
b520b000-b5211000 r-xp 00000000 b3:01 4278 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libzip.so
b5211000-b5220000 ---p 00006000 b3:01 4278 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libzip.so
b5220000-b5221000 r--p 00005000 b3:01 4278 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libzip.so
b5221000-b5222000 rw-p 00006000 b3:01 4278 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libzip.so
b5222000-b522b000 r-xp 00000000 b3:01 4277 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libverify.so
b522b000-b523a000 ---p 00009000 b3:01 4277 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libverify.so
b523a000-b523b000 r--p 00008000 b3:01 4277 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libverify.so
b523b000-b523c000 rw-p 00009000 b3:01 4277 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/libverify.so
b523c000-b5241000 r-xp 00000000 b3:01 46147 /lib/arm-linux-gnueabihf/librt-2.31.so
b5241000-b5250000 ---p 00005000 b3:01 46147 /lib/arm-linux-gnueabihf/librt-2.31.so
b5250000-b5251000 r--p 00004000 b3:01 46147 /lib/arm-linux-gnueabihf/librt-2.31.so
b5251000-b5252000 rw-p 00005000 b3:01 46147 /lib/arm-linux-gnueabihf/librt-2.31.so
b5252000-b5253000 ---p 00000000 00:00 0
b5253000-b5256000 ---p 00000000 00:00 0
b5256000-b52a3000 rw-p 00000000 00:00 0
b52a3000-b52bb000 r-xp 00000000 b3:01 44831 /lib/arm-linux-gnueabihf/libgcc_s.so.1
b52bb000-b52ca000 ---p 00018000 b3:01 44831 /lib/arm-linux-gnueabihf/libgcc_s.so.1
b52ca000-b52cb000 r--p 00017000 b3:01 44831 /lib/arm-linux-gnueabihf/libgcc_s.so.1
b52cb000-b52cc000 rw-p 00018000 b3:01 44831 /lib/arm-linux-gnueabihf/libgcc_s.so.1
b52cc000-b5323000 r-xp 00000000 b3:01 46137 /lib/arm-linux-gnueabihf/libm-2.31.so
b5323000-b5332000 ---p 00057000 b3:01 46137 /lib/arm-linux-gnueabihf/libm-2.31.so
b5332000-b5333000 r--p 00056000 b3:01 46137 /lib/arm-linux-gnueabihf/libm-2.31.so
b5333000-b5334000 rw-p 00057000 b3:01 46137 /lib/arm-linux-gnueabihf/libm-2.31.so
b5334000-b5456000 r-xp 00000000 b3:01 24365 /usr/lib/arm-linux-gnueabihf/libstdc++.so.6.0.28
b5456000-b5466000 ---p 00122000 b3:01 24365 /usr/lib/arm-linux-gnueabihf/libstdc++.so.6.0.28
b5466000-b546b000 r--p 00122000 b3:01 24365 /usr/lib/arm-linux-gnueabihf/libstdc++.so.6.0.28
b546b000-b546d000 rw-p 00127000 b3:01 24365 /usr/lib/arm-linux-gnueabihf/libstdc++.so.6.0.28
b546d000-b546f000 rw-p 00000000 00:00 0
b546f000-b594a000 r-xp 00000000 b3:01 4245 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/client/libjvm.so
b594a000-b5959000 ---p 004db000 b3:01 4245 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/client/libjvm.so
b5959000-b596a000 r--p 004da000 b3:01 4245 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/client/libjvm.so
b596a000-b5982000 rw-p 004eb000 b3:01 4245 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/client/libjvm.so
b5982000-b6da1000 rw-p 00000000 00:00 0
b6da1000-b6db4000 r-xp 00000000 b3:01 46145 /lib/arm-linux-gnueabihf/libpthread-2.31.so
b6db4000-b6dc3000 ---p 00013000 b3:01 46145 /lib/arm-linux-gnueabihf/libpthread-2.31.so
b6dc3000-b6dc4000 r--p 00012000 b3:01 46145 /lib/arm-linux-gnueabihf/libpthread-2.31.so
b6dc4000-b6dc5000 rw-p 00013000 b3:01 46145 /lib/arm-linux-gnueabihf/libpthread-2.31.so
b6dc5000-b6dc7000 rw-p 00000000 00:00 0
b6dc7000-b6dc9000 r-xp 00000000 b3:01 46122 /lib/arm-linux-gnueabihf/libdl-2.31.so
b6dc9000-b6dd8000 ---p 00002000 b3:01 46122 /lib/arm-linux-gnueabihf/libdl-2.31.so
b6dd8000-b6dd9000 r--p 00001000 b3:01 46122 /lib/arm-linux-gnueabihf/libdl-2.31.so
b6dd9000-b6dda000 rw-p 00002000 b3:01 46122 /lib/arm-linux-gnueabihf/libdl-2.31.so
b6dda000-b6dec000 r-xp 00000000 b3:01 45866 /lib/arm-linux-gnueabihf/libz.so.1.2.11
b6dec000-b6dfb000 ---p 00012000 b3:01 45866 /lib/arm-linux-gnueabihf/libz.so.1.2.11
b6dfb000-b6dfc000 r--p 00011000 b3:01 45866 /lib/arm-linux-gnueabihf/libz.so.1.2.11
b6dfc000-b6dfd000 rw-p 00012000 b3:01 45866 /lib/arm-linux-gnueabihf/libz.so.1.2.11
b6dfd000-b6ee7000 r-xp 00000000 b3:01 46121 /lib/arm-linux-gnueabihf/libc-2.31.so
b6ee7000-b6ef6000 ---p 000ea000 b3:01 46121 /lib/arm-linux-gnueabihf/libc-2.31.so
b6ef6000-b6ef8000 r--p 000e9000 b3:01 46121 /lib/arm-linux-gnueabihf/libc-2.31.so
b6ef8000-b6efa000 rw-p 000eb000 b3:01 46121 /lib/arm-linux-gnueabihf/libc-2.31.so
b6efa000-b6efc000 rw-p 00000000 00:00 0
b6efc000-b6f07000 r-xp 00000000 b3:01 4246 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/jli/libjli.so
b6f07000-b6f16000 ---p 0000b000 b3:01 4246 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/jli/libjli.so
b6f16000-b6f17000 r--p 0000a000 b3:01 4246 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/jli/libjli.so
b6f17000-b6f18000 rw-p 0000b000 b3:01 4246 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/arm/jli/libjli.so
b6f18000-b6f32000 r-xp 00000000 b3:01 44238 /lib/arm-linux-gnueabihf/ld-2.31.so
b6f32000-b6f33000 r--s 0000d000 b3:01 4293 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/sunec.jar
b6f33000-b6f34000 r--s 0000a000 b3:01 4290 /usr/lib/jvm/java-8-openjdk-armhf/jre/lib/ext/jaccess.jar
b6f34000-b6f36000 rw-p 00000000 00:00 0
b6f36000-b6f3e000 rw-s 00000000 b3:01 381801 /tmp/hsperfdata_root/2591
b6f3e000-b6f3f000 ---p 00000000 00:00 0
b6f3f000-b6f41000 rw-p 00000000 00:00 0
b6f41000-b6f42000 r--p 00019000 b3:01 44238 /lib/arm-linux-gnueabihf/ld-2.31.so
b6f42000-b6f43000 rw-p 0001a000 b3:01 44238 /lib/arm-linux-gnueabihf/ld-2.31.so
be8c9000-be8ea000 rw-p 00000000 00:00 0 [stack]
bef5c000-bef5d000 r-xp 00000000 00:00 0 [sigpage]
bef5d000-bef5e000 r--p 00000000 00:00 0 [vvar]
bef5e000-bef5f000 r-xp 00000000 00:00 0 [vdso]
ffff0000-ffff1000 r-xp 00000000 00:00 0 [vectors]
VM Arguments:
jvm_args: -Djavacan.native.javacan-core.classpath=/native/libJavaCAN-armv7a.so
java_command: sdk-space-core.jar
java_class_path (initial): sdk-space-core.jar
Launcher Type: SUN_STANDARD
Environment Variables:
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
SHELL=/bin/bash
Signal Handlers:
SIGSEGV: [libjvm.so+0x46b56d], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGBUS: [libjvm.so+0x46b56d], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGFPE: [libjvm.so+0x38ade1], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGPIPE: [libjvm.so+0x38ade1], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGXFSZ: [libjvm.so+0x38ade1], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGILL: [libjvm.so+0x38ade1], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGUSR1: SIG_DFL, sa_mask[0]=00000000000000000000000000000000, sa_flags=none
SIGUSR2: [libjvm.so+0x38ac71], sa_mask[0]=00000000000000000000000000000000, sa_flags=SA_RESTART|SA_SIGINFO
SIGHUP: [libjvm.so+0x38ad71], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGINT: [libjvm.so+0x38ad71], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGTERM: [libjvm.so+0x38ad71], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
SIGQUIT: [libjvm.so+0x38ad71], sa_mask[0]=11111111011111111101111111111110, sa_flags=SA_RESTART|SA_SIGINFO
--------------- S Y S T E M ---------------
OS:PRETTY_NAME="Debian GNU/Linux 10 (buster)"
NAME="Debian GNU/Linux"
VERSION_ID="10"
VERSION="10 (buster)"
VERSION_CODENAME=buster
ID=debian
HOME_URL="https://www.debian.org/"
SUPPORT_URL="https://www.debian.org/support"
BUG_REPORT_URL="https://bugs.debian.org/"
uname:Linux 4.19.94-ti-r42 #1buster SMP PREEMPT Tue Mar 31 19:38:29 UTC 2020 armv7l
libc:glibc 2.31 NPTL 2.31
rlimit: STACK 8192k, CORE infinity, NPROC 3425, NOFILE 524288, AS infinity
load average:0.39 0.22 0.10
/proc/meminfo:
MemTotal: 495036 kB
MemFree: 313680 kB
MemAvailable: 413556 kB
Buffers: 13420 kB
Cached: 80964 kB
SwapCached: 0 kB
Active: 102956 kB
Inactive: 36908 kB
Active(anon): 45648 kB
Inactive(anon): 180 kB
Active(file): 57308 kB
Inactive(file): 36728 kB
Unevictable: 0 kB
Mlocked: 0 kB
HighTotal: 0 kB
HighFree: 0 kB
LowTotal: 495036 kB
LowFree: 313680 kB
SwapTotal: 0 kB
SwapFree: 0 kB
Dirty: 168 kB
Writeback: 0 kB
AnonPages: 45544 kB
Mapped: 27484 kB
Shmem: 292 kB
Slab: 32176 kB
SReclaimable: 16868 kB
SUnreclaim: 15308 kB
KernelStack: 832 kB
PageTables: 992 kB
NFS_Unstable: 0 kB
Bounce: 0 kB
WritebackTmp: 0 kB
CommitLimit: 247516 kB
Committed_AS: 154932 kB
VmallocTotal: 516096 kB
VmallocUsed: 0 kB
VmallocChunk: 0 kB
Percpu: 140 kB
CmaTotal: 49152 kB
CmaFree: 48116 kB
container (cgroup) information:
container_type: cgroupv1
cpu_cpuset_cpus: 0
cpu_memory_nodes: 0
active_processor_count: 1
cpu_quota: -1
cpu_period: 100000
cpu_shares: -1
memory_limit_in_bytes: -1
memory_and_swap_limit_in_bytes: -1
memory_soft_limit_in_bytes: -1
memory_usage_in_bytes: 66174976
memory_max_usage_in_bytes: 180797440
CPU:total 1 (initial active 1) 0x41:0x3:0xc08:2
/proc/cpuinfo:
processor : 0
model name : ARMv7 Processor rev 2 (v7l)
BogoMIPS : 995.32
Features : half thumb fastmult vfp edsp thumbee neon vfpv3 tls vfpd32
CPU implementer : 0x41
CPU architecture: 7
CPU variant : 0x3
CPU part : 0xc08
CPU revision : 2
Hardware : Generic AM33XX (Flattened Device Tree)
Revision : 0000
Serial : e4:15:f6:e0:a4:dc
Memory: 4k page, physical 495036k(313680k free), swap 0k(0k free)
vm_info: OpenJDK Client VM (25.272-b10) for linux-aarch32 JRE (1.8.0_272-8u272-b10-1-b10), built on Oct 26 2020 20:29:16 by "buildd" with gcc 9.3.0
time: Tue Dec 15 22:53:20 2020
timezone: UTC
elapsed time: 8.757771 seconds (0d 0h 0m 8s)
I deployed a snapshot to the sonatype snapshot repo including a few more null checks
and one more built with debug info. I tried to poke around a bit in that function but could replicate the exact same stack trace, yet.
I'm closing this issue since there hasn't been any more feedback and with all the changes around library loading since then, especially #31.