couchbase-memcached 1.2.8
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +2 -0
- data/BENCHMARKS +134 -0
- data/CHANGELOG +127 -0
- data/LICENSE +184 -0
- data/Manifest +535 -0
- data/README +118 -0
- data/Rakefile +83 -0
- data/TODO +4 -0
- data/couchbase-memcached.gemspec +33 -0
- data/ext/extconf-make.rb +25 -0
- data/ext/extconf.rb +91 -0
- data/ext/libmemcached-0.50/AUTHORS +11 -0
- data/ext/libmemcached-0.50/COPYING +33 -0
- data/ext/libmemcached-0.50/ChangeLog +392 -0
- data/ext/libmemcached-0.50/Makefile.am +114 -0
- data/ext/libmemcached-0.50/Makefile.in +4232 -0
- data/ext/libmemcached-0.50/NEWS +1 -0
- data/ext/libmemcached-0.50/README +43 -0
- data/ext/libmemcached-0.50/README.FIRST +31 -0
- data/ext/libmemcached-0.50/README.win32 +25 -0
- data/ext/libmemcached-0.50/THANKS +14 -0
- data/ext/libmemcached-0.50/TODO +11 -0
- data/ext/libmemcached-0.50/aclocal.m4 +1077 -0
- data/ext/libmemcached-0.50/clients/client_options.h +45 -0
- data/ext/libmemcached-0.50/clients/execute.cc +131 -0
- data/ext/libmemcached-0.50/clients/execute.h +30 -0
- data/ext/libmemcached-0.50/clients/generator.cc +96 -0
- data/ext/libmemcached-0.50/clients/generator.h +36 -0
- data/ext/libmemcached-0.50/clients/include.am +116 -0
- data/ext/libmemcached-0.50/clients/memaslap.c +908 -0
- data/ext/libmemcached-0.50/clients/memcapable.cc +2094 -0
- data/ext/libmemcached-0.50/clients/memcat.cc +242 -0
- data/ext/libmemcached-0.50/clients/memcp.cc +317 -0
- data/ext/libmemcached-0.50/clients/memdump.cc +183 -0
- data/ext/libmemcached-0.50/clients/memerror.cc +102 -0
- data/ext/libmemcached-0.50/clients/memflush.cc +154 -0
- data/ext/libmemcached-0.50/clients/memparse.cc +68 -0
- data/ext/libmemcached-0.50/clients/memrm.cc +177 -0
- data/ext/libmemcached-0.50/clients/memslap.cc +495 -0
- data/ext/libmemcached-0.50/clients/memstat.cc +349 -0
- data/ext/libmemcached-0.50/clients/ms_atomic.h +69 -0
- data/ext/libmemcached-0.50/clients/ms_conn.c +3413 -0
- data/ext/libmemcached-0.50/clients/ms_conn.h +241 -0
- data/ext/libmemcached-0.50/clients/ms_memslap.h +132 -0
- data/ext/libmemcached-0.50/clients/ms_setting.c +1068 -0
- data/ext/libmemcached-0.50/clients/ms_setting.h +181 -0
- data/ext/libmemcached-0.50/clients/ms_sigsegv.c +126 -0
- data/ext/libmemcached-0.50/clients/ms_sigsegv.h +34 -0
- data/ext/libmemcached-0.50/clients/ms_stats.c +307 -0
- data/ext/libmemcached-0.50/clients/ms_stats.h +69 -0
- data/ext/libmemcached-0.50/clients/ms_task.c +1114 -0
- data/ext/libmemcached-0.50/clients/ms_task.h +94 -0
- data/ext/libmemcached-0.50/clients/ms_thread.c +351 -0
- data/ext/libmemcached-0.50/clients/ms_thread.h +78 -0
- data/ext/libmemcached-0.50/clients/utilities.cc +231 -0
- data/ext/libmemcached-0.50/clients/utilities.h +64 -0
- data/ext/libmemcached-0.50/config.h.in +647 -0
- data/ext/libmemcached-0.50/config/autorun.sh +126 -0
- data/ext/libmemcached-0.50/config/compile +143 -0
- data/ext/libmemcached-0.50/config/config.guess +1517 -0
- data/ext/libmemcached-0.50/config/config.rpath +666 -0
- data/ext/libmemcached-0.50/config/config.sub +1760 -0
- data/ext/libmemcached-0.50/config/depcomp +630 -0
- data/ext/libmemcached-0.50/config/install-sh +520 -0
- data/ext/libmemcached-0.50/config/ltmain.sh +9642 -0
- data/ext/libmemcached-0.50/config/missing +376 -0
- data/ext/libmemcached-0.50/config/pandora-plugin +752 -0
- data/ext/libmemcached-0.50/config/uncrustify.cfg +1112 -0
- data/ext/libmemcached-0.50/configure +27103 -0
- data/ext/libmemcached-0.50/configure.ac +186 -0
- data/ext/libmemcached-0.50/docs/conf.py.in +354 -0
- data/ext/libmemcached-0.50/docs/include.am +240 -0
- data/ext/libmemcached-0.50/docs/man/hashkit_clone.3 +88 -0
- data/ext/libmemcached-0.50/docs/man/hashkit_crc32.3 +105 -0
- data/ext/libmemcached-0.50/docs/man/hashkit_create.3 +88 -0
- data/ext/libmemcached-0.50/docs/man/hashkit_fnv1_32.3 +105 -0
- data/ext/libmemcached-0.50/docs/man/hashkit_fnv1_64.3 +105 -0
- data/ext/libmemcached-0.50/docs/man/hashkit_fnv1a_32.3 +105 -0
- data/ext/libmemcached-0.50/docs/man/hashkit_fnv1a_64.3 +105 -0
- data/ext/libmemcached-0.50/docs/man/hashkit_free.3 +88 -0
- data/ext/libmemcached-0.50/docs/man/hashkit_functions.3 +105 -0
- data/ext/libmemcached-0.50/docs/man/hashkit_hsieh.3 +105 -0
- data/ext/libmemcached-0.50/docs/man/hashkit_is_allocated.3 +88 -0
- data/ext/libmemcached-0.50/docs/man/hashkit_jenkins.3 +105 -0
- data/ext/libmemcached-0.50/docs/man/hashkit_md5.3 +105 -0
- data/ext/libmemcached-0.50/docs/man/hashkit_murmur.3 +105 -0
- data/ext/libmemcached-0.50/docs/man/hashkit_value.3 +66 -0
- data/ext/libmemcached-0.50/docs/man/libhashkit.3 +57 -0
- data/ext/libmemcached-0.50/docs/man/libmemcached.3 +208 -0
- data/ext/libmemcached-0.50/docs/man/libmemcached_check_configuration.3 +293 -0
- data/ext/libmemcached-0.50/docs/man/libmemcached_configuration.3 +293 -0
- data/ext/libmemcached-0.50/docs/man/libmemcached_examples.3 +144 -0
- data/ext/libmemcached-0.50/docs/man/libmemcachedutil.3 +68 -0
- data/ext/libmemcached-0.50/docs/man/memaslap.1 +1222 -0
- data/ext/libmemcached-0.50/docs/man/memcached.3 +293 -0
- data/ext/libmemcached-0.50/docs/man/memcached_add.3 +132 -0
- data/ext/libmemcached-0.50/docs/man/memcached_add_by_key.3 +132 -0
- data/ext/libmemcached-0.50/docs/man/memcached_analyze.3 +77 -0
- data/ext/libmemcached-0.50/docs/man/memcached_append.3 +111 -0
- data/ext/libmemcached-0.50/docs/man/memcached_append_by_key.3 +111 -0
- data/ext/libmemcached-0.50/docs/man/memcached_behavior_get.3 +333 -0
- data/ext/libmemcached-0.50/docs/man/memcached_behavior_set.3 +333 -0
- data/ext/libmemcached-0.50/docs/man/memcached_callback_get.3 +159 -0
- data/ext/libmemcached-0.50/docs/man/memcached_callback_set.3 +159 -0
- data/ext/libmemcached-0.50/docs/man/memcached_cas.3 +91 -0
- data/ext/libmemcached-0.50/docs/man/memcached_cas_by_key.3 +91 -0
- data/ext/libmemcached-0.50/docs/man/memcached_clone.3 +99 -0
- data/ext/libmemcached-0.50/docs/man/memcached_create.3 +99 -0
- data/ext/libmemcached-0.50/docs/man/memcached_decrement.3 +124 -0
- data/ext/libmemcached-0.50/docs/man/memcached_decrement_with_initial.3 +124 -0
- data/ext/libmemcached-0.50/docs/man/memcached_delete.3 +83 -0
- data/ext/libmemcached-0.50/docs/man/memcached_delete_by_key.3 +83 -0
- data/ext/libmemcached-0.50/docs/man/memcached_destroy_sasl_auth_data.3 +95 -0
- data/ext/libmemcached-0.50/docs/man/memcached_dump.3 +77 -0
- data/ext/libmemcached-0.50/docs/man/memcached_fetch.3 +174 -0
- data/ext/libmemcached-0.50/docs/man/memcached_fetch_execute.3 +174 -0
- data/ext/libmemcached-0.50/docs/man/memcached_fetch_result.3 +174 -0
- data/ext/libmemcached-0.50/docs/man/memcached_flush_buffers.3 +72 -0
- data/ext/libmemcached-0.50/docs/man/memcached_free.3 +99 -0
- data/ext/libmemcached-0.50/docs/man/memcached_generate_hash.3 +85 -0
- data/ext/libmemcached-0.50/docs/man/memcached_generate_hash_value.3 +85 -0
- data/ext/libmemcached-0.50/docs/man/memcached_get.3 +174 -0
- data/ext/libmemcached-0.50/docs/man/memcached_get_by_key.3 +174 -0
- data/ext/libmemcached-0.50/docs/man/memcached_get_memory_allocators.3 +111 -0
- data/ext/libmemcached-0.50/docs/man/memcached_get_sasl_callbacks.3 +95 -0
- data/ext/libmemcached-0.50/docs/man/memcached_get_user_data.3 +79 -0
- data/ext/libmemcached-0.50/docs/man/memcached_increment.3 +124 -0
- data/ext/libmemcached-0.50/docs/man/memcached_increment_with_initial.3 +124 -0
- data/ext/libmemcached-0.50/docs/man/memcached_lib_version.3 +76 -0
- data/ext/libmemcached-0.50/docs/man/memcached_mget.3 +174 -0
- data/ext/libmemcached-0.50/docs/man/memcached_mget_by_key.3 +174 -0
- data/ext/libmemcached-0.50/docs/man/memcached_mget_execute.3 +174 -0
- data/ext/libmemcached-0.50/docs/man/memcached_mget_execute_by_key.3 +174 -0
- data/ext/libmemcached-0.50/docs/man/memcached_pool_behavior_get.3 +139 -0
- data/ext/libmemcached-0.50/docs/man/memcached_pool_behavior_set.3 +139 -0
- data/ext/libmemcached-0.50/docs/man/memcached_pool_create.3 +139 -0
- data/ext/libmemcached-0.50/docs/man/memcached_pool_destroy.3 +139 -0
- data/ext/libmemcached-0.50/docs/man/memcached_pool_pop.3 +139 -0
- data/ext/libmemcached-0.50/docs/man/memcached_pool_push.3 +139 -0
- data/ext/libmemcached-0.50/docs/man/memcached_pool_st.3 +139 -0
- data/ext/libmemcached-0.50/docs/man/memcached_prepend.3 +111 -0
- data/ext/libmemcached-0.50/docs/man/memcached_prepend_by_key.3 +111 -0
- data/ext/libmemcached-0.50/docs/man/memcached_quit.3 +74 -0
- data/ext/libmemcached-0.50/docs/man/memcached_replace.3 +132 -0
- data/ext/libmemcached-0.50/docs/man/memcached_replace_by_key.3 +132 -0
- data/ext/libmemcached-0.50/docs/man/memcached_sasl_set_auth_data.3 +95 -0
- data/ext/libmemcached-0.50/docs/man/memcached_server_add.3 +141 -0
- data/ext/libmemcached-0.50/docs/man/memcached_server_count.3 +141 -0
- data/ext/libmemcached-0.50/docs/man/memcached_server_cursor.3 +141 -0
- data/ext/libmemcached-0.50/docs/man/memcached_server_list.3 +141 -0
- data/ext/libmemcached-0.50/docs/man/memcached_server_list_append.3 +111 -0
- data/ext/libmemcached-0.50/docs/man/memcached_server_list_count.3 +111 -0
- data/ext/libmemcached-0.50/docs/man/memcached_server_list_free.3 +111 -0
- data/ext/libmemcached-0.50/docs/man/memcached_server_push.3 +141 -0
- data/ext/libmemcached-0.50/docs/man/memcached_servers_parse.3 +111 -0
- data/ext/libmemcached-0.50/docs/man/memcached_set.3 +132 -0
- data/ext/libmemcached-0.50/docs/man/memcached_set_by_key.3 +132 -0
- data/ext/libmemcached-0.50/docs/man/memcached_set_memory_allocators.3 +111 -0
- data/ext/libmemcached-0.50/docs/man/memcached_set_sasl_callbacks.3 +95 -0
- data/ext/libmemcached-0.50/docs/man/memcached_set_user_data.3 +79 -0
- data/ext/libmemcached-0.50/docs/man/memcached_stat.3 +116 -0
- data/ext/libmemcached-0.50/docs/man/memcached_stat_execute.3 +116 -0
- data/ext/libmemcached-0.50/docs/man/memcached_stat_get_keys.3 +116 -0
- data/ext/libmemcached-0.50/docs/man/memcached_stat_get_value.3 +116 -0
- data/ext/libmemcached-0.50/docs/man/memcached_stat_servername.3 +116 -0
- data/ext/libmemcached-0.50/docs/man/memcached_strerror.3 +69 -0
- data/ext/libmemcached-0.50/docs/man/memcached_verbosity.3 +66 -0
- data/ext/libmemcached-0.50/docs/man/memcached_version.3 +76 -0
- data/ext/libmemcached-0.50/docs/man/memcapable.1 +92 -0
- data/ext/libmemcached-0.50/docs/man/memcat.1 +71 -0
- data/ext/libmemcached-0.50/docs/man/memcp.1 +77 -0
- data/ext/libmemcached-0.50/docs/man/memdump.1 +66 -0
- data/ext/libmemcached-0.50/docs/man/memerror.1 +65 -0
- data/ext/libmemcached-0.50/docs/man/memflush.1 +73 -0
- data/ext/libmemcached-0.50/docs/man/memrm.1 +72 -0
- data/ext/libmemcached-0.50/docs/man/memslap.1 +59 -0
- data/ext/libmemcached-0.50/docs/man/memstat.1 +70 -0
- data/ext/libmemcached-0.50/example/include.am +24 -0
- data/ext/libmemcached-0.50/example/interface_v0.c +594 -0
- data/ext/libmemcached-0.50/example/interface_v1.c +411 -0
- data/ext/libmemcached-0.50/example/memcached_light.c +474 -0
- data/ext/libmemcached-0.50/example/memcached_light.h +7 -0
- data/ext/libmemcached-0.50/example/storage.c +172 -0
- data/ext/libmemcached-0.50/example/storage.h +27 -0
- data/ext/libmemcached-0.50/example/storage_innodb.c +535 -0
- data/ext/libmemcached-0.50/libhashkit/algorithm.cc +69 -0
- data/ext/libmemcached-0.50/libhashkit/algorithm.h +96 -0
- data/ext/libmemcached-0.50/libhashkit/behavior.cc +9 -0
- data/ext/libmemcached-0.50/libhashkit/behavior.h +26 -0
- data/ext/libmemcached-0.50/libhashkit/common.h +33 -0
- data/ext/libmemcached-0.50/libhashkit/configure.h.in +19 -0
- data/ext/libmemcached-0.50/libhashkit/crc32.cc +86 -0
- data/ext/libmemcached-0.50/libhashkit/digest.cc +62 -0
- data/ext/libmemcached-0.50/libhashkit/digest.h +30 -0
- data/ext/libmemcached-0.50/libhashkit/fnv.cc +75 -0
- data/ext/libmemcached-0.50/libhashkit/function.cc +156 -0
- data/ext/libmemcached-0.50/libhashkit/function.h +44 -0
- data/ext/libmemcached-0.50/libhashkit/hashkit.cc +100 -0
- data/ext/libmemcached-0.50/libhashkit/hashkit.h +95 -0
- data/ext/libmemcached-0.50/libhashkit/hashkit.hpp +97 -0
- data/ext/libmemcached-0.50/libhashkit/hsieh.cc +70 -0
- data/ext/libmemcached-0.50/libhashkit/include.am +69 -0
- data/ext/libmemcached-0.50/libhashkit/jenkins.cc +214 -0
- data/ext/libmemcached-0.50/libhashkit/ketama.cc +164 -0
- data/ext/libmemcached-0.50/libhashkit/md5.cc +367 -0
- data/ext/libmemcached-0.50/libhashkit/murmur.cc +77 -0
- data/ext/libmemcached-0.50/libhashkit/one_at_a_time.cc +34 -0
- data/ext/libmemcached-0.50/libhashkit/str_algorithm.cc +58 -0
- data/ext/libmemcached-0.50/libhashkit/str_algorithm.h +48 -0
- data/ext/libmemcached-0.50/libhashkit/strerror.cc +25 -0
- data/ext/libmemcached-0.50/libhashkit/strerror.h +23 -0
- data/ext/libmemcached-0.50/libhashkit/types.h +90 -0
- data/ext/libmemcached-0.50/libhashkit/visibility.h +48 -0
- data/ext/libmemcached-0.50/libmemcached/allocators.cc +119 -0
- data/ext/libmemcached-0.50/libmemcached/allocators.h +87 -0
- data/ext/libmemcached-0.50/libmemcached/analyze.cc +110 -0
- data/ext/libmemcached-0.50/libmemcached/analyze.h +66 -0
- data/ext/libmemcached-0.50/libmemcached/array.c +128 -0
- data/ext/libmemcached-0.50/libmemcached/array.h +75 -0
- data/ext/libmemcached-0.50/libmemcached/auto.cc +383 -0
- data/ext/libmemcached-0.50/libmemcached/auto.h +111 -0
- data/ext/libmemcached-0.50/libmemcached/basic_string.h +55 -0
- data/ext/libmemcached-0.50/libmemcached/behavior.cc +590 -0
- data/ext/libmemcached-0.50/libmemcached/behavior.h +86 -0
- data/ext/libmemcached-0.50/libmemcached/byteorder.cc +90 -0
- data/ext/libmemcached-0.50/libmemcached/byteorder.h +52 -0
- data/ext/libmemcached-0.50/libmemcached/callback.cc +160 -0
- data/ext/libmemcached-0.50/libmemcached/callback.h +61 -0
- data/ext/libmemcached-0.50/libmemcached/common.h +182 -0
- data/ext/libmemcached-0.50/libmemcached/configure.h.in +52 -0
- data/ext/libmemcached-0.50/libmemcached/connect.cc +626 -0
- data/ext/libmemcached-0.50/libmemcached/constants.h +167 -0
- data/ext/libmemcached-0.50/libmemcached/delete.cc +266 -0
- data/ext/libmemcached-0.50/libmemcached/delete.h +57 -0
- data/ext/libmemcached-0.50/libmemcached/do.cc +100 -0
- data/ext/libmemcached-0.50/libmemcached/do.hpp +49 -0
- data/ext/libmemcached-0.50/libmemcached/dump.cc +107 -0
- data/ext/libmemcached-0.50/libmemcached/dump.h +51 -0
- data/ext/libmemcached-0.50/libmemcached/error.cc +419 -0
- data/ext/libmemcached-0.50/libmemcached/error.h +61 -0
- data/ext/libmemcached-0.50/libmemcached/error.hpp +87 -0
- data/ext/libmemcached-0.50/libmemcached/exception.hpp +63 -0
- data/ext/libmemcached-0.50/libmemcached/fetch.cc +267 -0
- data/ext/libmemcached-0.50/libmemcached/fetch.h +53 -0
- data/ext/libmemcached-0.50/libmemcached/flush.cc +149 -0
- data/ext/libmemcached-0.50/libmemcached/flush.h +49 -0
- data/ext/libmemcached-0.50/libmemcached/flush_buffers.cc +66 -0
- data/ext/libmemcached-0.50/libmemcached/flush_buffers.h +49 -0
- data/ext/libmemcached-0.50/libmemcached/get.cc +842 -0
- data/ext/libmemcached-0.50/libmemcached/get.h +135 -0
- data/ext/libmemcached-0.50/libmemcached/hash.cc +178 -0
- data/ext/libmemcached-0.50/libmemcached/hash.h +68 -0
- data/ext/libmemcached-0.50/libmemcached/hosts.cc +516 -0
- data/ext/libmemcached-0.50/libmemcached/include.am +183 -0
- data/ext/libmemcached-0.50/libmemcached/initialize_query.cc +70 -0
- data/ext/libmemcached-0.50/libmemcached/initialize_query.h +51 -0
- data/ext/libmemcached-0.50/libmemcached/internal.h +46 -0
- data/ext/libmemcached-0.50/libmemcached/io.cc +920 -0
- data/ext/libmemcached-0.50/libmemcached/io.h +119 -0
- data/ext/libmemcached-0.50/libmemcached/is.h +48 -0
- data/ext/libmemcached-0.50/libmemcached/key.cc +23 -0
- data/ext/libmemcached-0.50/libmemcached/libmemcached_probes.d +30 -0
- data/ext/libmemcached-0.50/libmemcached/libmemcached_probes.h +118 -0
- data/ext/libmemcached-0.50/libmemcached/memcached.cc +437 -0
- data/ext/libmemcached-0.50/libmemcached/memcached.h +214 -0
- data/ext/libmemcached-0.50/libmemcached/memcached.hpp +799 -0
- data/ext/libmemcached-0.50/libmemcached/memcached/README.txt +7 -0
- data/ext/libmemcached-0.50/libmemcached/memcached/protocol_binary.h +726 -0
- data/ext/libmemcached-0.50/libmemcached/memcached/vbucket.h +26 -0
- data/ext/libmemcached-0.50/libmemcached/memcached_util.h +44 -0
- data/ext/libmemcached-0.50/libmemcached/memory.h +79 -0
- data/ext/libmemcached-0.50/libmemcached/options.cc +178 -0
- data/ext/libmemcached-0.50/libmemcached/options.h +49 -0
- data/ext/libmemcached-0.50/libmemcached/options.hpp +56 -0
- data/ext/libmemcached-0.50/libmemcached/options/context.h +151 -0
- data/ext/libmemcached-0.50/libmemcached/options/include.am +19 -0
- data/ext/libmemcached-0.50/libmemcached/options/parser.am +0 -0
- data/ext/libmemcached-0.50/libmemcached/options/parser.cc +2324 -0
- data/ext/libmemcached-0.50/libmemcached/options/parser.h +122 -0
- data/ext/libmemcached-0.50/libmemcached/options/scanner.cc +3203 -0
- data/ext/libmemcached-0.50/libmemcached/options/scanner.h +479 -0
- data/ext/libmemcached-0.50/libmemcached/options/server.h +60 -0
- data/ext/libmemcached-0.50/libmemcached/options/symbol.h +57 -0
- data/ext/libmemcached-0.50/libmemcached/parse.cc +110 -0
- data/ext/libmemcached-0.50/libmemcached/parse.h +23 -0
- data/ext/libmemcached-0.50/libmemcached/platform.h +56 -0
- data/ext/libmemcached-0.50/libmemcached/prefix_key.cc +65 -0
- data/ext/libmemcached-0.50/libmemcached/prefix_key.h +49 -0
- data/ext/libmemcached-0.50/libmemcached/protocol/ascii_handler.c +963 -0
- data/ext/libmemcached-0.50/libmemcached/protocol/ascii_handler.h +40 -0
- data/ext/libmemcached-0.50/libmemcached/protocol/binary_handler.c +1121 -0
- data/ext/libmemcached-0.50/libmemcached/protocol/binary_handler.h +47 -0
- data/ext/libmemcached-0.50/libmemcached/protocol/cache.c +149 -0
- data/ext/libmemcached-0.50/libmemcached/protocol/cache.h +116 -0
- data/ext/libmemcached-0.50/libmemcached/protocol/callback.h +418 -0
- data/ext/libmemcached-0.50/libmemcached/protocol/common.h +163 -0
- data/ext/libmemcached-0.50/libmemcached/protocol/include.am +26 -0
- data/ext/libmemcached-0.50/libmemcached/protocol/pedantic.c +202 -0
- data/ext/libmemcached-0.50/libmemcached/protocol/protocol_handler.c +365 -0
- data/ext/libmemcached-0.50/libmemcached/protocol_handler.h +215 -0
- data/ext/libmemcached-0.50/libmemcached/purge.cc +90 -0
- data/ext/libmemcached-0.50/libmemcached/quit.cc +139 -0
- data/ext/libmemcached-0.50/libmemcached/quit.h +55 -0
- data/ext/libmemcached-0.50/libmemcached/response.cc +619 -0
- data/ext/libmemcached-0.50/libmemcached/response.h +57 -0
- data/ext/libmemcached-0.50/libmemcached/result.cc +173 -0
- data/ext/libmemcached-0.50/libmemcached/result.h +100 -0
- data/ext/libmemcached-0.50/libmemcached/return.h +98 -0
- data/ext/libmemcached-0.50/libmemcached/sasl.c +408 -0
- data/ext/libmemcached-0.50/libmemcached/sasl.h +86 -0
- data/ext/libmemcached-0.50/libmemcached/server.cc +351 -0
- data/ext/libmemcached-0.50/libmemcached/server.h +169 -0
- data/ext/libmemcached-0.50/libmemcached/server_list.cc +88 -0
- data/ext/libmemcached-0.50/libmemcached/server_list.h +77 -0
- data/ext/libmemcached-0.50/libmemcached/stats.cc +623 -0
- data/ext/libmemcached-0.50/libmemcached/stats.h +96 -0
- data/ext/libmemcached-0.50/libmemcached/storage.cc +567 -0
- data/ext/libmemcached-0.50/libmemcached/storage.h +133 -0
- data/ext/libmemcached-0.50/libmemcached/strerror.cc +189 -0
- data/ext/libmemcached-0.50/libmemcached/strerror.h +50 -0
- data/ext/libmemcached-0.50/libmemcached/string.cc +253 -0
- data/ext/libmemcached-0.50/libmemcached/string.h +121 -0
- data/ext/libmemcached-0.50/libmemcached/touch.cc +106 -0
- data/ext/libmemcached-0.50/libmemcached/touch.h +59 -0
- data/ext/libmemcached-0.50/libmemcached/types.h +117 -0
- data/ext/libmemcached-0.50/libmemcached/util.h +40 -0
- data/ext/libmemcached-0.50/libmemcached/util/flush.cc +61 -0
- data/ext/libmemcached-0.50/libmemcached/util/flush.h +50 -0
- data/ext/libmemcached-0.50/libmemcached/util/include.am +34 -0
- data/ext/libmemcached-0.50/libmemcached/util/ping.cc +62 -0
- data/ext/libmemcached-0.50/libmemcached/util/ping.h +49 -0
- data/ext/libmemcached-0.50/libmemcached/util/pool.cc +392 -0
- data/ext/libmemcached-0.50/libmemcached/util/pool.h +78 -0
- data/ext/libmemcached-0.50/libmemcached/util/version.cc +87 -0
- data/ext/libmemcached-0.50/libmemcached/util/version.h +53 -0
- data/ext/libmemcached-0.50/libmemcached/verbosity.cc +97 -0
- data/ext/libmemcached-0.50/libmemcached/verbosity.h +50 -0
- data/ext/libmemcached-0.50/libmemcached/version.cc +214 -0
- data/ext/libmemcached-0.50/libmemcached/version.h +52 -0
- data/ext/libmemcached-0.50/libmemcached/virtual_bucket.c +118 -0
- data/ext/libmemcached-0.50/libmemcached/virtual_bucket.h +59 -0
- data/ext/libmemcached-0.50/libmemcached/visibility.h +51 -0
- data/ext/libmemcached-0.50/libmemcached/watchpoint.h +110 -0
- data/ext/libmemcached-0.50/libtest/callbacks.h +21 -0
- data/ext/libmemcached-0.50/libtest/collection.h +19 -0
- data/ext/libmemcached-0.50/libtest/common.h +50 -0
- data/ext/libmemcached-0.50/libtest/core.h +11 -0
- data/ext/libmemcached-0.50/libtest/error.h +18 -0
- data/ext/libmemcached-0.50/libtest/failed.h +52 -0
- data/ext/libmemcached-0.50/libtest/framework.cc +57 -0
- data/ext/libmemcached-0.50/libtest/framework.h +137 -0
- data/ext/libmemcached-0.50/libtest/get.h +22 -0
- data/ext/libmemcached-0.50/libtest/include.am +52 -0
- data/ext/libmemcached-0.50/libtest/runner.h +19 -0
- data/ext/libmemcached-0.50/libtest/server.c +355 -0
- data/ext/libmemcached-0.50/libtest/server.h +43 -0
- data/ext/libmemcached-0.50/libtest/stats.h +30 -0
- data/ext/libmemcached-0.50/libtest/strerror.h +14 -0
- data/ext/libmemcached-0.50/libtest/test.cc +319 -0
- data/ext/libmemcached-0.50/libtest/test.h +162 -0
- data/ext/libmemcached-0.50/libtest/test.hpp +46 -0
- data/ext/libmemcached-0.50/libtest/visibility.h +69 -0
- data/ext/libmemcached-0.50/m4/ac_cxx_header_stdcxx_98.m4 +83 -0
- data/ext/libmemcached-0.50/m4/acx_pthread.m4 +271 -0
- data/ext/libmemcached-0.50/m4/byteorder.m4 +19 -0
- data/ext/libmemcached-0.50/m4/deprecated.m4 +17 -0
- data/ext/libmemcached-0.50/m4/eagain.m4 +28 -0
- data/ext/libmemcached-0.50/m4/enable_utillib.m4 +16 -0
- data/ext/libmemcached-0.50/m4/gettext.m4 +379 -0
- data/ext/libmemcached-0.50/m4/hsieh.m4 +18 -0
- data/ext/libmemcached-0.50/m4/iconv.m4 +214 -0
- data/ext/libmemcached-0.50/m4/lib-ld.m4 +110 -0
- data/ext/libmemcached-0.50/m4/lib-link.m4 +767 -0
- data/ext/libmemcached-0.50/m4/lib-prefix.m4 +221 -0
- data/ext/libmemcached-0.50/m4/libtool.m4 +7851 -0
- data/ext/libmemcached-0.50/m4/ltoptions.m4 +369 -0
- data/ext/libmemcached-0.50/m4/ltsugar.m4 +123 -0
- data/ext/libmemcached-0.50/m4/ltversion.m4 +23 -0
- data/ext/libmemcached-0.50/m4/lt~obsolete.m4 +98 -0
- data/ext/libmemcached-0.50/m4/memaslap.m4 +9 -0
- data/ext/libmemcached-0.50/m4/memcached.m4 +31 -0
- data/ext/libmemcached-0.50/m4/murmur.m4 +18 -0
- data/ext/libmemcached-0.50/m4/pandora_64bit.m4 +60 -0
- data/ext/libmemcached-0.50/m4/pandora_bison.m4 +33 -0
- data/ext/libmemcached-0.50/m4/pandora_canonical.m4 +418 -0
- data/ext/libmemcached-0.50/m4/pandora_check_compiler_version.m4 +37 -0
- data/ext/libmemcached-0.50/m4/pandora_check_cxx_standard.m4 +23 -0
- data/ext/libmemcached-0.50/m4/pandora_cinttypes.m4 +39 -0
- data/ext/libmemcached-0.50/m4/pandora_clock_gettime.m4 +15 -0
- data/ext/libmemcached-0.50/m4/pandora_compile_stdcxx_0x.m4 +103 -0
- data/ext/libmemcached-0.50/m4/pandora_cstdint.m4 +38 -0
- data/ext/libmemcached-0.50/m4/pandora_cxx_demangle.m4 +27 -0
- data/ext/libmemcached-0.50/m4/pandora_enable_dtrace.m4 +60 -0
- data/ext/libmemcached-0.50/m4/pandora_ensure_gcc_version.m4 +62 -0
- data/ext/libmemcached-0.50/m4/pandora_extensions.m4 +16 -0
- data/ext/libmemcached-0.50/m4/pandora_fdatasync.m4 +25 -0
- data/ext/libmemcached-0.50/m4/pandora_flex.m4 +33 -0
- data/ext/libmemcached-0.50/m4/pandora_have_better_malloc.m4 +66 -0
- data/ext/libmemcached-0.50/m4/pandora_have_boost.m4 +93 -0
- data/ext/libmemcached-0.50/m4/pandora_have_gcc_atomics.m4 +37 -0
- data/ext/libmemcached-0.50/m4/pandora_have_innodb.m4 +41 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libaio.m4 +56 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libavahi.m4 +41 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libbdb.m4 +40 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libboost_date_time.m4 +46 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libboost_filesystem.m4 +47 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libboost_iostreams.m4 +49 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libboost_options.m4 +47 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libboost_regex.m4 +54 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libboost_test.m4 +45 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libboost_thread.m4 +54 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libcassandra.m4 +44 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libcurl.m4 +62 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libdl.m4 +51 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libdrizzle.m4 +61 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libevent.m4 +66 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libgearman.m4 +41 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libgtest.m4 +47 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libhaildb.m4 +43 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libhashkit.m4 +42 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libinnodb.m4 +64 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libldap.m4 +73 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libmemcached.m4 +106 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libmysqlclient.m4 +146 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libndbclient.m4 +80 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libpcre.m4 +73 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libpq.m4 +46 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libpqxx.m4 +44 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libsqlite3.m4 +42 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libtokyocabinet.m4 +54 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libuuid.m4 +55 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libvbucket.m4 +40 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libxml2.m4 +52 -0
- data/ext/libmemcached-0.50/m4/pandora_have_libz.m4 +51 -0
- data/ext/libmemcached-0.50/m4/pandora_have_protobuf.m4 +82 -0
- data/ext/libmemcached-0.50/m4/pandora_have_sasl.m4 +133 -0
- data/ext/libmemcached-0.50/m4/pandora_have_thrift.m4 +45 -0
- data/ext/libmemcached-0.50/m4/pandora_header_assert.m4 +23 -0
- data/ext/libmemcached-0.50/m4/pandora_header_stdcxx_98.m4 +83 -0
- data/ext/libmemcached-0.50/m4/pandora_intltool.m4 +225 -0
- data/ext/libmemcached-0.50/m4/pandora_libtool.m4 +25 -0
- data/ext/libmemcached-0.50/m4/pandora_optimize.m4 +75 -0
- data/ext/libmemcached-0.50/m4/pandora_platform.m4 +117 -0
- data/ext/libmemcached-0.50/m4/pandora_plugins.m4 +62 -0
- data/ext/libmemcached-0.50/m4/pandora_print_callstack.m4 +61 -0
- data/ext/libmemcached-0.50/m4/pandora_pthread.m4 +258 -0
- data/ext/libmemcached-0.50/m4/pandora_python3_devel.m4 +236 -0
- data/ext/libmemcached-0.50/m4/pandora_run_cpplint.m4 +8 -0
- data/ext/libmemcached-0.50/m4/pandora_sasl.m4 +133 -0
- data/ext/libmemcached-0.50/m4/pandora_shared_ptr.m4 +59 -0
- data/ext/libmemcached-0.50/m4/pandora_stack_direction.m4 +39 -0
- data/ext/libmemcached-0.50/m4/pandora_stl_hash.m4 +94 -0
- data/ext/libmemcached-0.50/m4/pandora_swig.m4 +39 -0
- data/ext/libmemcached-0.50/m4/pandora_use_pipe.m4 +36 -0
- data/ext/libmemcached-0.50/m4/pandora_vc_build.m4 +168 -0
- data/ext/libmemcached-0.50/m4/pandora_version.m4 +11 -0
- data/ext/libmemcached-0.50/m4/pandora_visibility.m4 +75 -0
- data/ext/libmemcached-0.50/m4/pandora_warnings.m4 +447 -0
- data/ext/libmemcached-0.50/m4/pandora_with_gettext.m4 +44 -0
- data/ext/libmemcached-0.50/m4/pandora_with_lua.m4 +55 -0
- data/ext/libmemcached-0.50/m4/pandora_with_memcached.m4 +41 -0
- data/ext/libmemcached-0.50/m4/pandora_with_perl.m4 +81 -0
- data/ext/libmemcached-0.50/m4/pandora_with_php.m4 +56 -0
- data/ext/libmemcached-0.50/m4/pandora_with_python.m4 +37 -0
- data/ext/libmemcached-0.50/m4/pandora_with_python3.m4 +44 -0
- data/ext/libmemcached-0.50/m4/pandora_with_r.m4 +33 -0
- data/ext/libmemcached-0.50/m4/pandora_with_ruby.m4 +79 -0
- data/ext/libmemcached-0.50/m4/pandora_with_valgrind.m4 +17 -0
- data/ext/libmemcached-0.50/m4/pkg.m4 +157 -0
- data/ext/libmemcached-0.50/m4/po.m4 +449 -0
- data/ext/libmemcached-0.50/m4/progtest.m4 +92 -0
- data/ext/libmemcached-0.50/m4/protocol_binary.m4 +36 -0
- data/ext/libmemcached-0.50/m4/setsockopt.m4 +73 -0
- data/ext/libmemcached-0.50/m4/socket_send_flags.m4 +66 -0
- data/ext/libmemcached-0.50/poll/include.am +8 -0
- data/ext/libmemcached-0.50/poll/poll.c +77 -0
- data/ext/libmemcached-0.50/poll/poll.h +45 -0
- data/ext/libmemcached-0.50/support/include.am +11 -0
- data/ext/libmemcached-0.50/support/libmemcached-fc.spec.in +105 -0
- data/ext/libmemcached-0.50/support/libmemcached.pc.in +10 -0
- data/ext/libmemcached-0.50/support/libmemcached.spec.in +281 -0
- data/ext/libmemcached-0.50/support/set_benchmark.sh +5 -0
- data/ext/libmemcached-0.50/tests/atomsmasher.cc +295 -0
- data/ext/libmemcached-0.50/tests/basic.cc +134 -0
- data/ext/libmemcached-0.50/tests/basic.h +66 -0
- data/ext/libmemcached-0.50/tests/cpp_example.cc +195 -0
- data/ext/libmemcached-0.50/tests/deprecated.cc +72 -0
- data/ext/libmemcached-0.50/tests/deprecated.h +49 -0
- data/ext/libmemcached-0.50/tests/error_conditions.cc +63 -0
- data/ext/libmemcached-0.50/tests/error_conditions.h +48 -0
- data/ext/libmemcached-0.50/tests/hash_plus.cc +225 -0
- data/ext/libmemcached-0.50/tests/hash_results.h +127 -0
- data/ext/libmemcached-0.50/tests/hashkit_functions.cc +619 -0
- data/ext/libmemcached-0.50/tests/include.am +342 -0
- data/ext/libmemcached-0.50/tests/ketama_test_cases.h +121 -0
- data/ext/libmemcached-0.50/tests/ketama_test_cases_spy.h +118 -0
- data/ext/libmemcached-0.50/tests/libmemcached_world.h +205 -0
- data/ext/libmemcached-0.50/tests/mem_functions.cc +6648 -0
- data/ext/libmemcached-0.50/tests/mem_udp.cc +510 -0
- data/ext/libmemcached-0.50/tests/output_plus.res +5 -0
- data/ext/libmemcached-0.50/tests/parser.cc +599 -0
- data/ext/libmemcached-0.50/tests/parser.h +109 -0
- data/ext/libmemcached-0.50/tests/plus.cpp +240 -0
- data/ext/libmemcached-0.50/tests/pool.cc +78 -0
- data/ext/libmemcached-0.50/tests/pool.h +49 -0
- data/ext/libmemcached-0.50/tests/print.cc +58 -0
- data/ext/libmemcached-0.50/tests/print.h +51 -0
- data/ext/libmemcached-0.50/tests/replication.cc +333 -0
- data/ext/libmemcached-0.50/tests/replication.h +64 -0
- data/ext/libmemcached-0.50/tests/start.cc +29 -0
- data/ext/libmemcached-0.50/tests/string.cc +174 -0
- data/ext/libmemcached-0.50/tests/string.h +67 -0
- data/ext/libmemcached-0.50/tests/virtual_buckets.cc +143 -0
- data/ext/libmemcached-0.50/tests/virtual_buckets.h +51 -0
- data/ext/libmemcached-0.50/win32/include.am +11 -0
- data/ext/libmemcached-0.50/win32/wrappers.h +55 -0
- data/ext/rlibmemcached.i +263 -0
- data/ext/rlibmemcached_wrap.c +16732 -0
- data/lib/memcached.rb +32 -0
- data/lib/memcached/auth.rb +16 -0
- data/lib/memcached/behaviors.rb +77 -0
- data/lib/memcached/exceptions.rb +84 -0
- data/lib/memcached/experimental.rb +48 -0
- data/lib/memcached/memcached.rb +660 -0
- data/lib/memcached/rails.rb +133 -0
- data/test/profile/benchmark.rb +245 -0
- data/test/profile/c_profiler.rb +14 -0
- data/test/profile/exercise.rb +185 -0
- data/test/profile/rb_profiler.rb +21 -0
- data/test/profile/valgrind.rb +10 -0
- data/test/setup.rb +30 -0
- data/test/teardown.rb +0 -0
- data/test/test_helper.rb +19 -0
- data/test/unit/binding_test.rb +8 -0
- data/test/unit/memcached_experimental_test.rb +274 -0
- data/test/unit/memcached_test.rb +1293 -0
- data/test/unit/rails_test.rb +122 -0
- metadata +650 -0
- metadata.gz.sig +0 -0
@@ -0,0 +1,46 @@
|
|
1
|
+
/* uTest
|
2
|
+
* Copyright (C) 2011 Data Differential, http://datadifferential.com/
|
3
|
+
* Copyright (C) 2006-2009 Brian Aker
|
4
|
+
* All rights reserved.
|
5
|
+
*
|
6
|
+
* Use and distribution licensed under the BSD license. See
|
7
|
+
* the COPYING file in the parent directory for full text.
|
8
|
+
*/
|
9
|
+
|
10
|
+
/*
|
11
|
+
Structures for generic tests.
|
12
|
+
*/
|
13
|
+
|
14
|
+
#include <cstdio>
|
15
|
+
#include <cstdlib>
|
16
|
+
#include <stdint.h>
|
17
|
+
#include <arpa/inet.h>
|
18
|
+
|
19
|
+
#include <libtest/visibility.h>
|
20
|
+
|
21
|
+
#include <libtest/error.h>
|
22
|
+
#include <libtest/callbacks.h>
|
23
|
+
#include <libtest/test.h>
|
24
|
+
#include <libtest/strerror.h>
|
25
|
+
#include <libtest/core.h>
|
26
|
+
#include <libtest/runner.h>
|
27
|
+
#include <libtest/stats.h>
|
28
|
+
#include <libtest/collection.h>
|
29
|
+
#include <libtest/framework.h>
|
30
|
+
#include <libtest/get.h>
|
31
|
+
|
32
|
+
#pragma once
|
33
|
+
|
34
|
+
LIBTEST_API
|
35
|
+
in_port_t default_port();
|
36
|
+
|
37
|
+
LIBTEST_API
|
38
|
+
void set_default_port(in_port_t port);
|
39
|
+
|
40
|
+
#ifdef __cplusplus
|
41
|
+
#define test_literal_param(X) (X), (static_cast<size_t>((sizeof(X) - 1)))
|
42
|
+
#else
|
43
|
+
#define test_literal_param(X) (X), ((size_t)((sizeof(X) - 1)))
|
44
|
+
#endif
|
45
|
+
|
46
|
+
#define test_string_make_from_cstr(X) (X), ((X) ? strlen(X) : 0)
|
@@ -0,0 +1,69 @@
|
|
1
|
+
/* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
|
2
|
+
*
|
3
|
+
* Gearmand client and server library.
|
4
|
+
*
|
5
|
+
* Copyright (C) 2011 Data Differential, http://datadifferential.com/
|
6
|
+
* All rights reserved.
|
7
|
+
*
|
8
|
+
* Redistribution and use in source and binary forms, with or without
|
9
|
+
* modification, are permitted provided that the following conditions are
|
10
|
+
* met:
|
11
|
+
*
|
12
|
+
* * Redistributions of source code must retain the above copyright
|
13
|
+
* notice, this list of conditions and the following disclaimer.
|
14
|
+
*
|
15
|
+
* * Redistributions in binary form must reproduce the above
|
16
|
+
* copyright notice, this list of conditions and the following disclaimer
|
17
|
+
* in the documentation and/or other materials provided with the
|
18
|
+
* distribution.
|
19
|
+
*
|
20
|
+
* * The names of its contributors may not be used to endorse or
|
21
|
+
* promote products derived from this software without specific prior
|
22
|
+
* written permission.
|
23
|
+
*
|
24
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
25
|
+
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
26
|
+
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
27
|
+
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
28
|
+
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
29
|
+
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
30
|
+
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
31
|
+
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
32
|
+
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
33
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
34
|
+
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
35
|
+
*
|
36
|
+
*/
|
37
|
+
|
38
|
+
#pragma once
|
39
|
+
|
40
|
+
#if defined(BUILDING_LIBTEST)
|
41
|
+
# if defined(HAVE_VISIBILITY)
|
42
|
+
# define LIBTEST_API __attribute__ ((visibility("default")))
|
43
|
+
# define LIBTEST_INTERNAL_API __attribute__ ((visibility("hidden")))
|
44
|
+
# define LIBTEST_API_DEPRECATED __attribute__ ((deprecated,visibility("default")))
|
45
|
+
# define LIBTEST_LOCAL __attribute__ ((visibility("hidden")))
|
46
|
+
# elif defined (__SUNPRO_C) && (__SUNPRO_C >= 0x550)
|
47
|
+
# define LIBTEST_API __global
|
48
|
+
# define LIBTEST_INTERNAL_API __hidden
|
49
|
+
# define LIBTEST_API_DEPRECATED __global
|
50
|
+
# define LIBTEST_LOCAL __hidden
|
51
|
+
# elif defined(_MSC_VER)
|
52
|
+
# define LIBTEST_API extern __declspec(dllexport)
|
53
|
+
# define LIBTEST_INTERNAL_API extern __declspec(dllexport)
|
54
|
+
# define LIBTEST_DEPRECATED_API extern __declspec(dllexport)
|
55
|
+
# define LIBTEST_LOCAL
|
56
|
+
# endif /* defined(HAVE_VISIBILITY) */
|
57
|
+
#else /* defined(BUILDING_LIBTEST) */
|
58
|
+
# if defined(_MSC_VER)
|
59
|
+
# define LIBTEST_API extern __declspec(dllimport)
|
60
|
+
# define LIBTEST_INTERNAL_API extern __declspec(dllimport)
|
61
|
+
# define LIBTEST_API_DEPRECATED extern __declspec(dllimport)
|
62
|
+
# define LIBTEST_LOCAL
|
63
|
+
# else
|
64
|
+
# define LIBTEST_API
|
65
|
+
# define LIBTEST_INTERNAL_API
|
66
|
+
# define LIBTEST_API_DEPRECATED
|
67
|
+
# define LIBTEST_LOCAL
|
68
|
+
# endif /* defined(_MSC_VER) */
|
69
|
+
#endif /* defined(BUILDING_LIBTEST) */
|
@@ -0,0 +1,83 @@
|
|
1
|
+
# ===========================================================================
|
2
|
+
# http://autoconf-archive.cryp.to/ac_cxx_header_stdcxx_98.html
|
3
|
+
# ===========================================================================
|
4
|
+
#
|
5
|
+
# SYNOPSIS
|
6
|
+
#
|
7
|
+
# AC_CXX_HEADER_STDCXX_98
|
8
|
+
#
|
9
|
+
# DESCRIPTION
|
10
|
+
#
|
11
|
+
# Check for complete library coverage of the C++1998/2003 standard.
|
12
|
+
#
|
13
|
+
# LICENSE
|
14
|
+
#
|
15
|
+
# Copyright (c) 2008 Benjamin Kosnik <bkoz@redhat.com>
|
16
|
+
#
|
17
|
+
# Copying and distribution of this file, with or without modification, are
|
18
|
+
# permitted in any medium without royalty provided the copyright notice
|
19
|
+
# and this notice are preserved.
|
20
|
+
|
21
|
+
AC_DEFUN([AC_CXX_HEADER_STDCXX_98], [
|
22
|
+
AC_CACHE_CHECK(for ISO C++ 98 include files,
|
23
|
+
ac_cv_cxx_stdcxx_98,
|
24
|
+
[AC_LANG_SAVE
|
25
|
+
AC_LANG_CPLUSPLUS
|
26
|
+
AC_TRY_COMPILE([
|
27
|
+
#include <cassert>
|
28
|
+
#include <cctype>
|
29
|
+
#include <cerrno>
|
30
|
+
#include <cfloat>
|
31
|
+
#include <ciso646>
|
32
|
+
#include <climits>
|
33
|
+
#include <clocale>
|
34
|
+
#include <cmath>
|
35
|
+
#include <csetjmp>
|
36
|
+
#include <csignal>
|
37
|
+
#include <cstdarg>
|
38
|
+
#include <cstddef>
|
39
|
+
#include <cstdio>
|
40
|
+
#include <cstdlib>
|
41
|
+
#include <cstring>
|
42
|
+
#include <ctime>
|
43
|
+
|
44
|
+
#include <algorithm>
|
45
|
+
#include <bitset>
|
46
|
+
#include <complex>
|
47
|
+
#include <deque>
|
48
|
+
#include <exception>
|
49
|
+
#include <fstream>
|
50
|
+
#include <functional>
|
51
|
+
#include <iomanip>
|
52
|
+
#include <ios>
|
53
|
+
#include <iosfwd>
|
54
|
+
#include <iostream>
|
55
|
+
#include <istream>
|
56
|
+
#include <iterator>
|
57
|
+
#include <limits>
|
58
|
+
#include <list>
|
59
|
+
#include <locale>
|
60
|
+
#include <map>
|
61
|
+
#include <memory>
|
62
|
+
#include <new>
|
63
|
+
#include <numeric>
|
64
|
+
#include <ostream>
|
65
|
+
#include <queue>
|
66
|
+
#include <set>
|
67
|
+
#include <sstream>
|
68
|
+
#include <stack>
|
69
|
+
#include <stdexcept>
|
70
|
+
#include <streambuf>
|
71
|
+
#include <string>
|
72
|
+
#include <typeinfo>
|
73
|
+
#include <utility>
|
74
|
+
#include <valarray>
|
75
|
+
#include <vector>
|
76
|
+
],,
|
77
|
+
ac_cv_cxx_stdcxx_98=yes, ac_cv_cxx_stdcxx_98=no)
|
78
|
+
AC_LANG_RESTORE
|
79
|
+
])
|
80
|
+
if test "$ac_cv_cxx_stdcxx_98" = yes; then
|
81
|
+
AC_DEFINE(STDCXX_98_HEADERS,,[Define if ISO C++ 1998 header files are present. ])
|
82
|
+
fi
|
83
|
+
])
|
@@ -0,0 +1,271 @@
|
|
1
|
+
# ===========================================================================
|
2
|
+
# http://autoconf-archive.cryp.to/acx_pthread.html
|
3
|
+
# ===========================================================================
|
4
|
+
#
|
5
|
+
# SYNOPSIS
|
6
|
+
#
|
7
|
+
# ACX_PTHREAD([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]])
|
8
|
+
#
|
9
|
+
# DESCRIPTION
|
10
|
+
#
|
11
|
+
# This macro figures out how to build C programs using POSIX threads. It
|
12
|
+
# sets the PTHREAD_LIBS output variable to the threads library and linker
|
13
|
+
# flags, and the PTHREAD_CFLAGS output variable to any special C compiler
|
14
|
+
# flags that are needed. (The user can also force certain compiler
|
15
|
+
# flags/libs to be tested by setting these environment variables.)
|
16
|
+
#
|
17
|
+
# Also sets PTHREAD_CC to any special C compiler that is needed for
|
18
|
+
# multi-threaded programs (defaults to the value of CC otherwise). (This
|
19
|
+
# is necessary on AIX to use the special cc_r compiler alias.)
|
20
|
+
#
|
21
|
+
# NOTE: You are assumed to not only compile your program with these flags,
|
22
|
+
# but also link it with them as well. e.g. you should link with
|
23
|
+
# $PTHREAD_CC $CFLAGS $PTHREAD_CFLAGS $LDFLAGS ... $PTHREAD_LIBS $LIBS
|
24
|
+
#
|
25
|
+
# If you are only building threads programs, you may wish to use these
|
26
|
+
# variables in your default LIBS, CFLAGS, and CC:
|
27
|
+
#
|
28
|
+
# LIBS="$PTHREAD_LIBS $LIBS"
|
29
|
+
# CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
|
30
|
+
# CC="$PTHREAD_CC"
|
31
|
+
#
|
32
|
+
# In addition, if the PTHREAD_CREATE_JOINABLE thread-attribute constant
|
33
|
+
# has a nonstandard name, defines PTHREAD_CREATE_JOINABLE to that name
|
34
|
+
# (e.g. PTHREAD_CREATE_UNDETACHED on AIX).
|
35
|
+
#
|
36
|
+
# ACTION-IF-FOUND is a list of shell commands to run if a threads library
|
37
|
+
# is found, and ACTION-IF-NOT-FOUND is a list of commands to run it if it
|
38
|
+
# is not found. If ACTION-IF-FOUND is not specified, the default action
|
39
|
+
# will define HAVE_PTHREAD.
|
40
|
+
#
|
41
|
+
# Please let the authors know if this macro fails on any platform, or if
|
42
|
+
# you have any other suggestions or comments. This macro was based on work
|
43
|
+
# by SGJ on autoconf scripts for FFTW (http://www.fftw.org/) (with help
|
44
|
+
# from M. Frigo), as well as ac_pthread and hb_pthread macros posted by
|
45
|
+
# Alejandro Forero Cuervo to the autoconf macro repository. We are also
|
46
|
+
# grateful for the helpful feedback of numerous users.
|
47
|
+
#
|
48
|
+
# LICENSE
|
49
|
+
#
|
50
|
+
# Copyright (c) 2008 Steven G. Johnson <stevenj@alum.mit.edu>
|
51
|
+
#
|
52
|
+
# This program is free software: you can redistribute it and/or modify it
|
53
|
+
# under the terms of the GNU General Public License as published by the
|
54
|
+
# Free Software Foundation, either version 3 of the License, or (at your
|
55
|
+
# option) any later version.
|
56
|
+
#
|
57
|
+
# This program is distributed in the hope that it will be useful, but
|
58
|
+
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
59
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
60
|
+
# Public License for more details.
|
61
|
+
#
|
62
|
+
# You should have received a copy of the GNU General Public License along
|
63
|
+
# with this program. If not, see <http://www.gnu.org/licenses/>.
|
64
|
+
#
|
65
|
+
# As a special exception, the respective Autoconf Macro's copyright owner
|
66
|
+
# gives unlimited permission to copy, distribute and modify the configure
|
67
|
+
# scripts that are the output of Autoconf when processing the Macro. You
|
68
|
+
# need not follow the terms of the GNU General Public License when using
|
69
|
+
# or distributing such scripts, even though portions of the text of the
|
70
|
+
# Macro appear in them. The GNU General Public License (GPL) does govern
|
71
|
+
# all other use of the material that constitutes the Autoconf Macro.
|
72
|
+
#
|
73
|
+
# This special exception to the GPL applies to versions of the Autoconf
|
74
|
+
# Macro released by the Autoconf Archive. When you make and distribute a
|
75
|
+
# modified version of the Autoconf Macro, you may extend this special
|
76
|
+
# exception to the GPL to apply to your modified version as well.
|
77
|
+
|
78
|
+
AC_DEFUN([ACX_PTHREAD], [
|
79
|
+
AC_REQUIRE([AC_CANONICAL_HOST])
|
80
|
+
AC_LANG_SAVE
|
81
|
+
AC_LANG_C
|
82
|
+
acx_pthread_ok=no
|
83
|
+
|
84
|
+
# We used to check for pthread.h first, but this fails if pthread.h
|
85
|
+
# requires special compiler flags (e.g. on True64 or Sequent).
|
86
|
+
# It gets checked for in the link test anyway.
|
87
|
+
|
88
|
+
# First of all, check if the user has set any of the PTHREAD_LIBS,
|
89
|
+
# etcetera environment variables, and if threads linking works using
|
90
|
+
# them:
|
91
|
+
if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then
|
92
|
+
save_CFLAGS="$CFLAGS"
|
93
|
+
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
|
94
|
+
save_LIBS="$LIBS"
|
95
|
+
LIBS="$PTHREAD_LIBS $LIBS"
|
96
|
+
AC_MSG_CHECKING([for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS])
|
97
|
+
AC_TRY_LINK_FUNC(pthread_join, acx_pthread_ok=yes)
|
98
|
+
AC_MSG_RESULT($acx_pthread_ok)
|
99
|
+
if test x"$acx_pthread_ok" = xno; then
|
100
|
+
PTHREAD_LIBS=""
|
101
|
+
PTHREAD_CFLAGS=""
|
102
|
+
fi
|
103
|
+
LIBS="$save_LIBS"
|
104
|
+
CFLAGS="$save_CFLAGS"
|
105
|
+
fi
|
106
|
+
|
107
|
+
# We must check for the threads library under a number of different
|
108
|
+
# names; the ordering is very important because some systems
|
109
|
+
# (e.g. DEC) have both -lpthread and -lpthreads, where one of the
|
110
|
+
# libraries is broken (non-POSIX).
|
111
|
+
|
112
|
+
# Create a list of thread flags to try. Items starting with a "-" are
|
113
|
+
# C compiler flags, and other items are library names, except for "none"
|
114
|
+
# which indicates that we try without any flags at all, and "pthread-config"
|
115
|
+
# which is a program returning the flags for the Pth emulation library.
|
116
|
+
|
117
|
+
acx_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config"
|
118
|
+
|
119
|
+
# The ordering *is* (sometimes) important. Some notes on the
|
120
|
+
# individual items follow:
|
121
|
+
|
122
|
+
# pthreads: AIX (must check this before -lpthread)
|
123
|
+
# none: in case threads are in libc; should be tried before -Kthread and
|
124
|
+
# other compiler flags to prevent continual compiler warnings
|
125
|
+
# -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h)
|
126
|
+
# -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able)
|
127
|
+
# lthread: LinuxThreads port on FreeBSD (also preferred to -pthread)
|
128
|
+
# -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads)
|
129
|
+
# -pthreads: Solaris/gcc
|
130
|
+
# -mthreads: Mingw32/gcc, Lynx/gcc
|
131
|
+
# -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it
|
132
|
+
# doesn't hurt to check since this sometimes defines pthreads too;
|
133
|
+
# also defines -D_REENTRANT)
|
134
|
+
# ... -mt is also the pthreads flag for HP/aCC
|
135
|
+
# pthread: Linux, etcetera
|
136
|
+
# --thread-safe: KAI C++
|
137
|
+
# pthread-config: use pthread-config program (for GNU Pth library)
|
138
|
+
|
139
|
+
case "${host_cpu}-${host_os}" in
|
140
|
+
*solaris*)
|
141
|
+
|
142
|
+
# On Solaris (at least, for some versions), libc contains stubbed
|
143
|
+
# (non-functional) versions of the pthreads routines, so link-based
|
144
|
+
# tests will erroneously succeed. (We need to link with -pthreads/-mt/
|
145
|
+
# -lpthread.) (The stubs are missing pthread_cleanup_push, or rather
|
146
|
+
# a function called by this macro, so we could check for that, but
|
147
|
+
# who knows whether they'll stub that too in a future libc.) So,
|
148
|
+
# we'll just look for -pthreads and -lpthread first:
|
149
|
+
|
150
|
+
acx_pthread_flags="-pthreads pthread -mt -pthread $acx_pthread_flags"
|
151
|
+
;;
|
152
|
+
esac
|
153
|
+
|
154
|
+
if test x"$acx_pthread_ok" = xno; then
|
155
|
+
for flag in $acx_pthread_flags; do
|
156
|
+
|
157
|
+
case $flag in
|
158
|
+
none)
|
159
|
+
AC_MSG_CHECKING([whether pthreads work without any flags])
|
160
|
+
;;
|
161
|
+
|
162
|
+
-*)
|
163
|
+
AC_MSG_CHECKING([whether pthreads work with $flag])
|
164
|
+
PTHREAD_CFLAGS="$flag"
|
165
|
+
;;
|
166
|
+
|
167
|
+
pthread-config)
|
168
|
+
AC_CHECK_PROG(acx_pthread_config, pthread-config, yes, no)
|
169
|
+
if test x"$acx_pthread_config" = xno; then continue; fi
|
170
|
+
PTHREAD_CFLAGS="`pthread-config --cflags`"
|
171
|
+
PTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`"
|
172
|
+
;;
|
173
|
+
|
174
|
+
*)
|
175
|
+
AC_MSG_CHECKING([for the pthreads library -l$flag])
|
176
|
+
PTHREAD_LIBS="-l$flag"
|
177
|
+
;;
|
178
|
+
esac
|
179
|
+
|
180
|
+
save_LIBS="$LIBS"
|
181
|
+
save_CFLAGS="$CFLAGS"
|
182
|
+
LIBS="$PTHREAD_LIBS $LIBS"
|
183
|
+
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
|
184
|
+
|
185
|
+
# Check for various functions. We must include pthread.h,
|
186
|
+
# since some functions may be macros. (On the Sequent, we
|
187
|
+
# need a special flag -Kthread to make this header compile.)
|
188
|
+
# We check for pthread_join because it is in -lpthread on IRIX
|
189
|
+
# while pthread_create is in libc. We check for pthread_attr_init
|
190
|
+
# due to DEC craziness with -lpthreads. We check for
|
191
|
+
# pthread_cleanup_push because it is one of the few pthread
|
192
|
+
# functions on Solaris that doesn't have a non-functional libc stub.
|
193
|
+
# We try pthread_create on general principles.
|
194
|
+
AC_TRY_LINK([#include <pthread.h>],
|
195
|
+
[pthread_t th; pthread_join(th, 0);
|
196
|
+
pthread_attr_init(0); pthread_cleanup_push(0, 0);
|
197
|
+
pthread_create(0,0,0,0); pthread_cleanup_pop(0); ],
|
198
|
+
[acx_pthread_ok=yes])
|
199
|
+
|
200
|
+
LIBS="$save_LIBS"
|
201
|
+
CFLAGS="$save_CFLAGS"
|
202
|
+
|
203
|
+
AC_MSG_RESULT($acx_pthread_ok)
|
204
|
+
if test "x$acx_pthread_ok" = xyes; then
|
205
|
+
break;
|
206
|
+
fi
|
207
|
+
|
208
|
+
PTHREAD_LIBS=""
|
209
|
+
PTHREAD_CFLAGS=""
|
210
|
+
done
|
211
|
+
fi
|
212
|
+
|
213
|
+
# Various other checks:
|
214
|
+
if test "x$acx_pthread_ok" = xyes; then
|
215
|
+
save_LIBS="$LIBS"
|
216
|
+
LIBS="$PTHREAD_LIBS $LIBS"
|
217
|
+
save_CFLAGS="$CFLAGS"
|
218
|
+
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
|
219
|
+
|
220
|
+
# Detect AIX lossage: JOINABLE attribute is called UNDETACHED.
|
221
|
+
AC_MSG_CHECKING([for joinable pthread attribute])
|
222
|
+
attr_name=unknown
|
223
|
+
for attr in PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_UNDETACHED; do
|
224
|
+
AC_TRY_LINK([#include <pthread.h>], [int attr=$attr; return attr;],
|
225
|
+
[attr_name=$attr; break])
|
226
|
+
done
|
227
|
+
AC_MSG_RESULT($attr_name)
|
228
|
+
if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then
|
229
|
+
AC_DEFINE_UNQUOTED(PTHREAD_CREATE_JOINABLE, $attr_name,
|
230
|
+
[Define to necessary symbol if this constant
|
231
|
+
uses a non-standard name on your system.])
|
232
|
+
fi
|
233
|
+
|
234
|
+
AC_MSG_CHECKING([if more special flags are required for pthreads])
|
235
|
+
flag=no
|
236
|
+
case "${host_cpu}-${host_os}" in
|
237
|
+
*-aix* | *-freebsd* | *-darwin*) flag="-D_THREAD_SAFE";;
|
238
|
+
*solaris* | *-osf* | *-hpux*) flag="-D_REENTRANT";;
|
239
|
+
esac
|
240
|
+
AC_MSG_RESULT(${flag})
|
241
|
+
if test "x$flag" != xno; then
|
242
|
+
PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS"
|
243
|
+
fi
|
244
|
+
|
245
|
+
LIBS="$save_LIBS"
|
246
|
+
CFLAGS="$save_CFLAGS"
|
247
|
+
|
248
|
+
# More AIX lossage: must compile with xlc_r or cc_r
|
249
|
+
if test x"$GCC" != xyes; then
|
250
|
+
AC_CHECK_PROGS(PTHREAD_CC, xlc_r cc_r, ${CC})
|
251
|
+
else
|
252
|
+
PTHREAD_CC=$CC
|
253
|
+
fi
|
254
|
+
else
|
255
|
+
PTHREAD_CC="$CC"
|
256
|
+
fi
|
257
|
+
|
258
|
+
AC_SUBST(PTHREAD_LIBS)
|
259
|
+
AC_SUBST(PTHREAD_CFLAGS)
|
260
|
+
AC_SUBST(PTHREAD_CC)
|
261
|
+
|
262
|
+
# Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND:
|
263
|
+
if test x"$acx_pthread_ok" = xyes; then
|
264
|
+
ifelse([$1],,AC_DEFINE(HAVE_PTHREAD,1,[Define if you have POSIX threads libraries and header files.]),[$1])
|
265
|
+
:
|
266
|
+
else
|
267
|
+
acx_pthread_ok=no
|
268
|
+
$2
|
269
|
+
fi
|
270
|
+
AC_LANG_RESTORE
|
271
|
+
])dnl ACX_PTHREAD
|