Skip to main content

This struct is defined as follows:

struct ec_cache_head {
  unsigned int max_size;
  unsigned int max_life;
  ec_cache_stats2 stats;
  ec_cache_elt_dtor_func dtor;
  pthread_rwlock_t lock;
  Skiplist cache;
  ec_hash_table pending;
  char *name;
  Event *e;
  ec_fc_t *fc;  
};

To use this struct, include the file ec_cache_int.h. Also, the following typedef applies to this data type: typedef struct ec_cache_head ec_cache_t;.

See Also

Was this page helpful?