unix/mpbtstackport_usb: Remove thread detached attribute.

As in the previous commit, the thread is later joined so can't be detached.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George 2024-07-17 14:59:55 +10:00
parent 220088fff6
commit b4b4d161c2
1 changed files with 1 additions and 4 deletions

View File

@ -110,10 +110,7 @@ static void *btstack_thread(void *arg) {
void mp_bluetooth_btstack_port_start(void) {
// Create a thread to run the btstack loop.
pthread_attr_t attr;
pthread_attr_init(&attr);
pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED);
pthread_create(&bstack_thread_id, &attr, &btstack_thread, NULL);
pthread_create(&bstack_thread_id, NULL, &btstack_thread, NULL);
}
#endif // MICROPY_PY_BLUETOOTH && MICROPY_BLUETOOTH_BTSTACK && MICROPY_BLUETOOTH_BTSTACK_USB