Don't start a thread in library constructor, do it in JNI_OnLoad instead.
| 18 | |
| 19 | // Don't start a thread in library constructor, do it in JNI_OnLoad instead. |
| 20 | __attribute__((constructor)) void init() |
| 21 | { |
| 22 | KITTY_LOGI("hi ctor"); |
| 23 | } |
| 24 | |
| 25 | void print_solist_thread() |
| 26 | { |
nothing calls this directly
no outgoing calls
no test coverage detected