File: assoc.h

package info (click to toggle)
memcached 1.4.5-1%2Bdeb6u1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,644 kB
  • ctags: 1,357
  • sloc: ansic: 8,329; sh: 3,977; perl: 3,343; xml: 1,594; makefile: 167
file content (9 lines) | stat: -rw-r--r-- 309 bytes parent folder | download
1
2
3
4
5
6
7
8
9
/* associative array */
void assoc_init(void);
item *assoc_find(const char *key, const size_t nkey);
int assoc_insert(item *item);
void assoc_delete(const char *key, const size_t nkey);
void do_assoc_move_next_bucket(void);
int start_assoc_maintenance_thread(void);
void stop_assoc_maintenance_thread(void);