Skip to content

Commit

Permalink
small: bump new version
Browse files Browse the repository at this point in the history
The main reason of update:
When the memcached module is linked with tarantool,
it uses some of the "small" functions from tarantool
(which were exported by tarantool, for example:
mempool_create_with_order()) and some from the "small"
with wich it was built (for example: mempool_create(),
mempool_free()). This can lead to undefined behavior
(segfault for example). To avoid the problem, will use
the same (close) version of the "small" as tarantool.

Part of #59
  • Loading branch information
LeonidVas authored and Totktonada committed Jun 3, 2020
1 parent 62a557f commit d168814
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion third_party/small
Submodule small updated 69 files
+4 −0 .gitignore
+117 −66 .travis.yml
+47 −9 CMakeLists.txt
+8 −0 Jenkinsfile
+1 −1 LICENSE
+2 −0 debian/libsmall-dev.install
+3 −0 rpm/small.spec
+134 −0 small/features.c
+60 −0 small/features.h
+1 −1 small/ibuf.c
+1 −1 small/ibuf.h
+2 −2 small/lf_lifo.h
+1 −1 small/lifo.h
+90 −0 small/lsregion.c
+263 −0 small/lsregion.h
+5 −3 small/matras.c
+7 −4 small/matras.h
+14 −6 small/mempool.c
+3 −2 small/mempool.h
+1 −3 small/obuf.c
+14 −42 small/obuf.h
+6 −6 small/quota.h
+166 −0 small/quota_lessor.h
+743 −106 small/rb.h
+6 −3 small/region.c
+1 −17 small/region.h
+65 −3 small/rlist.h
+87 −17 small/slab_arena.c
+26 −2 small/slab_arena.h
+77 −29 small/slab_cache.c
+41 −3 small/slab_cache.h
+81 −36 small/small.c
+20 −4 small/small.h
+31 −0 small/small_config.h.cmake
+34 −0 small/static.c
+133 −0 small/static.h
+1 −1 test.sh
+49 −4 test/CMakeLists.txt
+1 −1 test/arena_mt.c
+365 −0 test/lsregion.c
+78 −0 test/lsregion.result
+24 −22 test/matras.cc
+2 −1 test/obuf.c
+7 −0 test/quota.skipcond
+99 −0 test/quota_lessor.c
+40 −0 test/quota_lessor.result
+193 −0 test/rb.c
+10 −0 test/rb.result
+193 −0 test/rb_aug.c
+2 −0 test/rb_aug.result
+240 −0 test/rb_rand.cc
+1 −0 test/rb_rand.result
+0 −12 test/region.c
+0 −3 test/region.result
+169 −0 test/rlist.c
+107 −0 test/rlist.result
+130 −0 test/slab_arena.c
+66 −25 test/small_alloc.c
+2 −0 test/small_alloc.result
+150 −0 test/static.c
+43 −0 test/static.result
+3 −0 test/suite.ini
+0 −34 test/test-run.sh
+1 −0 test/unit.c
+7 −4 test/unit.h
+20 −0 third_party/README.md
+0 −0 third_party/pmatomic.h
+302 −0 third_party/valgrind/memcheck.h
+7,160 −0 third_party/valgrind/valgrind.h

0 comments on commit d168814

Please sign in to comment.