We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eae097b commit 1cbd172Copy full SHA for 1cbd172
lib/tcpip/FreeRTOS_IP_wrapper.c
@@ -21,7 +21,7 @@ struct FlagLockState ipThreadLockState;
21
22
void ip_thread_start(void)
23
{
24
- FreeRTOS_printf("ip_thread_start\n");
+ FreeRTOS_printf(("ip_thread_start\n"));
25
threadEntryGuard = 1;
26
futex_wake(&threadEntryGuard, 1);
27
}
@@ -31,7 +31,7 @@ void __cheri_compartment("TCPIP") ip_thread_entry(void)
31
FreeRTOS_printf(("ip_thread_entry\n"));
32
while (threadEntryGuard == 0)
33
34
- FreeRTOS_printf("Sleeping until the IP task is supposed to start\n");
+ FreeRTOS_printf(("Sleeping until the IP task is supposed to start\n"));
35
futex_wait(&threadEntryGuard, 0);
36
37
xIPTaskHandle = thread_id_get();
0 commit comments