~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/ut0rbt.h

  • Committer: Brian Aker
  • Date: 2010-12-08 22:35:56 UTC
  • mfrom: (1819.9.158 update-innobase)
  • Revision ID: brian@tangent.org-20101208223556-37mi4omqg7lkjzf3
Merge in Stewart's changes, 1.3 changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
/* Red black tree typedefs */
54
54
typedef struct ib_rbt_struct ib_rbt_t;
55
55
typedef struct ib_rbt_node_struct ib_rbt_node_t;
56
 
// FIXME: Iterator is a better name than _bound_
 
56
/* FIXME: Iterator is a better name than _bound_ */
57
57
typedef struct ib_rbt_bound_struct ib_rbt_bound_t;
58
58
typedef void (*ib_rbt_print_node)(const ib_rbt_node_t* node);
59
59
typedef int (*ib_rbt_compare)(const void* p1, const void* p2);