~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/csv/ha_tina.cc

  • Committer: Brian Aker
  • Date: 2008-07-13 18:27:33 UTC
  • Revision ID: brian@tangent.org-20080713182733-3u1et5nrmofi8a8n
my_bool cleanup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
 
72
72
extern "C" void tina_get_status(void* param, int concurrent_insert);
73
73
extern "C" void tina_update_status(void* param);
74
 
extern "C" my_bool tina_check_status(void* param);
 
74
extern "C" bool tina_check_status(void* param);
75
75
 
76
76
/* Stuff for shares */
77
77
pthread_mutex_t tina_mutex;
98
98
}
99
99
 
100
100
static uchar* tina_get_key(TINA_SHARE *share, size_t *length,
101
 
                          my_bool not_used __attribute__((unused)))
 
101
                          bool not_used __attribute__((unused)))
102
102
{
103
103
  *length=share->table_name_length;
104
104
  return (uchar*) share->table_name;
749
749
}
750
750
 
751
751
/* this should exist and return 0 for concurrent insert to work */
752
 
my_bool tina_check_status(void* param __attribute__((__unused__)))
 
752
bool tina_check_status(void* param __attribute__((__unused__)))
753
753
{
754
754
  return 0;
755
755
}