Skip to content
Snippets Groups Projects
Commit 1ca983f9 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Abort using SIGABRT instead of SIGKILL on command_timeout"

parents b7aa506b cec08136
No related branches found
No related tags found
No related merge requests found
......@@ -409,7 +409,7 @@ static void command_timed_out(UNUSED_ATTR void* context) {
LOG_ERROR(LOG_TAG, "%s restarting the bluetooth process.", __func__);
usleep(10000);
kill(getpid(), SIGKILL);
abort();
}
// Event/packet receiving functions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment