Changeset 33464 in vbox for trunk/src/VBox/Devices/Network/lwip
- Timestamp:
- Oct 26, 2010 12:27:50 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/lwip/vbox/sys_arch.c
r28800 r33464 383 383 { 384 384 int rc; 385 char *pszThread = NULL;386 385 #if SYS_LIGHTWEIGHT_PROT 387 386 SYS_ARCH_DECL_PROTECT(old_level); … … 400 399 g_aTLS[id].thread = thread; 401 400 g_aTLS[id].arg = arg; 402 RTStrAPrintf(&pszThread, "lwIP%u", id); 403 rc = RTThreadCreate(&tid, sys_thread_adapter, &g_aTLS[id], 0, 404 RTTHREADTYPE_IO, 0, pszThread); 401 rc = RTThreadCreateF(&tid, sys_thread_adapter, &g_aTLS[id], 0, 402 RTTHREADTYPE_IO, 0, "lwIP%u", id); 405 403 if (RT_FAILURE(rc)) 406 404 {
Note:
See TracChangeset
for help on using the changeset viewer.