~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/memory/heap_priv.h

  • Committer: Lee Bieber
  • Date: 2011-02-16 14:48:10 UTC
  • mfrom: (2172.1.5 build)
  • Revision ID: kalebral@gmail.com-20110216144810-u3w6f3a5s6qwisrz
Merge Stewart - remove unused macros
Merge Olaf - remove old style casts
Merge Stewart remove  unused macros in drizzledump
Merge Andrew - 718657: Several errors in Date/Time docs
Merge Olaf - Move strfunc functions into TYPELIB class

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
 
40
40
#define CHUNK_STATUS_DELETED 0    /* this chunk has been deleted and can be reused */
41
41
#define CHUNK_STATUS_ACTIVE  1    /* this chunk represents the first part of a live record */
42
 
#define CHUNK_STATUS_LINKED  2    /* this chunk is a continuation from another chunk (part of chunkset) */
43
42
 
44
43
        /* Some extern variables */
45
44
 
56
55
 
57
56
#define get_chunk_status(info,ptr) (ptr[(info)->offset_status])
58
57
 
59
 
#define get_chunk_count(info,rec_length) ((rec_length + (info)->chunk_dataspace_length - 1) / (info)->chunk_dataspace_length)
60
 
 
61
58
typedef struct st_hp_hash_info
62
59
{
63
60
  struct st_hp_hash_info *next_key;