Hello I built a hash table in C. I have unit tested it enough to be confident it works. The thing is that the data structure will be dynamicly linked to code that I did not write and may be using threads. So I need to synchronize it so it'll work correctly for theoretically any number of threads concurrently modifying/ reading it. After studying the pthread mutex API I did the followingHello I built a hash table in C. I have unit te