MCPcopy Create free account
hub / github.com/F-Stack/f-stack / rte_thread_unregister

Function rte_thread_unregister

dpdk/lib/eal/common/eal_common_thread.c:395–406  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

393}
394
395void
396rte_thread_unregister(void)
397{
398 unsigned int lcore_id = rte_lcore_id();
399
400 if (lcore_id != LCORE_ID_ANY)
401 eal_lcore_non_eal_release(lcore_id);
402 __rte_thread_uninit();
403 if (lcore_id != LCORE_ID_ANY)
404 RTE_LOG(DEBUG, EAL, "Unregistered non-EAL thread (was lcore %u).\n",
405 lcore_id);
406}
407
408int
409rte_thread_attr_init(rte_thread_attr_t *attr)

Callers 1

thread_loopFunction · 0.85

Calls 3

rte_lcore_idFunction · 0.85
__rte_thread_uninitFunction · 0.85

Tested by 1

thread_loopFunction · 0.68