Home
last modified time | relevance | path

Searched refs:threads_table (Results 1 – 1 of 1) sorted by relevance

/Zephyr-latest/scripts/native_simulator/common/src/
Dnct.c112 struct threads_table_el *threads_table; /* Pointer to the threads table */ member
347 if (!this->threads_table || this->terminate) { in nct_thread_starter()
389 struct threads_table_el *threads_table = this->threads_table; in ttable_get_element() local
398 threads_table = threads_table[NCT_ALLOC_CHUNK_SIZE - 1].next; in ttable_get_element()
400 return &threads_table[index]; in ttable_get_element()
408 struct threads_table_el *tt_el = this->threads_table; in ttable_get_empty_slot()
524 this->threads_table = calloc(NCT_ALLOC_CHUNK_SIZE, in nct_init()
526 if (this->threads_table == NULL) { /* LCOV_EXCL_BR_LINE */ in nct_init()
533 this->threads_table[i].next = &this->threads_table[i+1]; in nct_init()
535 this->threads_table[NCT_ALLOC_CHUNK_SIZE - 1].next = NULL; in nct_init()
[all …]