Home
last modified time | relevance | path

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

/dpdk/lib/hash/
H A Drte_cuckoo_hash.c453 if (h->readwrite_lock == NULL) in rte_hash_create()
456 rte_rwlock_init(h->readwrite_lock); in rte_hash_create()
518 rte_free(h->readwrite_lock); in rte_hash_free()
581 rte_rwlock_write_lock_tm(h->readwrite_lock); in __hash_rw_writer_lock()
583 rte_rwlock_write_lock(h->readwrite_lock); in __hash_rw_writer_lock()
590 rte_rwlock_read_lock_tm(h->readwrite_lock); in __hash_rw_reader_lock()
592 rte_rwlock_read_lock(h->readwrite_lock); in __hash_rw_reader_lock()
599 rte_rwlock_write_unlock_tm(h->readwrite_lock); in __hash_rw_writer_unlock()
601 rte_rwlock_write_unlock(h->readwrite_lock); in __hash_rw_writer_unlock()
608 rte_rwlock_read_unlock_tm(h->readwrite_lock); in __hash_rw_reader_unlock()
[all …]
H A Drte_cuckoo_hash.h222 rte_rwlock_t *readwrite_lock; /**< Read-write lock thread-safety. */ member