~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzleimport.cc

  • Committer: Brian Aker
  • Date: 2009-07-09 19:49:32 UTC
  • mfrom: (1085.1.10 mordred)
  • Revision ID: brian@gaz-20090709194932-o90qfzgk9xem5di1
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
using namespace std;
38
38
 
 
39
extern "C"
 
40
{
 
41
  bool get_one_option(int optid, const struct my_option *, char *argument);
 
42
  void * worker_thread(void *arg);
 
43
}
 
44
 
 
45
int exitcode= 0;
 
46
 
39
47
/* Global Thread counter */
40
48
uint32_t counter;
41
49
pthread_mutex_t counter_mutex;
175
183
  my_print_variables(my_long_options);
176
184
}
177
185
 
178
 
extern "C"
179
186
bool get_one_option(int optid, const struct my_option *, char *argument)
180
187
{
181
188
  char *endchar= NULL;
521
528
  return to;
522
529
}
523
530
 
524
 
int exitcode= 0;
525
 
 
526
 
extern "C"
527
531
void * worker_thread(void *arg)
528
532
{
529
533
  int error;