~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_qsort.c

  • Committer: Brian Aker
  • Date: 2008-08-10 22:14:13 UTC
  • Revision ID: brian@tangent.org-20080810221413-ablfnyr3wgu6fjaw
ulong conversion. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
#define PUSH(LOW,HIGH)  {stack_ptr->low = LOW; stack_ptr++->high = HIGH;}
69
69
#define POP(LOW,HIGH)   {LOW = (--stack_ptr)->low; HIGH = stack_ptr->high;}
70
70
 
71
 
/* The following stack size is enough for ulong ~0 elements */
 
71
/* The following stack size is enough for uint32_t ~0 elements */
72
72
#define STACK_SIZE      (8 * sizeof(unsigned long int))
73
73
#define THRESHOLD_FOR_INSERT_SORT 10
74
74
#if defined(QSORT_TYPE_IS_VOID)