DavidLeeds / hashmap

Templated type-safe hashmap implementation in C using open addressing and linear probing for collision resolution.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is this hashmap thread-safe?

labingIt opened this issue · comments

Is this hashmap thread-safe?

It is not thread-safe, but feel free to wrap calls in a mutex if you desire thread-safety.