Skip to content

Commit c0632c4

Browse files
committed
Trying Jenkins integration.
1 parent 29aa2b5 commit c0632c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ The hash map is implemented as an array of hash buckets.
1010
Each hash bucket is a single linked list of hash nodes and has a mutex associated with it.
1111
Multiple threads can read from the same bucket simulatenously, but only one thread can write
1212
into the same bucket. Since the mutex is per bucket, if multiple threads try to write into different
13-
buckets simulatenously, they will be allowed to do so. This allows some level of concurrency for the hash map.
13+
buckets simulatenously, they will be allowed to do so.This allows some level of concurrency for the hash map.
1414

1515
The mutex is implemented as "std::shared_timed_mutex" from C++14 and uses "std::unique_lock" from C++11 for writes
1616
and "std::shared_lock" from C++14 for reading from a bucket.

0 commit comments

Comments
 (0)