~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to drizzled/internal/my_sys.h

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-10-02 14:17:48 UTC
  • mfrom: (1.1.1 upstream)
  • mto: (2.1.17 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20101002141748-m6vbfbfjhrw1153e
Tags: 2010.09.1802-1
* New upstream release.
* Removed pid-file argument hack.
* Updated GPL-2 address to be new address.
* Directly copy in drizzledump.1 since debian doesn't have sphinx 1.0 yet.
* Link to jquery from libjs-jquery. Add it as a depend.
* Add drizzled.8 symlink to the install files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
 
50
50
#include <drizzled/dynamic_array.h>
51
51
 
 
52
#ifdef HAVE_SYS_MMAN_H 
52
53
#include <sys/mman.h>
 
54
#endif
53
55
 
54
56
#include "drizzled/qsort_cmp.h"
55
57
 
178
180
 
179
181
enum cache_type
180
182
{
181
 
  TYPE_NOT_SET= 0, READ_CACHE, WRITE_CACHE,
182
 
  SEQ_READ_APPEND               /* sequential read or append */,
183
 
  READ_FIFO, READ_NET,WRITE_NET};
 
183
  TYPE_NOT_SET= 0,
 
184
  READ_CACHE,
 
185
  WRITE_CACHE,
 
186
  READ_FIFO,
 
187
  READ_NET,
 
188
  WRITE_NET
 
189
};
184
190
 
185
191
typedef struct st_record_cache  /* Used when cacheing records */
186
192
{