Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

JNI ERROR (app bug): weak global reference table overflow (max=51200) #14010

Closed
whind opened this issue Feb 28, 2019 · 14 comments
Closed

JNI ERROR (app bug): weak global reference table overflow (max=51200) #14010

whind opened this issue Feb 28, 2019 · 14 comments
Assignees
Labels
Android Mapbox Maps SDK for Android

Comments

@whind
Copy link

whind commented Feb 28, 2019

Hello! Problem with weak reference table again:

A/zygote64: indirect_reference_table.cc:278] JNI ERROR (app bug): weak global reference table overflow (max=51200)
indirect_reference_table.cc:278] weak global reference table dump:
indirect_reference_table.cc:278] Last 10 entries (of 51200):
indirect_reference_table.cc:278] 51199: 0x153c0000 java.lang.Thread
indirect_reference_table.cc:278] 51198: 0x15380000 java.lang.Thread
indirect_reference_table.cc:278] 51197: 0x15340000 java.lang.Thread
indirect_reference_table.cc:278] 51196: 0x15300000 java.lang.Thread
indirect_reference_table.cc:278] 51195: 0x152c0000 java.lang.Thread
indirect_reference_table.cc:278] 51194: 0x15280000 java.lang.Thread
indirect_reference_table.cc:278] 51193: 0x15240000 java.lang.Thread
indirect_reference_table.cc:278] 51192: 0x15200000 java.lang.Thread
indirect_reference_table.cc:278] 51191: 0x151c0000 java.lang.Thread
indirect_reference_table.cc:278] 51190: 0x15180000 java.lang.Thread
indirect_reference_table.cc:278] Summary:
indirect_reference_table.cc:278] 6740 of java.lang.Class (6740 unique instances)
indirect_reference_table.cc:278] 210 of java.lang.Thread (210 unique instances)
indirect_reference_table.cc:278] 34 of java.lang.DexCache (34 unique instances)
indirect_reference_table.cc:278] 4 of dalvik.system.PathClassLoader (2 unique instances)
indirect_reference_table.cc:278] 3 of com.squareup.picasso.Utils$PicassoThread (3 unique instances)
indirect_reference_table.cc:278] 3 of android.os.HandlerThread (3 unique instances)
indirect_reference_table.cc:278] 2 of com.squareup.picasso.Dispatcher$DispatcherThread (2 unique instances)
indirect_reference_table.cc:278] 2 of com.squareup.picasso.Picasso$CleanupThread (2 unique instances)
indirect_reference_table.cc:278] 2 of com.amplitude.api.WorkerThread (2 unique instances)
indirect_reference_table.cc:278] 1 of android.opengl.GLSurfaceView$GLThread
indirect_reference_table.cc:278] 1 of okio.AsyncTimeout$Watchdog
A/zygote64: indirect_reference_table.cc:278] 1 of android.opengl.GLSurfaceView
indirect_reference_table.cc:278] 1 of java.lang.BootClassLoader
indirect_reference_table.cc:278] 1 of java.lang.ThreadGroup
indirect_reference_table.cc:278] 1 of android.net.ConnectivityThread
indirect_reference_table.cc:278]
runtime.cc:516] Runtime aborting...
runtime.cc:516]
runtime.cc:524] JNI ERROR (app bug): weak global reference table overflow (max=51200)
runtime.cc:524] weak global reference table dump:
runtime.cc:524] Last 10 entries (of 51200):
runtime.cc:524] 51199: 0x153c0000 java.lang.Thread
runtime.cc:524] 51198: 0x15380000 java.lang.Thread
runtime.cc:524] 51197: 0x15340000 java.lang.Thread
runtime.cc:524] 51196: 0x15300000 java.lang.Thread
runtime.cc:524] 51195: 0x152c0000 java.lang.Thread
runtime.cc:524] 51194: 0x15280000 java.lang.Thread
runtime.cc:524] 51193: 0x15240000 java.lang.Thread
runtime.cc:524] 51192: 0x15200000 java.lang.Thread
runtime.cc:524] 51191: 0x151c0000 java.lang.Thread
runtime.cc:524] 51190: 0x15180000 java.lang.Thread
runtime.cc:524] Summary:
runtime.cc:524] 6740 of java.lang.Class (6740 unique instances)
runtime.cc:524] 210 of java.lang.Thread (210 unique instances)
runtime.cc:524] 34 of java.lang.DexCache (34 unique instances)
runtime.cc:524] 4 of dalvik.system.PathClassLoader (2 unique instances)
runtime.cc:524] 3 of com.squareup.picasso.Utils$PicassoThread (3 unique instances)
runtime.cc:524] 3 of android.os.HandlerThread (3 unique instances)
runtime.cc:524] 2 of com.squareup.picasso.Dispatcher$DispatcherThread (2 unique instances)
runtime.cc:524] 2 of com.squareup.picasso.Picasso$CleanupThread (2 unique instances)
runtime.cc:524] 2 of com.amplitude.api.WorkerThread (2 unique instances)
runtime.cc:524] 1 of android.opengl.GLSurfaceView$GLThread
A/zygote64: runtime.cc:524] 1 of okio.AsyncTimeout$Watchdog
runtime.cc:524] 1 of android.opengl.GLSurfaceView
runtime.cc:524] 1 of java.lang.BootClassLoader
runtime.cc:524] 1 of java.lang.ThreadGroup
runtime.cc:524] 1 of android.net.ConnectivityThread
runtime.cc:524]
A/libc: Fatal signal 6 (SIGABRT), code -6 in tid 20468 (Thread-44346)

My code in Fragment:
class MapFragment : Fragment(),PermissionsListener, OnMapReadyCallback,MapboxMap.OnMapClickListener{
var permissionsManager:PermissionsManager?=null
private var mapView: MapView? = null
private var mapboxMap: MapboxMap? = null

override fun onCreateView(
    inflater: LayoutInflater, container: ViewGroup?,
    savedInstanceState: Bundle?
): View? {
    // Inflate the layout for this fragment
    val layout = inflater.inflate(R.layout.map_fragment, container, false)
    mapView = layout.findViewById(R.id.mapView) as MapView
    mapView?.onCreate(savedInstanceState)
    mapView?.getMapAsync(this)
    return layout
}

override fun onMapReady(mapboxMap: MapboxMap) {
    this.mapboxMap = mapboxMap
    mapboxMap.addOnMapClickListener(this)
    mapboxMap.setStyle(Style.MAPBOX_STREETS) {
            style -> enableLocationComponent(style)
    }

}
override fun onResume() {
super.onResume()
mapView?.onResume()
}

override fun onPause() {
    super.onPause()
    mapView?.onPause()
}

override fun onSaveInstanceState(outState: Bundle) {
    super.onSaveInstanceState(outState)
    mapView?.onSaveInstanceState(outState)
}

override fun onLowMemory() {
    super.onLowMemory()
    mapView?.onLowMemory()
}

override fun onDestroyView() {
    super.onDestroyView()
    if (client != null) {
        client!!.cancelCall()
    }
    if (mapboxMap != null) {
        mapboxMap?.removeOnMapClickListener(this)
    }
    mapboxMap?.locationComponent?.isLocationComponentEnabled=false
    mapView?.onDestroy()
}

override fun onPermissionResult(granted: Boolean) {
    if (granted) {
        mapboxMap!!.getStyle(Style.OnStyleLoaded() {
            enableLocationComponent(it)
        })
    } else {
        Toast.makeText(activity, "permission not granted", Toast.LENGTH_LONG).show()
    }
}

override fun onRequestPermissionsResult(requestCode: Int, permissions: Array<String>, grantResults: IntArray) {
    permissionsManager?.onRequestPermissionsResult(requestCode, permissions, grantResults)
}
private fun enableLocationComponent(style:Style) {
    if (PermissionsManager.areLocationPermissionsGranted(activity!!)) {
        val locationComponent = mapboxMap?.locationComponent
        //https://docs.mapbox.com/android/maps/overview/location-component/
        locationComponent?.activateLocationComponent(activity!!.applicationContext, style)
        locationComponent?.isLocationComponentEnabled = true

        locationComponent?.cameraMode = CameraMode.TRACKING
        locationComponent?.renderMode = RenderMode.COMPASS
        originLocation = locationComponent?.lastKnownLocation
    } else {
        permissionsManager = PermissionsManager(this)
        permissionsManager?.requestLocationPermissions(activity)
    }
}

Steps to reproduce

  1. Waiting some time, and application crashes

Configuration

**Android versions: Android 8.0.0
**Device models: Samsung Galaxy S8
**Mapbox SDK versions: mapbox-android-sdk:7.1.2

@LukasPaczos LukasPaczos added the Android Mapbox Maps SDK for Android label Feb 28, 2019
@whind
Copy link
Author

whind commented Mar 4, 2019

I changed code from Fragment to Activity, this issue still happens.

@whind
Copy link
Author

whind commented Mar 4, 2019

Mapbox dependencies^
implementation 'com.mapbox.mapboxsdk:mapbox-android-plugin-annotation-v7:0.5.0'
implementation 'com.mapbox.mapboxsdk:mapbox-sdk-services:4.5.0'
implementation 'com.mapbox.mapboxsdk:mapbox-android-sdk:7.1.2'

@whind
Copy link
Author

whind commented Mar 4, 2019

like issue #10528? but with version 7.1.2?

@djavid
Copy link

djavid commented Mar 4, 2019

Have the same issue with activity. Also getting #14001 on the same activity. Error occurs after some random waiting.

@tobrun
Copy link
Member

tobrun commented Mar 6, 2019

Looking at the JNI heap for a bunch of scenarios. I'm thinking that this only occurs when you have LocationComponent active with RenderMode configuration set to RenderMode.Compass.

@tobrun
Copy link
Member

tobrun commented Mar 13, 2019

Been profiling various use-cases and an overflow like this luckily doesn't occur as part of our normal map render flow. All allocated MapRunnable objects are delocated properly within the map lifetime. What I however see is that the Class component is increasing (this is also shown in OP: 6740 instances of java.lang.Class and 210 threads).

image

Depending on the use-case the entries change but 8/10 of the amount is coming from android tooling that is only active during debugging. So we can safely say that this occurs more frequently on debug builds vs release builds.

image

An example of such a leak is that the network profiler, I'm seeing it leak each network request made.

image

In above you can see it leaking the profiler through a gesture.


I identified that a specific location component configuration, is a large contributor of invoking the garbage collector. With each second, I'm seeing 45 redraws. While in normal use, I'm seeing 2 to 8 redraws when performing a gesture over a couple of seconds. Note that all render references are cleaned up nicely, but some autovalue references remain:

image

@tobrun
Copy link
Member

tobrun commented Mar 13, 2019

@whind could you use your profiler to identify what the following are:

6740 of java.lang.Class and 210 java.lang.Thread

Both these numbers are both very high, I'm able to hit a max of threads = 52 and Classes depends on usage (but 8/10 are coming from profiler themselves).

@calvarez-ov
Copy link

calvarez-ov commented Mar 26, 2019

I saw this just once so far. I don't have steps to reproduce it. But:

Looking at the JNI heap for a bunch of scenarios. I'm thinking that this only occurs when you have LocationComponent active with RenderMode configuration set to RenderMode.Compass.

I confirm this is our configuration.
Also:

  • debug build
  • Mapbox 7.2.0
  • Huawei P9 Lite/Nougat 7.0

@desertkun
Copy link

The issue is unrelated to RenderMode.Compass. Got a crash with RenderMode.NORMAL

A/zygote64: indirect_reference_table.cc:278] JNI ERROR (app bug): weak global reference table overflow (max=51200)
    indirect_reference_table.cc:278] weak global reference table dump:
    indirect_reference_table.cc:278]   Last 10 entries (of 51200):
    indirect_reference_table.cc:278]     51199: 0x15600000 java.lang.Thread
    indirect_reference_table.cc:278]     51198: 0x155c0000 java.lang.Thread
    indirect_reference_table.cc:278]     51197: 0x15580000 java.lang.Thread
    indirect_reference_table.cc:278]     51196: 0x15540000 java.lang.Thread
    indirect_reference_table.cc:278]     51195: 0x15500000 java.lang.Thread
    indirect_reference_table.cc:278]     51194: 0x154c0000 java.lang.Thread
    indirect_reference_table.cc:278]     51193: 0x15480000 java.lang.Thread
    indirect_reference_table.cc:278]     51192: 0x15440000 java.lang.Thread
    indirect_reference_table.cc:278]     51191: 0x15400000 java.lang.Thread
    indirect_reference_table.cc:278]     51190: 0x153c0000 java.lang.Thread
    indirect_reference_table.cc:278]   Summary:
    indirect_reference_table.cc:278]      6349 of java.lang.Class (6349 unique instances)
    indirect_reference_table.cc:278]       265 of java.lang.Thread (265 unique instances)
    indirect_reference_table.cc:278]        47 of java.lang.DexCache (47 unique instances)
    indirect_reference_table.cc:278]         4 of dalvik.system.PathClassLoader (2 unique instances)
    indirect_reference_table.cc:278]         2 of android.opengl.GLSurfaceView$GLThread (2 unique instances)
    indirect_reference_table.cc:278]         2 of android.opengl.GLSurfaceView (2 unique instances)
    indirect_reference_table.cc:278]         2 of android.os.HandlerThread (2 unique instances)
    indirect_reference_table.cc:278]         1 of okio.AsyncTimeout$Watchdog
    indirect_reference_table.cc:278]         1 of java.lang.BootClassLoader
    indirect_reference_table.cc:278]         1 of java.lang.ThreadGroup
    indirect_reference_table.cc:278]         1 of dalvik.system.DexClassLoader
    indirect_reference_table.cc:278]         1 of android.net.ConnectivityThread
    indirect_reference_table.cc:278] 

@tobrun
Copy link
Member

tobrun commented Apr 8, 2019

@desertkun never claimed that this issue is specific to RenderMode.Compass, it's a general issue that occurs more frequent with using a debug mode (profiler leaks ), with having LocationComponent enabled and even more with having RenderMode set to compass.

@all What happens with those configurations is that they will increase the amount of draw commands by a large factor and this results in a higher rate of global references. That said, I haven't been able to
actually see this increase occurring on my end. The allocations on my end are getting correctly released as shown below:

image (6)

So, moving forward, I would love if someone is able to chime in with some profiling from their end. Could you provide some profile traces? or some images showing profiler in action when this all is occurring.

@desertkun one thing noticing with your output is that you have 2 GLSurfaceViews allocated. Is that correct?

@whind
Copy link
Author

whind commented Apr 23, 2019

With RenderMode.Normal error appears less frequently.

@arthabus
Copy link

here is another stacktrace (got that on map sdk 7.3.2):

2019-05-16 15:14:09.062 32148-541/ie.beepsafe.app E/art: Unexpected time out during dump checkpoint.
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app W/art: Attempted to destroy barrier with non zero count 2
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] Runtime aborting...
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] Aborting thread:
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "Thread-43878" prio=5 tid=15 Runnable
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=0 dsCount=0 obj=0x135fc5e0 self=0x77259e1400
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=541 nice=0 cgrp=default sched=0/0 handle=0x7732f02450
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=R schedstat=( 0 0 0 ) utm=4483 stm=762 core=6 HZ=100
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x7732e08000-0x7732e0a000 stackSize=1005KB
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes= "abort lock" "JNI weak global reference table lock" "ObjectRegistry lock" "mutator lock"(shared held)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 0000000000478a90 /system/lib64/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+220)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 0000000000478a8c /system/lib64/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+216)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 000000000044d000 /system/lib64/libart.so (_ZNK3art6Thread9DumpStackERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEbP12BacktraceMap+472)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 000000000043b068 /system/lib64/libart.so (_ZNK3art10AbortState10DumpThreadERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEPNS_6ThreadE+56)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #4 pc 000000000043ae88 /system/lib64/libart.so (_ZNK3art10AbortState4DumpERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE+576)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #5 pc 000000000042ead0 /system/lib64/libart.so (_ZN3art7Runtime5AbortEv+140)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #6 pc 00000000000e502c /system/lib64/libart.so (_ZN3art10LogMessageD2Ev+1204)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #7 pc 000000000024bf50 /system/lib64/libart.so (_ZN3art22IndirectReferenceTable3AddEjPNS_6mirror6ObjectE+308)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #8 pc 00000000002ee4f4 /system/lib64/libart.so (_ZN3art9JavaVMExt16AddWeakGlobalRefEPNS_6ThreadEPNS_6mirror6ObjectE+80)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #9 pc 000000000034dcf4 /system/lib64/libart.so (_ZN3art3JNI16NewWeakGlobalRefEP7_JNIEnvP8_jobject+600)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #10 pc 0000000000102f40 /system/lib64/libart.so (_ZN3art8CheckJNI6NewRefEPKcP7_JNIEnvP8_jobjectNS_15IndirectRefKindE+708)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #11 pc 0000000000307ab0 /system/lib64/libart.so (_ZN3art14ObjectRegistry11InternalAddINS_6mirror6ObjectEEEmNS_6HandleIT_EE+1104)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #12 pc 00000000003083a4 /system/lib64/libart.so (_ZN3art14ObjectRegistry3AddEPNS_6mirror6ObjectE+152)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #13 pc 0000000000168988 /system/lib64/libart.so (_ZN3art3Dbg11GetThreadIdEPNS_6ThreadE+632)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #14 pc 00000000002f8bc8 /system/lib64/libart.so (_ZN3art4JDWP9JdwpState16PostThreadChangeEPNS_6ThreadEb+872)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #15 pc 0000000000177494 /system/lib64/libart.so (_ZN3art3Dbg15PostThreadStartEPNS_6ThreadE+48)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #16 pc 000000000044b904 /system/lib64/libart.so (_ZN3art6Thread6AttachEPKcbP8_jobjectb+2560)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #17 pc 000000000042e408 /system/lib64/libart.so (_ZN3art7Runtime19AttachCurrentThreadEPKcbP8_jobjectb+112)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #18 pc 00000000002f268c /system/lib64/libart.so (_ZN3art3JII27AttachCurrentThreadInternalEP7_JavaVMPP7_JNIEnvPvb+296)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #19 pc 000000000010aa88 /system/lib64/libart.so (_ZN3art8CheckJII19AttachCurrentThreadEP7_JavaVMPP7_JNIEnvPv+132)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #20 pc 0000000000036200 /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so (???)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #21 pc 00000000001a5668 /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so (???)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #22 pc 00000000001caee0 /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so (???)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #23 pc 00000000001ca16c /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so (???)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #24 pc 000000000008e4d4 /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so (???)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #25 pc 00000000001d1c68 /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so (???)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #26 pc 0000000000068258 /system/lib64/libc.so (_ZL15__pthread_startPv+196)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #27 pc 000000000001dc00 /system/lib64/libc.so (__start_thread+16)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] (no managed stack frames)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] Dumping all threads without appropriate locks held: thread list lock
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] All threads:
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] DALVIK THREADS (57):
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "Thread-43878" prio=5 tid=15 Runnable
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=0 dsCount=0 obj=0x135fc5e0 self=0x77259e1400
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=541 nice=0 cgrp=default sched=0/0 handle=0x7732f02450
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=R schedstat=( 0 0 0 ) utm=4485 stm=765 core=6 HZ=100
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x7732e08000-0x7732e0a000 stackSize=1005KB
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes= "abort lock" "JNI weak global reference table lock" "ObjectRegistry lock" "mutator lock"(shared held)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 0000000000478a90 /system/lib64/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+220)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 0000000000478a8c /system/lib64/libart.so (_ZN3art15DumpNativeStackERNSt3__113basic_ostreamIcNS0_11char_traitsIcEEEEiP12BacktraceMapPKcPNS_9ArtMethodEPv+216)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 000000000044d000 /system/lib64/libart.so (_ZNK3art6Thread9DumpStackERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEbP12BacktraceMap+472)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 00000000004649f8 /system/lib64/libart.so (_ZN3art14DumpCheckpoint3RunEPNS_6ThreadE+820)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #4 pc 000000000045ca00 /system/lib64/libart.so (_ZN3art10ThreadList13RunCheckpointEPNS_7ClosureE+456)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #5 pc 000000000045c610 /system/lib64/libart.so (_ZN3art10ThreadList4DumpERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEEb+288)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #6 pc 000000000043ae98 /system/lib64/libart.so (_ZNK3art10AbortState4DumpERNSt3__113basic_ostreamIcNS1_11char_traitsIcEEEE+592)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #7 pc 000000000042ead0 /system/lib64/libart.so (_ZN3art7Runtime5AbortEv+140)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #8 pc 00000000000e502c /system/lib64/libart.so (_ZN3art10LogMessageD2Ev+1204)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #9 pc 000000000024bf50 /system/lib64/libart.so (_ZN3art22IndirectReferenceTable3AddEjPNS_6mirror6ObjectE+308)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #10 pc 00000000002ee4f4 /system/lib64/libart.so (_ZN3art9JavaVMExt16AddWeakGlobalRefEPNS_6ThreadEPNS_6mirror6ObjectE+80)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #11 pc 000000000034dcf4 /system/lib64/libart.so (_ZN3art3JNI16NewWeakGlobalRefEP7_JNIEnvP8_jobject+600)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #12 pc 0000000000102f40 /system/lib64/libart.so (_ZN3art8CheckJNI6NewRefEPKcP7_JNIEnvP8_jobjectNS_15IndirectRefKindE+708)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #13 pc 0000000000307ab0 /system/lib64/libart.so (_ZN3art14ObjectRegistry11InternalAddINS_6mirror6ObjectEEEmNS_6HandleIT_EE+1104)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #14 pc 00000000003083a4 /system/lib64/libart.so (_ZN3art14ObjectRegistry3AddEPNS_6mirror6ObjectE+152)
2019-05-16 15:14:09.065 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #15 pc 0000000000168988 /system/lib64/libart.so (_ZN3art3Dbg11GetThreadIdEPNS_6ThreadE+632)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #16 pc 00000000002f8bc8 /system/lib64/libart.so (_ZN3art4JDWP9JdwpState16PostThreadChangeEPNS_6ThreadEb+872)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #17 pc 0000000000177494 /system/lib64/libart.so (_ZN3art3Dbg15PostThreadStartEPNS_6ThreadE+48)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #18 pc 000000000044b904 /system/lib64/libart.so (_ZN3art6Thread6AttachEPKcbP8_jobjectb+2560)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #19 pc 000000000042e408 /system/lib64/libart.so (_ZN3art7Runtime19AttachCurrentThreadEPKcbP8_jobjectb+112)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #20 pc 00000000002f268c /system/lib64/libart.so (_ZN3art3JII27AttachCurrentThreadInternalEP7_JavaVMPP7_JNIEnvPvb+296)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #21 pc 000000000010aa88 /system/lib64/libart.so (_ZN3art8CheckJII19AttachCurrentThreadEP7_JavaVMPP7_JNIEnvPv+132)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #22 pc 0000000000036200 /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so (???)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #23 pc 00000000001a5668 /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so (???)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #24 pc 00000000001caee0 /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so (???)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #25 pc 00000000001ca16c /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so (???)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #26 pc 000000000008e4d4 /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so (???)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #27 pc 00000000001d1c68 /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so (???)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #28 pc 0000000000068258 /system/lib64/libc.so (_ZL15__pthread_startPv+196)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #29 pc 000000000001dc00 /system/lib64/libc.so (__start_thread+16)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] (no managed stack frames)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "main" prio=5 tid=1 Native
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x76f09418 self=0x776b4c7a00
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32148 nice=0 cgrp=default sched=0/0 handle=0x776feb5a98
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=3453 stm=750 core=3 HZ=100
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x7feabed000-0x7feabef000 stackSize=8MB
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_epoll_wait+0x2ac/0x36c
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_epoll_pwait+0xa8/0x124
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000006a5f4 /system/lib64/libc.so (__epoll_pwait+8)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 000000000001e31c /system/lib64/libc.so (epoll_pwait+64)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 0000000000018010 /system/lib64/libutils.so (_ZN7android6Looper9pollInnerEi+156)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 0000000000017ec4 /system/lib64/libutils.so (_ZN7android6Looper8pollOnceEiPiS1_PPv+60)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #4 pc 00000000000f78f0 /system/lib64/libandroid_runtime.so (_ZN7android18NativeMessageQueue8pollOnceEP7_JNIEnvP8_jobjecti+48)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #5 pc 00000000009df680 /system/framework/arm64/boot-framework.oat (Java_android_os_MessageQueue_nativePollOnce__JI+140)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.os.MessageQueue.nativePollOnce(Native method)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.os.MessageQueue.next(MessageQueue.java:323)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.os.Looper.loop(Looper.java:136)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.app.ActivityThread.main(ActivityThread.java:6682)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.reflect.Method.invoke!(Native method)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1520)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1410)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "Jit thread pool worker thread 0" prio=5 tid=2 Native (still starting up)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x0 self=0x775fc13000
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32153 nice=9 cgrp=default sched=0/0 handle=0x776ac0a450
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=226 stm=38 core=2 HZ=100
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x776ab0c000-0x776ab0e000 stackSize=1021KB
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait_queue_me+0xd4/0x12c
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait+0xd8/0x1d4
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_futex+0xc8/0x8d4
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_futex+0xf0/0x16c
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000001bf6c /system/lib64/libc.so (syscall+28)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 00000000000e72dc /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+160)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 000000000046676c /system/lib64/libart.so (_ZN3art10ThreadPool7GetTaskEPNS_6ThreadE+252)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 0000000000465c28 /system/lib64/libart.so (_ZN3art16ThreadPoolWorker3RunEv+124)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #4 pc 0000000000465558 /system/lib64/libart.so (_ZN3art16ThreadPoolWorker8CallbackEPv+116)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #5 pc 0000000000068258 /system/lib64/libc.so (_ZL15__pthread_startPv+196)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #6 pc 000000000001dc00 /system/lib64/libc.so (__start_thread+16)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] (no managed stack frames)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "Signal Catcher" prio=5 tid=3 WaitingInMainSignalCatcherLoop
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12ca1280 self=0x775a733000
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32154 nice=0 cgrp=default sched=0/0 handle=0x776ab09450
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=0 stm=0 core=6 HZ=100
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x776aa0f000-0x776aa11000 stackSize=1005KB
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_sigtimedwait+0xd4/0x1ac
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_rt_sigtimedwait+0xac/0xec
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000006a7d4 /system/lib64/libc.so (__rt_sigtimedwait+8)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 0000000000024d18 /system/lib64/libc.so (sigwait+64)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 000000000043f74c /system/lib64/libart.so (_ZN3art9SignalSet4WaitEv+48)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 000000000043f21c /system/lib64/libart.so (_ZN3art13SignalCatcher13WaitForSignalEPNS_6ThreadERNS_9SignalSetE+240)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #4 pc 000000000043d6c0 /system/lib64/libart.so (_ZN3art13SignalCatcher3RunEPv+404)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #5 pc 0000000000068258 /system/lib64/libc.so (_ZL15__pthread_startPv+196)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #6 pc 000000000001dc00 /system/lib64/libc.so (__start_thread+16)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] (no managed stack frames)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "JDWP" prio=5 tid=4 WaitingInMainDebuggerLoop
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12ca1310 self=0x775fc19400
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32155 nice=0 cgrp=default sched=0/0 handle=0x776aa0c450
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=3 stm=2 core=0 HZ=100
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x776a912000-0x776a914000 stackSize=1005KB
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: poll_schedule_timeout+0x54/0xb8
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_select+0x404/0x458
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: core_sys_select+0x1e0/0x2e8
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_pselect6+0x15c/0x1f0
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000006a72c /system/lib64/libc.so (__pselect6+8)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 0000000000023258 /system/lib64/libc.so (select+156)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 00000000005515d8 /system/lib64/libart.so (_ZN3art4JDWP12JdwpAdbState15ProcessIncomingEv+340)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 0000000000302b80 /system/lib64/libart.so (_ZN3art4JDWP9JdwpState3RunEv+920)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #4 pc 0000000000302054 /system/lib64/libart.so (_ZN3art4JDWPL15StartJdwpThreadEPv+48)
2019-05-16 15:14:09.066 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #5 pc 0000000000068258 /system/lib64/libc.so (_ZL15__pthread_startPv+196)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #6 pc 000000000001dc00 /system/lib64/libc.so (__start_thread+16)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] (no managed stack frames)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "ReferenceQueueDaemon" prio=5 tid=5 Waiting
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12ca13a0 self=0x775a742000
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32157 nice=0 cgrp=default sched=0/0 handle=0x776a90f450
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=10 stm=0 core=1 HZ=100
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x776a80d000-0x776a80f000 stackSize=1037KB
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait_queue_me+0xd4/0x12c
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait+0xd8/0x1d4
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_futex+0xc8/0x8d4
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_futex+0xf0/0x16c
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000001bf6c /system/lib64/libc.so (syscall+28)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 00000000000e72dc /system/lib64/libart.so (ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+160)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 00000000003794c4 /system/lib64/libart.so (ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+660)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 0000000000000810 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait
+124)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Object.wait!(Native method)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - waiting on <0x0053bebe> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Daemons$ReferenceQueueDaemon.run(Daemons.java:150)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - locked <0x0053bebe> (a java.lang.Class<java.lang.ref.ReferenceQueue>)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.run(Thread.java:762)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "FinalizerDaemon" prio=5 tid=6 Waiting
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12ca1430 self=0x775a742a00
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32158 nice=0 cgrp=default sched=0/0 handle=0x776a80a450
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=39 stm=0 core=0 HZ=100
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x776a708000-0x776a70a000 stackSize=1037KB
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait_queue_me+0xd4/0x12c
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait+0xd8/0x1d4
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_futex+0xc8/0x8d4
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_futex+0xf0/0x16c
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000001bf6c /system/lib64/libc.so (syscall+28)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 00000000000e72dc /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+160)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 00000000003794c4 /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+660)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Object.wait!(Native method)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - waiting on <0x06da83f5> (a java.lang.Object)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Object.wait(Object.java:407)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:188)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - locked <0x06da83f5> (a java.lang.Object)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:209)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Daemons$FinalizerDaemon.run(Daemons.java:204)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.run(Thread.java:762)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "FinalizerWatchdogDaemon" prio=5 tid=7 Sleeping
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12ca14c0 self=0x775a745c00
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32159 nice=0 cgrp=default sched=0/0 handle=0x776a705450
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=0 stm=0 core=1 HZ=100
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x776a603000-0x776a605000 stackSize=1037KB
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait_queue_me+0xd4/0x12c
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait+0xd8/0x1d4
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_futex+0xc8/0x8d4
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_futex+0xf0/0x16c
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000001bf70 /system/lib64/libc.so (syscall+32)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 00000000000e787c /system/lib64/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadEli+176)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 00000000003794d4 /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+676)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 00000000000bcb88 /system/framework/arm64/boot.oat (Java_java_lang_Thread_sleep__Ljava_lang_Object_2JI+164)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.sleep!(Native method)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - sleeping on <0x03bd058a> (a java.lang.Object)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.sleep(Thread.java:371)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - locked <0x03bd058a> (a java.lang.Object)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.sleep(Thread.java:313)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Daemons$FinalizerWatchdogDaemon.sleepFor(Daemons.java:314)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Daemons$FinalizerWatchdogDaemon.waitForFinalization(Daemons.java:336)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Daemons$FinalizerWatchdogDaemon.run(Daemons.java:253)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.run(Thread.java:762)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "HeapTaskDaemon" prio=5 tid=8 Blocked
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12ca1550 self=0x775a746600
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32160 nice=0 cgrp=default sched=0/0 handle=0x776a600450
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=160 stm=4 core=0 HZ=100
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x776a4fe000-0x776a500000 stackSize=1037KB
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait_queue_me+0xd4/0x12c
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait+0xd8/0x1d4
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_futex+0xc8/0x8d4
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_futex+0xf0/0x16c
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000001bf6c /system/lib64/libc.so (syscall+28)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 00000000000e72dc /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+160)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 0000000000240eb4 /system/lib64/libart.so (ZN3art2gc13TaskProcessor7GetTaskEPNS_6ThreadE+360)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 0000000000241790 /system/lib64/libart.so (ZN3art2gc13TaskProcessor11RunAllTasksEPNS_6ThreadE+92)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #4 pc 00000000001e4ff0 /system/framework/arm64/boot-core-libart.oat (Java_dalvik_system_VMRuntime_runHeapTasks
+124)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at dalvik.system.VMRuntime.runHeapTasks(Native method)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - waiting to lock an unknown object
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Daemons$HeapTaskDaemon.run(Daemons.java:433)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.run(Thread.java:762)
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "Binder:32148_1" prio=5 tid=9 Native
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12ca1700 self=0x776b4f3200
2019-05-16 15:14:09.067 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32161 nice=0 cgrp=default sched=0/0 handle=0x776a3fd450
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=24 stm=52 core=3 HZ=100
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x776a303000-0x776a305000 stackSize=1005KB
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: binder_thread_read+0xd48/0xe80
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: binder_ioctl+0x3e8/0x800
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_vfs_ioctl+0x580/0x654
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_ioctl+0x5c/0x88
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000006a6e0 /system/lib64/libc.so (__ioctl+4)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 000000000001fb48 /system/lib64/libc.so (ioctl+144)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 00000000000555d4 /system/lib64/libbinder.so (_ZN7android14IPCThreadState14talkWithDriverEb+260)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 0000000000055734 /system/lib64/libbinder.so (_ZN7android14IPCThreadState20getAndExecuteCommandEv+24)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #4 pc 0000000000055e80 /system/lib64/libbinder.so (_ZN7android14IPCThreadState14joinThreadPoolEb+72)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #5 pc 0000000000072e9c /system/lib64/libbinder.so (???)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #6 pc 0000000000012418 /system/lib64/libutils.so (_ZN7android6Thread11_threadLoopEPv+272)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #7 pc 00000000000a4d40 /system/lib64/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+116)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #8 pc 0000000000068258 /system/lib64/libc.so (_ZL15__pthread_startPv+196)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #9 pc 000000000001dc00 /system/lib64/libc.so (__start_thread+16)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] (no managed stack frames)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "Binder:32148_2" prio=5 tid=10 Native
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12ca1790 self=0x775fc2c800
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32162 nice=0 cgrp=default sched=0/0 handle=0x776a300450
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=23 stm=53 core=1 HZ=100
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x776a206000-0x776a208000 stackSize=1005KB
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: binder_thread_read+0xd48/0xe80
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: binder_ioctl+0x3e8/0x800
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_vfs_ioctl+0x580/0x654
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_ioctl+0x5c/0x88
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000006a6e0 /system/lib64/libc.so (__ioctl+4)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 000000000001fb48 /system/lib64/libc.so (ioctl+144)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 00000000000555d4 /system/lib64/libbinder.so (_ZN7android14IPCThreadState14talkWithDriverEb+260)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 0000000000055734 /system/lib64/libbinder.so (_ZN7android14IPCThreadState20getAndExecuteCommandEv+24)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #4 pc 0000000000055e80 /system/lib64/libbinder.so (_ZN7android14IPCThreadState14joinThreadPoolEb+72)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #5 pc 0000000000072e9c /system/lib64/libbinder.so (???)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #6 pc 0000000000012418 /system/lib64/libutils.so (_ZN7android6Thread11_threadLoopEPv+272)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #7 pc 00000000000a4d40 /system/lib64/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+116)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #8 pc 0000000000068258 /system/lib64/libc.so (_ZL15__pthread_startPv+196)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #9 pc 000000000001dc00 /system/lib64/libc.so (__start_thread+16)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] (no managed stack frames)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "Profile Saver" prio=5 tid=11 Native
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12ca1d30 self=0x775a335800
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32694 nice=0 cgrp=default sched=0/0 handle=0x776a1db450
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=5 stm=0 core=0 HZ=100
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x776a0e1000-0x776a0e3000 stackSize=1005KB
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait_queue_me+0xd4/0x12c
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait+0xd8/0x1d4
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_futex+0xc8/0x8d4
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_futex+0xf0/0x16c
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000001bf6c /system/lib64/libc.so (syscall+28)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 00000000000e72dc /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+160)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 000000000031b9d8 /system/lib64/libart.so (_ZN3art12ProfileSaver3RunEv+296)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 000000000031d0f0 /system/lib64/libart.so (_ZN3art12ProfileSaver21RunProfileSaverThreadEPv+100)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #4 pc 0000000000068258 /system/lib64/libc.so (_ZL15__pthread_startPv+196)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #5 pc 000000000001dc00 /system/lib64/libc.so (__start_thread+16)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] (no managed stack frames)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "GoogleApiHandler" prio=5 tid=12 Native
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12d179d0 self=0x776b4f0000
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32696 nice=9 cgrp=default sched=0/0 handle=0x7769fb8450
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=2 stm=0 core=5 HZ=100
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x7769eb6000-0x7769eb8000 stackSize=1037KB
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_epoll_wait+0x2ac/0x36c
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_epoll_pwait+0xa8/0x124
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000006a5f4 /system/lib64/libc.so (__epoll_pwait+8)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 000000000001e31c /system/lib64/libc.so (epoll_pwait+64)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 0000000000018010 /system/lib64/libutils.so (_ZN7android6Looper9pollInnerEi+156)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 0000000000017ec4 /system/lib64/libutils.so (_ZN7android6Looper8pollOnceEiPiS1_PPv+60)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #4 pc 00000000000f78f0 /system/lib64/libandroid_runtime.so (_ZN7android18NativeMessageQueue8pollOnceEP7_JNIEnvP8_jobjecti+48)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #5 pc 00000000009df680 /system/framework/arm64/boot-framework.oat (Java_android_os_MessageQueue_nativePollOnce__JI+140)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.os.MessageQueue.nativePollOnce(Native method)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.os.MessageQueue.next(MessageQueue.java:323)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.os.Looper.loop(Looper.java:136)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.os.HandlerThread.run(HandlerThread.java:61)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "LocationSettingsChangeThread" prio=5 tid=13 Native
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12d17c10 self=0x775a785600
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32698 nice=0 cgrp=default sched=0/0 handle=0x776033c450
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=0 stm=0 core=4 HZ=100
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x776023a000-0x776023c000 stackSize=1037KB
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_epoll_wait+0x2ac/0x36c
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_epoll_pwait+0xa8/0x124
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000006a5f4 /system/lib64/libc.so (__epoll_pwait+8)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 000000000001e31c /system/lib64/libc.so (epoll_pwait+64)
2019-05-16 15:14:09.068 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 0000000000018010 /system/lib64/libutils.so (_ZN7android6Looper9pollInnerEi+156)
2019-05-16 15:14:09.069 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 0000000000017ec4 /system/lib64/libutils.so (_ZN7android6Looper8pollOnceEiPiS1_PPv+60)
2019-05-16 15:14:09.069 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #4 pc 00000000000f78f0 /system/lib64/libandroid_runtime.so (_ZN7android18NativeMessageQueue8pollOnceEP7_JNIEnvP8_jobjecti+48)
2019-05-16 15:14:09.069 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:413)
2019-05-16 15:14:09.069 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1058)
2019-05-16 15:14:09.069 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
2019-05-16 15:14:09.069 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_futex+0xc8/0x8d4
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_futex+0xf0/0x16c
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 00000000003794d4 /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+676)
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.parkFor$(Thread.java:2128)
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - locked <0x070c6018> (a java.lang.Object)
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at sun.misc.Unsafe.park(Unsafe.java:325)
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1103)
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1058)
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "pool-4-thread-1" prio=5 tid=22 Waiting
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12dc09d0 self=0x775a354000
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32708 nice=0 cgrp=default sched=0/0 handle=0x774aba4450
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=15 stm=0 core=5 HZ=100
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x774aaa2000-0x774aaa4000 stackSize=1037KB
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait_queue_me+0xd4/0x12c
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait+0xd8/0x1d4
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_futex+0xf0/0x16c
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000001bf6c /system/lib64/libc.so (syscall+28)
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 00000000000e72dc /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+160)
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Object.wait!(Native method)
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - waiting on <0x001c6a71> (a java.lang.Object)
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.parkFor$(Thread.java:2128)
2019-05-16 15:14:09.070 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - locked <0x001c6a71> (a java.lang.Object)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at sun.misc.Unsafe.park(Unsafe.java:325)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:161)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2035)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ScheduledThreadPoolExecutor$DelayedWorkQueue.take(ScheduledThreadPoolExecutor.java:1091)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.run(Thread.java:762)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12deb740 self=0x775a31dc00
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32709 nice=0 cgrp=default sched=0/0 handle=0x774b0bd450
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=3 stm=0 core=0 HZ=100
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_epoll_wait+0x2ac/0x36c
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_epoll_pwait+0xa8/0x124
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000006a5f4 /system/lib64/libc.so (__epoll_pwait+8)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 000000000001e31c /system/lib64/libc.so (epoll_pwait+64)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 0000000000018010 /system/lib64/libutils.so (_ZN7android6Looper9pollInnerEi+156)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #4 pc 00000000000f78f0 /system/lib64/libandroid_runtime.so (_ZN7android18NativeMessageQueue8pollOnceEP7_JNIEnvP8_jobjecti+48)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.os.MessageQueue.nativePollOnce(Native method)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.os.MessageQueue.next(MessageQueue.java:323)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.os.Looper.loop(Looper.java:136)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.os.HandlerThread.run(HandlerThread.java:61)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "FocusHandlerThread" prio=5 tid=20 Native
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12e25240 self=0x775a31e600
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32710 nice=0 cgrp=default sched=0/0 handle=0x774adae450
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=0 stm=0 core=1 HZ=100
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x774acac000-0x774acae000 stackSize=1037KB
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_epoll_pwait+0xa8/0x124
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000006a5f4 /system/lib64/libc.so (__epoll_pwait+8)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 0000000000018010 /system/lib64/libutils.so (_ZN7android6Looper9pollInnerEi+156)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #5 pc 00000000009df680 /system/framework/arm64/boot-framework.oat (Java_android_os_MessageQueue_nativePollOnce__JI+140)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.os.MessageQueue.nativePollOnce(Native method)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.os.MessageQueue.next(MessageQueue.java:323)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.os.Looper.loop(Looper.java:136)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.os.HandlerThread.run(HandlerThread.java:61)
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "OSH_NetworkHandlerThread" prio=5 tid=23 Native
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32720 nice=0 cgrp=default sched=0/0 handle=0x774aa9f450
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=3 stm=0 core=0 HZ=100
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x774a99d000-0x774a99f000 stackSize=1037KB
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_epoll_wait+0x2ac/0x36c
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_epoll_pwait+0xa8/0x124
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.071 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 000000000001e31c /system/lib64/libc.so (epoll_pwait+64)
2019-05-16 15:14:09.072 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 0000000000018010 /system/lib64/libutils.so (_ZN7android6Looper9pollInnerEi+156)
2019-05-16 15:14:09.074 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.parkFor$(Thread.java:2128)
2019-05-16 15:14:09.074 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - locked <0x027365c4> (a java.lang.Object)
2019-05-16 15:14:09.074 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at sun.misc.Unsafe.park(Unsafe.java:325)
2019-05-16 15:14:09.074 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.PriorityBlockingQueue.take(PriorityBlockingQueue.java:519)
2019-05-16 15:14:09.074 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.performOperation(DependencyPriorityBlockingQueue.java:197)
2019-05-16 15:14:09.074 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.get(DependencyPriorityBlockingQueue.java:236)
2019-05-16 15:14:09.074 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.take(DependencyPriorityBlockingQueue.java:65)
2019-05-16 15:14:09.074 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1058)
2019-05-16 15:14:09.074 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
2019-05-16 15:14:09.074 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.run(Thread.java:762)
2019-05-16 15:14:09.074 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.074 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "Queue" prio=5 tid=27 Waiting
2019-05-16 15:14:09.075 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait+0xd8/0x1d4
2019-05-16 15:14:09.075 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_futex+0xc8/0x8d4
2019-05-16 15:14:09.075 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_futex+0xf0/0x16c
2019-05-16 15:14:09.075 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.075 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 00000000000e72dc /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+160)
2019-05-16 15:14:09.075 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 00000000003794c4 /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+660)
2019-05-16 15:14:09.075 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
2019-05-16 15:14:09.075 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - waiting on <0x0dbc3cad> (a java.lang.Object)
2019-05-16 15:14:09.075 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.parkFor$(Thread.java:2128)
2019-05-16 15:14:09.075 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - locked <0x0dbc3cad> (a java.lang.Object)
2019-05-16 15:14:09.075 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at sun.misc.Unsafe.park(Unsafe.java:325)
2019-05-16 15:14:09.075 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2035)
2019-05-16 15:14:09.075 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.PriorityBlockingQueue.take(PriorityBlockingQueue.java:519)
2019-05-16 15:14:09.076 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - waiting on <0x0e70bbe2> (a java.lang.Object)
2019-05-16 15:14:09.076 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.parkFor$(Thread.java:2128)
2019-05-16 15:14:09.076 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - locked <0x0e70bbe2> (a java.lang.Object)
2019-05-16 15:14:09.076 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at sun.misc.Unsafe.park(Unsafe.java:325)
2019-05-16 15:14:09.076 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.get(DependencyPriorityBlockingQueue.java:236)
2019-05-16 15:14:09.076 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.take(DependencyPriorityBlockingQueue.java:65)
2019-05-16 15:14:09.077 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000001bf6c /system/lib64/libc.so (syscall+28)
2019-05-16 15:14:09.077 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 00000000000e72dc /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+160)
2019-05-16 15:14:09.077 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 00000000003794c4 /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+660)
2019-05-16 15:14:09.077 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
2019-05-16 15:14:09.077 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at sun.misc.Unsafe.park(Unsafe.java:325)
2019-05-16 15:14:09.077 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:161)
2019-05-16 15:14:09.077 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2035)
2019-05-16 15:14:09.077 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.get(DependencyPriorityBlockingQueue.java:236)
2019-05-16 15:14:09.077 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.take(DependencyPriorityBlockingQueue.java:65)
2019-05-16 15:14:09.077 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1058)
2019-05-16 15:14:09.077 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "Queue" prio=5 tid=31 Waiting
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12f8f4c0 self=0x775a31aa00
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32731 nice=10 cgrp=default sched=0/0 handle=0x7746197450
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=0 stm=0 core=4 HZ=100
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x7746095000-0x7746097000 stackSize=1037KB
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait_queue_me+0xd4/0x12c
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait+0xd8/0x1d4
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_futex+0xc8/0x8d4
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_futex+0xf0/0x16c
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Object.wait!(Native method)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.parkFor$(Thread.java:2128)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - locked <0x040cf6a9> (a java.lang.Object)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at sun.misc.Unsafe.park(Unsafe.java:325)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:161)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.PriorityBlockingQueue.take(PriorityBlockingQueue.java:519)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.performOperation(DependencyPriorityBlockingQueue.java:197)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.take(DependencyPriorityBlockingQueue.java:46)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1058)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:607)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.run(Thread.java:762)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "Queue" prio=5 tid=32 Waiting
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12f8f430 self=0x775a386000
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=32730 nice=10 cgrp=default sched=0/0 handle=0x774629c450
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=0 stm=0 core=1 HZ=100
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x774619a000-0x774619c000 stackSize=1037KB
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait_queue_me+0xd4/0x12c
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait+0xd8/0x1d4
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_futex+0xc8/0x8d4
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_futex+0xf0/0x16c
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 00000000003794c4 /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+660)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Object.wait!(Native method)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - waiting on <0x0c62b42e> (a java.lang.Object)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - locked <0x0c62b42e> (a java.lang.Object)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at sun.misc.Unsafe.park(Unsafe.java:325)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:161)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2035)
2019-05-16 15:14:09.078 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.get(DependencyPriorityBlockingQueue.java:236)
2019-05-16 15:14:09.079 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at io.fabric.sdk.android.services.concurrency.DependencyPriorityBlockingQueue.take(DependencyPriorityBlockingQueue.java:65)
2019-05-16 15:14:09.079 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1133)
2019-05-16 15:14:09.079 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.079 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "Answers Events Handler1" prio=5 tid=33 Waiting
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait+0xd8/0x1d4
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_futex+0xc8/0x8d4
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_futex+0xf0/0x16c
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000001bf6c /system/lib64/libc.so (syscall+28)
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 00000000000e72dc /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+160)
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Object.wait!(Native method)
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - waiting on <0x09d7a95c> (a java.lang.Object)
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.parkFor$(Thread.java:2128)
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:161)
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:2035)
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1058)
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at io.fabric.sdk.android.services.common.ExecutorUtils$1$1.onRun(ExecutorUtils.java:75)
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "Crashlytics Exception Handler1" prio=5 tid=35 Waiting
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x1304ef70 self=0x775a3cfc00
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait+0xd8/0x1d4
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000001bf6c /system/lib64/libc.so (syscall+28)
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 00000000000e72dc /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+160)
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 00000000003794c4 /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+660)
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.locks.LockSupport.park(LockSupport.java:161)
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1058)
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
2019-05-16 15:14:09.080 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "Alarm" prio=5 tid=38 Native
2019-05-16 15:14:09.081 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.081 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000006a5f4 /system/lib64/libc.so (__epoll_pwait+8)
2019-05-16 15:14:09.081 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 0000000000018010 /system/lib64/libutils.so (_ZN7android6Looper9pollInnerEi+156)
2019-05-16 15:14:09.081 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 00000000000187b8 /system/lib64/libutils.so (_ZN7android6Looper7pollAllEiPiS1_PPv+308)
2019-05-16 15:14:09.081 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x77457e4000-0x77457e6000 stackSize=1037KB
2019-05-16 15:14:09.081 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.081 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.081 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000001bf6c /system/lib64/libc.so (syscall+28)
2019-05-16 15:14:09.081 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
2019-05-16 15:14:09.081 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Object.wait!(Native method)
2019-05-16 15:14:09.082 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.082 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=0 stm=0 core=4 HZ=100
2019-05-16 15:14:09.082 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 000000000001e31c /system/lib64/libc.so (epoll_pwait+64)
2019-05-16 15:14:09.083 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Thread.run(Thread.java:762)
2019-05-16 15:14:09.083 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12d76af0 self=0x7745f7d600
2019-05-16 15:14:09.083 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=330 nice=-4 cgrp=default sched=0/0 handle=0x7744e7e450
2019-05-16 15:14:09.083 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=8 stm=4 core=2 HZ=100
2019-05-16 15:14:09.083 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 000000000001e31c /system/lib64/libc.so (epoll_pwait+64)
2019-05-16 15:14:09.083 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #6 pc 00000000000a4d40 /system/lib64/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+116)
2019-05-16 15:14:09.083 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] (no managed stack frames)
2019-05-16 15:14:09.083 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x12dc0d30 self=0x775fd7e200
2019-05-16 15:14:09.083 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=0 stm=0 core=5 HZ=100
2019-05-16 15:14:09.083 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait_queue_me+0xd4/0x12c
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 00000000000e72dc /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+160)
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 00000000003794c4 /system/lib64/libart.so (_ZN3art7Monitor4WaitEPNS_6ThreadElibNS_11ThreadStateE+660)
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - locked <0x0ae3ff48> (a java.lang.Object)
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.LinkedBlockingQueue.take(LinkedBlockingQueue.java:413)
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ThreadPoolExecutor.getTask(ThreadPoolExecutor.java:1058)
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1118)
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=336 nice=0 cgrp=default sched=0/0 handle=0x7745185450
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=25 stm=50 core=3 HZ=100
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: binder_thread_read+0xd48/0xe80
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: binder_ioctl+0x3e8/0x800
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_vfs_ioctl+0x580/0x654
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_ioctl+0x5c/0x88
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #8 pc 0000000000068258 /system/lib64/libc.so (_ZL15__pthread_startPv+196)
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "Okio Watchdog" prio=5 tid=36 Waiting
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x77411fd000-0x77411ff000 stackSize=1037KB
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait_queue_me+0xd4/0x12c
2019-05-16 15:14:09.084 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait+0xd8/0x1d4
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 00000000000e72dc /system/lib64/libart.so (_ZN3art17ConditionVariable16WaitHoldingLocksEPNS_6ThreadE+160)
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Object.wait!(Native method)
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "GLThread 610" prio=5 tid=44 Native
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x1348d190 self=0x775a782e00
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x7732c06000-0x7732c08000 stackSize=1037KB
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait+0xd8/0x1d4
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_futex+0xc8/0x8d4
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_futex+0xf0/0x16c
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at com.google.android.gles_jni.EGLImpl.eglSwapBuffers(Native method)
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.opengl.GLSurfaceView$EglHelper.swap(GLSurfaceView.java:1161)
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.opengl.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1568)
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at android.opengl.GLSurfaceView$GLThread.run(GLSurfaceView.java:1262)
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_epoll_wait+0x2ac/0x36c
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_epoll_pwait+0xa8/0x124
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #7 pc 0000000000068258 /system/lib64/libc.so (_ZL15__pthread_startPv+196)
2019-05-16 15:14:09.085 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #8 pc 000000000001dc00 /system/lib64/libc.so (__start_thread+16)
2019-05-16 15:14:09.086 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "DefaultFileSour" prio=5 tid=50 Native
2019-05-16 15:14:09.086 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x134ac430 self=0x7746af9200
2019-05-16 15:14:09.086 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x7732a0c000-0x7732a0e000 stackSize=1005KB
2019-05-16 15:14:09.086 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.086 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.086 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #5 pc 0000000000055848 /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so (???)
2019-05-16 15:14:09.086 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "LocalFileSource" prio=5 tid=51 Native
2019-05-16 15:14:09.086 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x134ac4c0 self=0x773326b000
2019-05-16 15:14:09.086 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | held mutexes=
2019-05-16 15:14:09.086 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.086 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000006a5f4 /system/lib64/libc.so (__epoll_pwait+8)
2019-05-16 15:14:09.086 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 000000000001e31c /system/lib64/libc.so (epoll_pwait+64)
2019-05-16 15:14:09.086 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #4 pc 0000000000011148 /system/lib64/libandroid.so (ALooper_pollAll+100)
2019-05-16 15:14:09.086 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #6 pc 00000000002a1768 /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so (???)
2019-05-16 15:14:09.086 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] (no managed stack frames)
2019-05-16 15:14:09.086 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=547 nice=10 cgrp=default sched=0/0 handle=0x773290c450
2019-05-16 15:14:09.086 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | state=S schedstat=( 0 0 0 ) utm=0 stm=0 core=7 HZ=100
2019-05-16 15:14:09.087 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 0000000000017ec4 /system/lib64/libutils.so (_ZN7android6Looper8pollOnceEiPiS1_PPv+60)
2019-05-16 15:14:09.087 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "OkHttp ConnectionPool" prio=5 tid=54 TimedWaiting
2019-05-16 15:14:09.087 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait_queue_me+0xd4/0x12c
2019-05-16 15:14:09.087 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: do_futex+0xc8/0x8d4
2019-05-16 15:14:09.087 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] - waiting on <0x048bd1e1> (a okhttp3.ConnectionPool)
2019-05-16 15:14:09.087 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at okhttp3.ConnectionPool$1.run(ConnectionPool.java:67)
2019-05-16 15:14:09.087 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] "hwuiTask1" prio=5 tid=56 Native
2019-05-16 15:14:09.087 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | group="" sCount=1 dsCount=0 obj=0x13570d30 self=0x77327d6000
2019-05-16 15:14:09.087 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=552 nice=-2 cgrp=default sched=0/0 handle=0x772e1ff450
2019-05-16 15:14:09.087 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait+0xd8/0x1d4
2019-05-16 15:14:09.087 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 00000000000679b0 /system/lib64/libc.so (pthread_cond_wait+96)
2019-05-16 15:14:09.088 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #5 pc 0000000000068258 /system/lib64/libc.so (_ZL15__pthread_startPv+196)
2019-05-16 15:14:09.088 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] (no managed stack frames)
2019-05-16 15:14:09.088 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x772e008000-0x772e00a000 stackSize=1005KB
2019-05-16 15:14:09.088 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_futex+0xf0/0x16c
2019-05-16 15:14:09.088 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000001bf6c /system/lib64/libc.so (syscall+28)
2019-05-16 15:14:09.088 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 00000000000679b0 /system/lib64/libc.so (pthread_cond_wait+96)
2019-05-16 15:14:09.088 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #2 pc 000000000003cbf4 /system/lib64/libhwui.so (???)
2019-05-16 15:14:09.088 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #4 pc 00000000000a4d40 /system/lib64/libandroid_runtime.so (_ZN7android14AndroidRuntime15javaThreadShellEPv+116)
2019-05-16 15:14:09.088 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] (no managed stack frames)
2019-05-16 15:14:09.088 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404]
2019-05-16 15:14:09.088 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x774adb1000-0x774adb3000 stackSize=1037KB
2019-05-16 15:14:09.088 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait_queue_me+0xd4/0x12c
2019-05-16 15:14:09.088 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_futex+0xf0/0x16c
2019-05-16 15:14:09.088 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.088 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 00000000000e787c /system/lib64/libart.so (_ZN3art17ConditionVariable9TimedWaitEPNS_6ThreadEli+176)
2019-05-16 15:14:09.088 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Object.wait!(Native method)
2019-05-16 15:14:09.089 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | sysTid=816 nice=0 cgrp=default sched=0/0 handle=0x77459ee450
2019-05-16 15:14:09.089 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #1 pc 0000000000023118 /system/lib64/libc.so (poll+92)
2019-05-16 15:14:09.089 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #4 pc 00000000000158a8 /system/framework/arm64/boot-conscrypt.oat (Java_com_android_org_conscrypt_NativeCrypto_SSL_1read__JLjava_io_FileDescriptor_2Lcom_android_org_conscrypt_NativeCrypto_00024SSLHandshakeCallbacks_2_3BIII+244)
2019-05-16 15:14:09.089 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at okio.Okio$2.read(Okio.java:140)
2019-05-16 15:14:09.089 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at okio.AsyncTimeout$2.read(AsyncTimeout.java:237)
2019-05-16 15:14:09.089 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at okhttp3.internal.http2.Http2Connection$ReaderRunnable.execute(Http2Connection.java:610)
2019-05-16 15:14:09.089 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] | stack=0x7744e82000-0x7744e84000 stackSize=1037KB
2019-05-16 15:14:09.089 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait_queue_me+0xd4/0x12c
2019-05-16 15:14:09.089 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: futex_wait+0xd8/0x1d4
2019-05-16 15:14:09.089 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: SyS_futex+0xf0/0x16c
2019-05-16 15:14:09.089 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] kernel: cpu_switch_to+0x48/0x4c
2019-05-16 15:14:09.089 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #00 pc 000000000001bf70 /system/lib64/libc.so (syscall+32)
2019-05-16 15:14:09.089 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] native: #3 pc 0000000000000980 /system/framework/arm64/boot.oat (Java_java_lang_Object_wait__JI+140)
2019-05-16 15:14:09.090 32148-541/ie.beepsafe.app A/art: art/runtime/runtime.cc:404] at java.lang.Object.wait!(Native method)
2019-05-16 15:14:09.093 32148-541/ie.beepsafe.app A/libc: Fatal signal 6 (SIGABRT), code -6 in tid 541 (Thread-43878)

2019-05-16 15:14:09.207 854-854/? A/DEBUG: *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
2019-05-16 15:14:09.208 854-854/? A/DEBUG: Build fingerprint: 'samsung/zerofltexx/zeroflte:7.0/NRD90M/G920FXXU6ERF5:user/release-keys'
2019-05-16 15:14:09.208 854-854/? A/DEBUG: Revision: '11'
2019-05-16 15:14:09.208 854-854/? A/DEBUG: ABI: 'arm64'
2019-05-16 15:14:09.208 854-854/? A/DEBUG: pid: 32148, tid: 541, name: Thread-43878 >>> ie.beepsafe.app <<<
2019-05-16 15:14:09.208 854-854/? A/DEBUG: signal 6 (SIGABRT), code -6 (SI_TKILL), fault addr --------
2019-05-16 15:14:09.215 854-854/? A/DEBUG: Abort message: 'art/runtime/indirect_reference_table.cc:128] JNI ERROR (app bug): weak global reference table overflow (max=51200)'
2019-05-16 15:14:09.215 854-854/? A/DEBUG: x0 0000000000000000 x1 000000000000021d x2 0000000000000006 x3 0000000000000008
2019-05-16 15:14:09.215 854-854/? A/DEBUG: x4 0000000000000162 x5 0000000000000000 x6 000000776fe03000 x7 0000000000000000
2019-05-16 15:14:09.215 854-854/? A/DEBUG: x8 0000000000000083 x9 ffffffffffffffdf x10 0000000000000000 x11 0000000000000001
2019-05-16 15:14:09.215 854-854/? A/DEBUG: x12 ffffffffffffffff x13 ffffffffa322b061 x14 00377e397f000000 x15 003b9aca00000000
2019-05-16 15:14:09.215 854-854/? A/DEBUG: x16 000000776d024ee0 x17 000000776cfce5ac x18 0000000000000000 x19 0000007732f024f8
2019-05-16 15:14:09.215 854-854/? A/DEBUG: x20 0000000000000006 x21 0000007732f02450 x22 000000000000000b x23 0000000000000a16
2019-05-16 15:14:09.215 854-854/? A/DEBUG: x24 ffffffffffffffff x25 000000776b3fc740 x26 000000776b386920 x27 0000007732f017c1
2019-05-16 15:14:09.215 854-854/? A/DEBUG: x28 000000776b34c86b x29 0000007732f016f0 x30 000000776cfcba54
2019-05-16 15:14:09.215 854-854/? A/DEBUG: sp 0000007732f016d0 pc 000000776cfce5b4 pstate 0000000060000000
2019-05-16 15:14:09.232 854-854/? A/DEBUG: backtrace:
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #00 pc 000000000006b5b4 /system/lib64/libc.so (tgkill+8)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #1 pc 0000000000068a50 /system/lib64/libc.so (pthread_kill+64)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #2 pc 0000000000023f68 /system/lib64/libc.so (raise+24)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #3 pc 000000000001c9ec /system/lib64/libc.so (abort+52)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #4 pc 000000000042eba4 /system/lib64/libart.so (_ZN3art7Runtime5AbortEv+352)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #5 pc 00000000000e502c /system/lib64/libart.so (_ZN3art10LogMessageD2Ev+1204)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #6 pc 000000000024bf50 /system/lib64/libart.so (_ZN3art22IndirectReferenceTable3AddEjPNS_6mirror6ObjectE+308)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #7 pc 00000000002ee4f4 /system/lib64/libart.so (_ZN3art9JavaVMExt16AddWeakGlobalRefEPNS_6ThreadEPNS_6mirror6ObjectE+80)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #8 pc 000000000034dcf4 /system/lib64/libart.so (_ZN3art3JNI16NewWeakGlobalRefEP7_JNIEnvP8_jobject+600)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #9 pc 0000000000102f40 /system/lib64/libart.so (_ZN3art8CheckJNI6NewRefEPKcP7_JNIEnvP8_jobjectNS_15IndirectRefKindE+708)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #10 pc 0000000000307ab0 /system/lib64/libart.so (_ZN3art14ObjectRegistry11InternalAddINS_6mirror6ObjectEEEmNS_6HandleIT_EE+1104)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #11 pc 00000000003083a4 /system/lib64/libart.so (_ZN3art14ObjectRegistry3AddEPNS_6mirror6ObjectE+152)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #12 pc 0000000000168988 /system/lib64/libart.so (_ZN3art3Dbg11GetThreadIdEPNS_6ThreadE+632)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #13 pc 00000000002f8bc8 /system/lib64/libart.so (_ZN3art4JDWP9JdwpState16PostThreadChangeEPNS_6ThreadEb+872)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #14 pc 0000000000177494 /system/lib64/libart.so (_ZN3art3Dbg15PostThreadStartEPNS_6ThreadE+48)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #15 pc 000000000044b904 /system/lib64/libart.so (_ZN3art6Thread6AttachEPKcbP8_jobjectb+2560)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #16 pc 000000000042e408 /system/lib64/libart.so (_ZN3art7Runtime19AttachCurrentThreadEPKcbP8_jobjectb+112)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #17 pc 00000000002f268c /system/lib64/libart.so (_ZN3art3JII27AttachCurrentThreadInternalEP7_JavaVMPP7_JNIEnvPvb+296)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #18 pc 000000000010aa88 /system/lib64/libart.so (_ZN3art8CheckJII19AttachCurrentThreadEP7_JavaVMPP7_JNIEnvPv+132)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #19 pc 0000000000036200 /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #20 pc 00000000001a5668 /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #21 pc 00000000001caee0 /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #22 pc 00000000001ca16c /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #23 pc 000000000008e4d4 /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #24 pc 00000000001d1c68 /data/app/ie.beepsafe.app-2/lib/arm64/libmapbox-gl.so
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #25 pc 0000000000068258 /system/lib64/libc.so (_ZL15__pthread_startPv+196)
2019-05-16 15:14:09.232 854-854/? A/DEBUG: #26 pc 000000000001dc00 /system/lib64/libc.so (__start_thread+16)

@LukasPaczos
Copy link
Member

#14450 has landed and we hope that it might resolve this issue as well. We'd appreciate if you could retest your environments using the 8.1.0-alpha.1 and report back here, thanks!

@tobrun
Copy link
Member

tobrun commented Jun 3, 2019

Tests with 8.1.0 codebase have shown great improvements due to threading refactor from @LukasPaczos. Below image was captured after running location component example with compass enabled for 2.5 minutes.

image (7)

the amount of 26 objects, is a lot lower as the 51200 max. On top of this the "leaked" objects all come from Android Studio network profiler which won't be active with release builds.

I'm going to close this issue as resolved for now, please retest with the 8.1.0 releases and do reach out if you are still able to reproduce. Please provide a profiler trace to help us diagnose the problem. Thank you all for using our products and providing feedback!

@tobrun tobrun closed this as completed Jun 3, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Android Mapbox Maps SDK for Android
Projects
None yet
Development

Successfully merging a pull request may close this issue.

7 participants