~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/ut/ut0byte.c

  • Committer: Brian Aker
  • Date: 2008-10-28 08:36:02 UTC
  • mfrom: (520.4.13 merge-innodb-plugin)
  • Revision ID: brian@tangent.org-20081028083602-0p3zzlhlxr5q2sqo
Merging Monty's work

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#include "ut0byte.ic"
13
13
#endif
14
14
 
15
 
#include "ut0sort.h"
16
 
 
17
15
/* Zero value for a dulint */
18
 
dulint  ut_dulint_zero          = {0, 0};
 
16
UNIV_INTERN const dulint        ut_dulint_zero  = {0, 0};
19
17
 
20
18
/* Maximum value for a dulint */
21
 
dulint  ut_dulint_max           = {0xFFFFFFFFUL, 0xFFFFFFFFUL};
 
19
UNIV_INTERN const dulint        ut_dulint_max   = {0xFFFFFFFFUL, 0xFFFFFFFFUL};
 
20
 
 
21
#ifdef notdefined /* unused code */
 
22
#include "ut0sort.h"
22
23
 
23
24
/****************************************************************
24
25
Sort function for dulint arrays. */
 
26
UNIV_INTERN
25
27
void
26
28
ut_dulint_sort(dulint* arr, dulint* aux_arr, ulint low, ulint high)
27
29
/*===============================================================*/
29
31
        UT_SORT_FUNCTION_BODY(ut_dulint_sort, arr, aux_arr, low, high,
30
32
                              ut_dulint_cmp);
31
33
}
 
34
#endif /* notdefined */