~yolanda.robla/ubuntu/trusty/memcached/add_distribution

« back to all changes in this revision

Viewing changes to items.h

  • Committer: Bazaar Package Importer
  • Author(s): David Martínez Moreno
  • Date: 2009-08-01 23:26:45 UTC
  • mto: (3.3.1 squeeze) (1.4.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: james.westby@ubuntu.com-20090801232645-g57xdaf3zal53qcl
Tags: upstream-1.4.0
Import upstream version 1.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
/*@null@*/
17
17
char *do_item_cachedump(const unsigned int slabs_clsid, const unsigned int limit, unsigned int *bytes);
18
 
char *do_item_stats(int *bytes);
19
 
 
 
18
void do_item_stats(ADD_STAT add_stats, void *c);
20
19
/*@null@*/
21
 
char *do_item_stats_sizes(int *bytes);
 
20
void do_item_stats_sizes(ADD_STAT add_stats, void *c);
22
21
void do_item_flush_expired(void);
23
 
item *item_get(const char *key, const size_t nkey);
24
22
 
25
 
item *do_item_get_notedeleted(const char *key, const size_t nkey, bool *delete_locked);
 
23
item *do_item_get(const char *key, const size_t nkey);
26
24
item *do_item_get_nocheck(const char *key, const size_t nkey);
 
25
void item_stats_reset(void);
 
26
extern pthread_mutex_t cache_lock;