Skip to content

Commit 1f4f623

Browse files
committed
feat: Name PPP thread
1 parent 56a12ce commit 1f4f623

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/lwipstack/ppp_lwip.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ static EventQueue *prepare_event_queue()
6868

6969
// Only need to queue 2 events. new blows on failure.
7070
event_queue = new EventQueue(2 * EVENTS_EVENT_SIZE, NULL);
71-
event_thread = new Thread(osPriorityNormal, PPP_THREAD_STACK_SIZE);
71+
event_thread = new Thread(osPriorityNormal, PPP_THREAD_STACK_SIZE, NULL, "event_thread");
7272

7373
if (event_thread->start(callback(event_queue, &EventQueue::dispatch_forever)) != osOK) {
7474
delete event_thread;

0 commit comments

Comments
 (0)