diff options
author | David Goldblatt <davidgoldblatt@fb.com> | 2018-04-13 22:56:59 (GMT) |
---|---|---|
committer | David Goldblatt <davidtgoldblatt@gmail.com> | 2018-05-18 18:43:03 (GMT) |
commit | 06a8c40b36403e902748d3f2a14e6dd43488ae89 (patch) | |
tree | 20bc4ea9a41c58481548db1075c7fed52b047974 /Makefile.in | |
parent | c7a87e0e0bd02cf278760f3c22615d3129dc1ae2 (diff) | |
download | jemalloc-06a8c40b36403e902748d3f2a14e6dd43488ae89.zip jemalloc-06a8c40b36403e902748d3f2a14e6dd43488ae89.tar.gz jemalloc-06a8c40b36403e902748d3f2a14e6dd43488ae89.tar.bz2 |
Add the Seq module, a simple seqlock implementation.
This allows fast reader-writer concurrency in cases where writers are rare. The
immediate use case is for the hooking implementaiton.
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index c4f006b..074fdd4 100644 --- a/Makefile.in +++ b/Makefile.in @@ -197,6 +197,7 @@ TESTS_UNIT := \ $(srcroot)test/unit/rb.c \ $(srcroot)test/unit/retained.c \ $(srcroot)test/unit/rtree.c \ + $(srcroot)test/unit/seq.c \ $(srcroot)test/unit/SFMT.c \ $(srcroot)test/unit/size_classes.c \ $(srcroot)test/unit/slab.c \ |