~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_thr_init.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:
51
51
pthread_mutexattr_t my_errorcheck_mutexattr;
52
52
#endif
53
53
 
54
 
#ifdef TARGET_OS_LINUX
55
 
 
56
 
/*
57
 
  Dummy thread spawned in my_thread_global_init() below to avoid
58
 
  race conditions in NPTL pthread_exit code.
59
 
*/
60
 
 
61
 
extern "C"
62
 
void *
63
 
nptl_pthread_exit_hack_handler(void *arg __attribute((unused)))
64
 
{
65
 
  /* Do nothing! */
66
 
  pthread_exit(0);
67
 
  return 0;
68
 
}
69
 
 
70
 
#endif /* TARGET_OS_LINUX */
71
 
 
72
54
 
73
55
static uint32_t get_thread_lib(void);
74
56