nutcracker 0.2.4.10mac → 0.2.4.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (290) hide show
  1. data/ext/nutcracker/ChangeLog +0 -0
  2. data/ext/nutcracker/LICENSE +0 -0
  3. data/ext/nutcracker/Makefile.am +0 -0
  4. data/ext/nutcracker/Makefile.in +190 -82
  5. data/ext/nutcracker/NOTICE +0 -0
  6. data/ext/nutcracker/README.md +0 -0
  7. data/ext/nutcracker/aclocal.m4 +231 -122
  8. data/ext/nutcracker/conf/nutcracker.leaf.yml +0 -0
  9. data/ext/nutcracker/conf/nutcracker.root.yml +0 -0
  10. data/ext/nutcracker/conf/nutcracker.yml +0 -0
  11. data/ext/nutcracker/config/config.guess +278 -248
  12. data/ext/nutcracker/config/config.sub +234 -77
  13. data/ext/nutcracker/config/depcomp +143 -39
  14. data/ext/nutcracker/config/install-sh +136 -116
  15. data/ext/nutcracker/config/ltmain.sh +1704 -788
  16. data/ext/nutcracker/config/missing +29 -65
  17. data/ext/nutcracker/config.h.in +0 -15
  18. data/ext/nutcracker/configure +1998 -1052
  19. data/ext/nutcracker/configure.ac +2 -34
  20. data/ext/nutcracker/contrib/Makefile.am +0 -0
  21. data/ext/nutcracker/contrib/Makefile.in +120 -47
  22. data/ext/nutcracker/contrib/yaml-0.1.4.tar.gz +0 -0
  23. data/ext/nutcracker/extconf.rb +5 -0
  24. data/ext/nutcracker/m4/libtool.m4 +960 -396
  25. data/ext/nutcracker/m4/ltoptions.m4 +17 -2
  26. data/ext/nutcracker/m4/ltversion.m4 +6 -6
  27. data/ext/nutcracker/notes/c-styleguide.txt +0 -0
  28. data/ext/nutcracker/notes/debug.txt +0 -0
  29. data/ext/nutcracker/notes/memcache.txt +0 -0
  30. data/ext/nutcracker/notes/recommendation.md +0 -0
  31. data/ext/nutcracker/notes/redis.md +0 -0
  32. data/ext/nutcracker/notes/socket.txt +0 -0
  33. data/ext/nutcracker/scripts/nutcracker.init +0 -0
  34. data/ext/nutcracker/scripts/nutcracker.spec +0 -0
  35. data/ext/nutcracker/scripts/redis-check.py +0 -0
  36. data/ext/nutcracker/src/Makefile.am +1 -1
  37. data/ext/nutcracker/src/Makefile.in +167 -81
  38. data/ext/nutcracker/src/hashkit/Makefile.am +0 -0
  39. data/ext/nutcracker/src/hashkit/Makefile.in +72 -37
  40. data/ext/nutcracker/src/hashkit/nc_crc16.c +0 -0
  41. data/ext/nutcracker/src/hashkit/nc_crc32.c +0 -0
  42. data/ext/nutcracker/src/hashkit/nc_fnv.c +0 -0
  43. data/ext/nutcracker/src/hashkit/nc_hashkit.h +0 -0
  44. data/ext/nutcracker/src/hashkit/nc_hsieh.c +0 -0
  45. data/ext/nutcracker/src/hashkit/nc_jenkins.c +0 -0
  46. data/ext/nutcracker/src/hashkit/nc_ketama.c +0 -0
  47. data/ext/nutcracker/src/hashkit/nc_md5.c +0 -0
  48. data/ext/nutcracker/src/hashkit/nc_modula.c +0 -0
  49. data/ext/nutcracker/src/hashkit/nc_murmur.c +0 -0
  50. data/ext/nutcracker/src/hashkit/nc_one_at_a_time.c +0 -0
  51. data/ext/nutcracker/src/hashkit/nc_random.c +0 -0
  52. data/ext/nutcracker/src/nc.c +0 -0
  53. data/ext/nutcracker/src/nc_array.c +0 -0
  54. data/ext/nutcracker/src/nc_array.h +0 -0
  55. data/ext/nutcracker/src/nc_client.c +0 -0
  56. data/ext/nutcracker/src/nc_client.h +0 -0
  57. data/ext/nutcracker/src/nc_conf.c +0 -0
  58. data/ext/nutcracker/src/nc_conf.h +0 -0
  59. data/ext/nutcracker/src/nc_connection.c +0 -0
  60. data/ext/nutcracker/src/nc_connection.h +0 -0
  61. data/ext/nutcracker/src/nc_core.c +26 -29
  62. data/ext/nutcracker/src/nc_core.h +5 -13
  63. data/ext/nutcracker/src/{nc_epoll.c → nc_event.c} +30 -94
  64. data/ext/nutcracker/src/nc_event.h +13 -33
  65. data/ext/nutcracker/src/nc_log.c +0 -0
  66. data/ext/nutcracker/src/nc_log.h +0 -0
  67. data/ext/nutcracker/src/nc_mbuf.c +0 -0
  68. data/ext/nutcracker/src/nc_mbuf.h +0 -0
  69. data/ext/nutcracker/src/nc_message.c +0 -0
  70. data/ext/nutcracker/src/nc_message.h +0 -0
  71. data/ext/nutcracker/src/nc_proxy.c +8 -8
  72. data/ext/nutcracker/src/nc_proxy.h +0 -0
  73. data/ext/nutcracker/src/nc_queue.h +0 -0
  74. data/ext/nutcracker/src/nc_rbtree.c +0 -0
  75. data/ext/nutcracker/src/nc_rbtree.h +0 -0
  76. data/ext/nutcracker/src/nc_request.c +3 -3
  77. data/ext/nutcracker/src/nc_response.c +6 -4
  78. data/ext/nutcracker/src/nc_server.c +5 -5
  79. data/ext/nutcracker/src/nc_server.h +0 -0
  80. data/ext/nutcracker/src/nc_signal.c +0 -0
  81. data/ext/nutcracker/src/nc_signal.h +0 -0
  82. data/ext/nutcracker/src/nc_stats.c +21 -16
  83. data/ext/nutcracker/src/nc_stats.h +4 -3
  84. data/ext/nutcracker/src/nc_string.c +0 -0
  85. data/ext/nutcracker/src/nc_string.h +0 -0
  86. data/ext/nutcracker/src/nc_util.c +0 -16
  87. data/ext/nutcracker/src/nc_util.h +0 -1
  88. data/ext/nutcracker/src/proto/Makefile.am +0 -0
  89. data/ext/nutcracker/src/proto/Makefile.in +72 -37
  90. data/ext/nutcracker/src/proto/nc_memcache.c +0 -0
  91. data/ext/nutcracker/src/proto/nc_proto.h +0 -0
  92. data/ext/nutcracker/src/proto/nc_redis.c +0 -0
  93. data/lib/nutcracker/version.rb +1 -1
  94. metadata +8 -201
  95. data/ext/nutcracker/Makefile +0 -643
  96. data/ext/nutcracker/autom4te.cache/output.0 +0 -18664
  97. data/ext/nutcracker/autom4te.cache/output.1 +0 -18664
  98. data/ext/nutcracker/autom4te.cache/output.2 +0 -18664
  99. data/ext/nutcracker/autom4te.cache/requests +0 -494
  100. data/ext/nutcracker/autom4te.cache/traces.0 +0 -2415
  101. data/ext/nutcracker/autom4te.cache/traces.1 +0 -945
  102. data/ext/nutcracker/autom4te.cache/traces.2 +0 -2415
  103. data/ext/nutcracker/config.h +0 -332
  104. data/ext/nutcracker/config.log +0 -2684
  105. data/ext/nutcracker/config.status +0 -2317
  106. data/ext/nutcracker/contrib/Makefile +0 -494
  107. data/ext/nutcracker/contrib/yaml-0.1.4/Makefile +0 -736
  108. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.0 +0 -13102
  109. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.1 +0 -13085
  110. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.2 +0 -13085
  111. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/requests +0 -476
  112. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.0 +0 -2339
  113. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.1 +0 -545
  114. data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.2 +0 -2339
  115. data/ext/nutcracker/contrib/yaml-0.1.4/config.h +0 -81
  116. data/ext/nutcracker/contrib/yaml-0.1.4/config.h.in~ +0 -80
  117. data/ext/nutcracker/contrib/yaml-0.1.4/config.log +0 -688
  118. data/ext/nutcracker/contrib/yaml-0.1.4/config.status +0 -2032
  119. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/annotated.html +0 -51
  120. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/bc_s.png +0 -0
  121. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/classes.html +0 -41
  122. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/closed.png +0 -0
  123. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/doxygen.css +0 -656
  124. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/doxygen.png +0 -0
  125. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/files.html +0 -40
  126. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions.html +0 -91
  127. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x62.html +0 -84
  128. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x63.html +0 -87
  129. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x64.html +0 -83
  130. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x65.html +0 -110
  131. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x66.html +0 -79
  132. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x68.html +0 -80
  133. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x69.html +0 -92
  134. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6b.html +0 -71
  135. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6c.html +0 -88
  136. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6d.html +0 -96
  137. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6e.html +0 -71
  138. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x6f.html +0 -80
  139. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x70.html +0 -100
  140. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x71.html +0 -71
  141. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x72.html +0 -87
  142. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x73.html +0 -163
  143. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x74.html +0 -115
  144. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x75.html +0 -71
  145. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x76.html +0 -80
  146. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_0x77.html +0 -77
  147. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars.html +0 -91
  148. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x62.html +0 -84
  149. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x63.html +0 -87
  150. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x64.html +0 -83
  151. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x65.html +0 -110
  152. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x66.html +0 -79
  153. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x68.html +0 -80
  154. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x69.html +0 -92
  155. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6b.html +0 -71
  156. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6c.html +0 -88
  157. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6d.html +0 -96
  158. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6e.html +0 -71
  159. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x6f.html +0 -80
  160. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x70.html +0 -100
  161. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x71.html +0 -71
  162. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x72.html +0 -87
  163. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x73.html +0 -163
  164. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x74.html +0 -115
  165. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x75.html +0 -71
  166. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x76.html +0 -80
  167. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/functions_vars_0x77.html +0 -77
  168. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals.html +0 -667
  169. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_defs.html +0 -81
  170. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_enum.html +0 -78
  171. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_eval.html +0 -373
  172. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_func.html +0 -196
  173. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/globals_type.html +0 -126
  174. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__basic.html +0 -320
  175. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__emitter.html +0 -819
  176. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__events.html +0 -664
  177. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__export.html +0 -60
  178. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__nodes.html +0 -795
  179. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__parser.html +0 -606
  180. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__styles.html +0 -222
  181. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__tokens.html +0 -246
  182. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/group__version.html +0 -106
  183. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/index.html +0 -31
  184. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/modules.html +0 -42
  185. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/nav_f.png +0 -0
  186. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/nav_h.png +0 -0
  187. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/open.png +0 -0
  188. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__alias__data__s.html +0 -108
  189. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__document__s.html +0 -235
  190. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__emitter__s.html +0 -1300
  191. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__event__s.html +0 -496
  192. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__mark__s.html +0 -108
  193. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__node__pair__s.html +0 -91
  194. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__node__s.html +0 -420
  195. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__parser__s.html +0 -1229
  196. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__simple__key__s.html +0 -97
  197. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__tag__directive__s.html +0 -91
  198. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__token__s.html +0 -413
  199. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/structyaml__version__directive__s.html +0 -91
  200. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tab_a.png +0 -0
  201. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tab_b.png +0 -0
  202. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tab_h.png +0 -0
  203. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tab_s.png +0 -0
  204. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/tabs.css +0 -59
  205. data/ext/nutcracker/contrib/yaml-0.1.4/doc/html/yaml_8h.html +0 -525
  206. data/ext/nutcracker/contrib/yaml-0.1.4/include/Makefile.am +0 -17
  207. data/ext/nutcracker/contrib/yaml-0.1.4/include/Makefile.in +0 -470
  208. data/ext/nutcracker/contrib/yaml-0.1.4/libtool +0 -8890
  209. data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile +0 -484
  210. data/ext/nutcracker/contrib/yaml-0.1.4/src/api.lo +0 -12
  211. data/ext/nutcracker/contrib/yaml-0.1.4/src/api.o +0 -0
  212. data/ext/nutcracker/contrib/yaml-0.1.4/src/dumper.lo +0 -12
  213. data/ext/nutcracker/contrib/yaml-0.1.4/src/dumper.o +0 -0
  214. data/ext/nutcracker/contrib/yaml-0.1.4/src/emitter.lo +0 -12
  215. data/ext/nutcracker/contrib/yaml-0.1.4/src/emitter.o +0 -0
  216. data/ext/nutcracker/contrib/yaml-0.1.4/src/libyaml.la +0 -41
  217. data/ext/nutcracker/contrib/yaml-0.1.4/src/loader.lo +0 -12
  218. data/ext/nutcracker/contrib/yaml-0.1.4/src/loader.o +0 -0
  219. data/ext/nutcracker/contrib/yaml-0.1.4/src/parser.lo +0 -12
  220. data/ext/nutcracker/contrib/yaml-0.1.4/src/parser.o +0 -0
  221. data/ext/nutcracker/contrib/yaml-0.1.4/src/reader.lo +0 -12
  222. data/ext/nutcracker/contrib/yaml-0.1.4/src/reader.o +0 -0
  223. data/ext/nutcracker/contrib/yaml-0.1.4/src/scanner.lo +0 -12
  224. data/ext/nutcracker/contrib/yaml-0.1.4/src/scanner.o +0 -0
  225. data/ext/nutcracker/contrib/yaml-0.1.4/src/writer.lo +0 -12
  226. data/ext/nutcracker/contrib/yaml-0.1.4/src/writer.o +0 -0
  227. data/ext/nutcracker/contrib/yaml-0.1.4/stamp-h1 +0 -1
  228. data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile +0 -675
  229. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor +0 -0
  230. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor-alt +0 -0
  231. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor-alt.o +0 -0
  232. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor.o +0 -0
  233. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter +0 -0
  234. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter-alt +0 -0
  235. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter-alt.o +0 -0
  236. data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter.o +0 -0
  237. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-dumper +0 -0
  238. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-dumper.o +0 -0
  239. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-emitter +0 -0
  240. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-emitter.o +0 -0
  241. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-loader +0 -0
  242. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-loader.o +0 -0
  243. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-parser +0 -0
  244. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-parser.o +0 -0
  245. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-scanner +0 -0
  246. data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-scanner.o +0 -0
  247. data/ext/nutcracker/contrib/yaml-0.1.4/yaml-0.1.pc +0 -10
  248. data/ext/nutcracker/contrib/yaml-0.1.4/yaml-0.1.pc.in +0 -10
  249. data/ext/nutcracker/libtool +0 -9403
  250. data/ext/nutcracker/src/Makefile +0 -647
  251. data/ext/nutcracker/src/hashkit/Makefile +0 -476
  252. data/ext/nutcracker/src/hashkit/libhashkit.a +0 -0
  253. data/ext/nutcracker/src/hashkit/nc_crc16.o +0 -0
  254. data/ext/nutcracker/src/hashkit/nc_crc32.o +0 -0
  255. data/ext/nutcracker/src/hashkit/nc_fnv.o +0 -0
  256. data/ext/nutcracker/src/hashkit/nc_hsieh.o +0 -0
  257. data/ext/nutcracker/src/hashkit/nc_jenkins.o +0 -0
  258. data/ext/nutcracker/src/hashkit/nc_ketama.o +0 -0
  259. data/ext/nutcracker/src/hashkit/nc_md5.o +0 -0
  260. data/ext/nutcracker/src/hashkit/nc_modula.o +0 -0
  261. data/ext/nutcracker/src/hashkit/nc_murmur.o +0 -0
  262. data/ext/nutcracker/src/hashkit/nc_one_at_a_time.o +0 -0
  263. data/ext/nutcracker/src/hashkit/nc_random.o +0 -0
  264. data/ext/nutcracker/src/nc.o +0 -0
  265. data/ext/nutcracker/src/nc_array.o +0 -0
  266. data/ext/nutcracker/src/nc_client.o +0 -0
  267. data/ext/nutcracker/src/nc_conf.o +0 -0
  268. data/ext/nutcracker/src/nc_connection.o +0 -0
  269. data/ext/nutcracker/src/nc_core.o +0 -0
  270. data/ext/nutcracker/src/nc_epoll.o +0 -0
  271. data/ext/nutcracker/src/nc_kqueue.c +0 -296
  272. data/ext/nutcracker/src/nc_kqueue.o +0 -0
  273. data/ext/nutcracker/src/nc_log.o +0 -0
  274. data/ext/nutcracker/src/nc_mbuf.o +0 -0
  275. data/ext/nutcracker/src/nc_message.o +0 -0
  276. data/ext/nutcracker/src/nc_proxy.o +0 -0
  277. data/ext/nutcracker/src/nc_rbtree.o +0 -0
  278. data/ext/nutcracker/src/nc_request.o +0 -0
  279. data/ext/nutcracker/src/nc_response.o +0 -0
  280. data/ext/nutcracker/src/nc_server.o +0 -0
  281. data/ext/nutcracker/src/nc_signal.o +0 -0
  282. data/ext/nutcracker/src/nc_stats.o +0 -0
  283. data/ext/nutcracker/src/nc_string.o +0 -0
  284. data/ext/nutcracker/src/nc_util.o +0 -0
  285. data/ext/nutcracker/src/nutcracker +0 -0
  286. data/ext/nutcracker/src/proto/Makefile +0 -454
  287. data/ext/nutcracker/src/proto/libproto.a +0 -0
  288. data/ext/nutcracker/src/proto/nc_memcache.o +0 -0
  289. data/ext/nutcracker/src/proto/nc_redis.o +0 -0
  290. data/ext/nutcracker/stamp-h1 +0 -1
@@ -1,332 +0,0 @@
1
- /* config.h. Generated from config.h.in by configure. */
2
- /* config.h.in. Generated from configure.ac by autoheader. */
3
-
4
- /* Define to 1 if you have the <arpa/inet.h> header file. */
5
- #define HAVE_ARPA_INET_H 1
6
-
7
- /* Define to 1 if log on an assert is enabled */
8
- /* #undef HAVE_ASSERT_LOG */
9
-
10
- /* Define to 1 if panic on an assert is enabled */
11
- /* #undef HAVE_ASSERT_PANIC */
12
-
13
- /* Define to 1 if backtrace is supported */
14
- #define HAVE_BACKTRACE 1
15
-
16
- /* Define to 1 if debug log is enabled */
17
- /* #undef HAVE_DEBUG_LOG */
18
-
19
- /* Define to 1 if you have the <dlfcn.h> header file. */
20
- #define HAVE_DLFCN_H 1
21
-
22
- /* Define to 1 if you have the `dup2' function. */
23
- #define HAVE_DUP2 1
24
-
25
- /* Define to 1 if epoll is supported */
26
- /* #undef HAVE_EPOLL */
27
-
28
- /* Define to 1 if you have the <execinfo.h> header file. */
29
- #define HAVE_EXECINFO_H 1
30
-
31
- /* Define to 1 if you have the <fcntl.h> header file. */
32
- #define HAVE_FCNTL_H 1
33
-
34
- /* Define to 1 if you have the <float.h> header file. */
35
- #define HAVE_FLOAT_H 1
36
-
37
- /* Define to 1 if you have the `fork' function. */
38
- #define HAVE_FORK 1
39
-
40
- /* Define to 1 if you have the `gethostname' function. */
41
- #define HAVE_GETHOSTNAME 1
42
-
43
- /* Define to 1 if you have the `gettimeofday' function. */
44
- #define HAVE_GETTIMEOFDAY 1
45
-
46
- /* Define to 1 if the system has the type `intmax_t'. */
47
- #define HAVE_INTMAX_T 1
48
-
49
- /* Define to 1 if the system has the type `intptr_t'. */
50
- #define HAVE_INTPTR_T 1
51
-
52
- /* Define to 1 if you have the <inttypes.h> header file. */
53
- #define HAVE_INTTYPES_H 1
54
-
55
- /* Define to 1 if kqueue is supported */
56
- #define HAVE_KQUEUE 1
57
-
58
- /* Define to 1 if you have the `m' library (-lm). */
59
- #define HAVE_LIBM 1
60
-
61
- /* Define to 1 if you have the `pthread' library (-lpthread). */
62
- #define HAVE_LIBPTHREAD 1
63
-
64
- /* Define to 1 if you have the <limits.h> header file. */
65
- #define HAVE_LIMITS_H 1
66
-
67
- /* Define to 1 if machine is little endian */
68
- #define HAVE_LITTLE_ENDIAN 1
69
-
70
- /* Define to 1 if the system has the type `long long int'. */
71
- #define HAVE_LONG_LONG_INT 1
72
-
73
- /* Define to 1 if your system has a GNU libc compatible `malloc' function, and
74
- to 0 otherwise. */
75
- #define HAVE_MALLOC 1
76
-
77
- /* Define to 1 if you have the `memchr' function. */
78
- #define HAVE_MEMCHR 1
79
-
80
- /* Define to 1 if you have the `memmove' function. */
81
- #define HAVE_MEMMOVE 1
82
-
83
- /* Define to 1 if you have the <memory.h> header file. */
84
- #define HAVE_MEMORY_H 1
85
-
86
- /* Define to 1 if you have the `memset' function. */
87
- #define HAVE_MEMSET 1
88
-
89
- /* Define to 1 if you have the <netdb.h> header file. */
90
- #define HAVE_NETDB_H 1
91
-
92
- /* Define to 1 if you have the <netinet/in.h> header file. */
93
- #define HAVE_NETINET_IN_H 1
94
-
95
- /* Define to 1 if your system has a GNU libc compatible `realloc' function,
96
- and to 0 otherwise. */
97
- #define HAVE_REALLOC 1
98
-
99
- /* Define to 1 if you have the `socket' function. */
100
- #define HAVE_SOCKET 1
101
-
102
- /* Define to 1 if stats is not disabled */
103
- #define HAVE_STATS 1
104
-
105
- /* Define to 1 if stdbool.h conforms to C99. */
106
- #define HAVE_STDBOOL_H 1
107
-
108
- /* Define to 1 if you have the <stddef.h> header file. */
109
- #define HAVE_STDDEF_H 1
110
-
111
- /* Define to 1 if you have the <stdint.h> header file. */
112
- #define HAVE_STDINT_H 1
113
-
114
- /* Define to 1 if you have the <stdlib.h> header file. */
115
- #define HAVE_STDLIB_H 1
116
-
117
- /* Define to 1 if you have the `strchr' function. */
118
- #define HAVE_STRCHR 1
119
-
120
- /* Define to 1 if you have the `strerror' function. */
121
- #define HAVE_STRERROR 1
122
-
123
- /* Define to 1 if you have the <strings.h> header file. */
124
- #define HAVE_STRINGS_H 1
125
-
126
- /* Define to 1 if you have the <string.h> header file. */
127
- #define HAVE_STRING_H 1
128
-
129
- /* Define to 1 if you have the `strndup' function. */
130
- #define HAVE_STRNDUP 1
131
-
132
- /* Define to 1 if you have the `strtoul' function. */
133
- #define HAVE_STRTOUL 1
134
-
135
- /* Define to 1 if you have the <sys/epoll.h> header file. */
136
- /* #undef HAVE_SYS_EPOLL_H */
137
-
138
- /* Define to 1 if you have the <sys/event.h> header file. */
139
- #define HAVE_SYS_EVENT_H 1
140
-
141
- /* Define to 1 if you have the <sys/ioctl.h> header file. */
142
- #define HAVE_SYS_IOCTL_H 1
143
-
144
- /* Define to 1 if you have the <sys/socket.h> header file. */
145
- #define HAVE_SYS_SOCKET_H 1
146
-
147
- /* Define to 1 if you have the <sys/stat.h> header file. */
148
- #define HAVE_SYS_STAT_H 1
149
-
150
- /* Define to 1 if you have the <sys/time.h> header file. */
151
- #define HAVE_SYS_TIME_H 1
152
-
153
- /* Define to 1 if you have the <sys/types.h> header file. */
154
- #define HAVE_SYS_TYPES_H 1
155
-
156
- /* Define to 1 if you have the <sys/uio.h> header file. */
157
- #define HAVE_SYS_UIO_H 1
158
-
159
- /* Define to 1 if you have the <sys/un.h> header file. */
160
- #define HAVE_SYS_UN_H 1
161
-
162
- /* Define to 1 if the system has the type `uintmax_t'. */
163
- #define HAVE_UINTMAX_T 1
164
-
165
- /* Define to 1 if the system has the type `uintptr_t'. */
166
- #define HAVE_UINTPTR_T 1
167
-
168
- /* Define to 1 if you have the <unistd.h> header file. */
169
- #define HAVE_UNISTD_H 1
170
-
171
- /* Define to 1 if the system has the type `unsigned long long int'. */
172
- #define HAVE_UNSIGNED_LONG_LONG_INT 1
173
-
174
- /* Define to 1 if you have the `vfork' function. */
175
- #define HAVE_VFORK 1
176
-
177
- /* Define to 1 if you have the <vfork.h> header file. */
178
- /* #undef HAVE_VFORK_H */
179
-
180
- /* Define to 1 if `fork' works. */
181
- #define HAVE_WORKING_FORK 1
182
-
183
- /* Define to 1 if `vfork' works. */
184
- #define HAVE_WORKING_VFORK 1
185
-
186
- /* Define to 1 if the system has the type `_Bool'. */
187
- #define HAVE__BOOL 1
188
-
189
- /* Define to the sub-directory in which libtool stores uninstalled libraries.
190
- */
191
- #define LT_OBJDIR ".libs/"
192
-
193
- /* Define the major version number */
194
- #define NC_VERSION_MAJOR 0
195
-
196
- /* Define the minor version number */
197
- #define NC_VERSION_MINOR 2
198
-
199
- /* Define the patch version number */
200
- #define NC_VERSION_PATCH 4
201
-
202
- /* Define the version string */
203
- #define NC_VERSION_STRING "0.2.4"
204
-
205
- /* Name of package */
206
- #define PACKAGE "nutcracker"
207
-
208
- /* Define to the address where bug reports for this package should be sent. */
209
- #define PACKAGE_BUGREPORT "manj@twitter.com"
210
-
211
- /* Define to the full name of this package. */
212
- #define PACKAGE_NAME "nutcracker"
213
-
214
- /* Define to the full name and version of this package. */
215
- #define PACKAGE_STRING "nutcracker 0.2.4"
216
-
217
- /* Define to the one symbol short name of this package. */
218
- #define PACKAGE_TARNAME "nutcracker"
219
-
220
- /* Define to the home page for this package. */
221
- #define PACKAGE_URL ""
222
-
223
- /* Define to the version of this package. */
224
- #define PACKAGE_VERSION "0.2.4"
225
-
226
- /* Define to 1 if you have the ANSI C header files. */
227
- #define STDC_HEADERS 1
228
-
229
- /* Version number of package */
230
- #define VERSION "0.2.4"
231
-
232
- /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
233
- significant byte first (like Motorola and SPARC, unlike Intel). */
234
- #if defined AC_APPLE_UNIVERSAL_BUILD
235
- # if defined __BIG_ENDIAN__
236
- # define WORDS_BIGENDIAN 1
237
- # endif
238
- #else
239
- # ifndef WORDS_BIGENDIAN
240
- /* # undef WORDS_BIGENDIAN */
241
- # endif
242
- #endif
243
-
244
- /* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
245
- <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
246
- #define below would cause a syntax error. */
247
- /* #undef _UINT32_T */
248
-
249
- /* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>,
250
- <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
251
- #define below would cause a syntax error. */
252
- /* #undef _UINT64_T */
253
-
254
- /* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
255
- <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
256
- #define below would cause a syntax error. */
257
- /* #undef _UINT8_T */
258
-
259
- /* Define to `__inline__' or `__inline' if that's what the C compiler
260
- calls it, or to nothing if 'inline' is not supported under any name. */
261
- #ifndef __cplusplus
262
- /* #undef inline */
263
- #endif
264
-
265
- /* Define to the type of a signed integer type of width exactly 16 bits if
266
- such a type exists and the standard includes do not define it. */
267
- /* #undef int16_t */
268
-
269
- /* Define to the type of a signed integer type of width exactly 32 bits if
270
- such a type exists and the standard includes do not define it. */
271
- /* #undef int32_t */
272
-
273
- /* Define to the type of a signed integer type of width exactly 64 bits if
274
- such a type exists and the standard includes do not define it. */
275
- /* #undef int64_t */
276
-
277
- /* Define to the type of a signed integer type of width exactly 8 bits if such
278
- a type exists and the standard includes do not define it. */
279
- /* #undef int8_t */
280
-
281
- /* Define to the widest signed integer type if <stdint.h> and <inttypes.h> do
282
- not define. */
283
- /* #undef intmax_t */
284
-
285
- /* Define to the type of a signed integer type wide enough to hold a pointer,
286
- if such a type exists, and if the system does not define it. */
287
- /* #undef intptr_t */
288
-
289
- /* Define to rpl_malloc if the replacement function should be used. */
290
- /* #undef malloc */
291
-
292
- /* Define to `long int' if <sys/types.h> does not define. */
293
- /* #undef off_t */
294
-
295
- /* Define to `int' if <sys/types.h> does not define. */
296
- /* #undef pid_t */
297
-
298
- /* Define to rpl_realloc if the replacement function should be used. */
299
- /* #undef realloc */
300
-
301
- /* Define to `unsigned int' if <sys/types.h> does not define. */
302
- /* #undef size_t */
303
-
304
- /* Define to `int' if <sys/types.h> does not define. */
305
- /* #undef ssize_t */
306
-
307
- /* Define to the type of an unsigned integer type of width exactly 16 bits if
308
- such a type exists and the standard includes do not define it. */
309
- /* #undef uint16_t */
310
-
311
- /* Define to the type of an unsigned integer type of width exactly 32 bits if
312
- such a type exists and the standard includes do not define it. */
313
- /* #undef uint32_t */
314
-
315
- /* Define to the type of an unsigned integer type of width exactly 64 bits if
316
- such a type exists and the standard includes do not define it. */
317
- /* #undef uint64_t */
318
-
319
- /* Define to the type of an unsigned integer type of width exactly 8 bits if
320
- such a type exists and the standard includes do not define it. */
321
- /* #undef uint8_t */
322
-
323
- /* Define to the widest unsigned integer type if <stdint.h> and <inttypes.h>
324
- do not define. */
325
- /* #undef uintmax_t */
326
-
327
- /* Define to the type of an unsigned integer type wide enough to hold a
328
- pointer, if such a type exists, and if the system does not define it. */
329
- /* #undef uintptr_t */
330
-
331
- /* Define as `fork' if `vfork' does not work. */
332
- /* #undef vfork */