my_thr_init.c 14.7 KB
Newer Older
1
/* Copyright (c) 2000, 2011 Oracle and/or its affiliates. All rights reserved.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
2 3 4

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
5
   the Free Software Foundation; version 2 of the License.
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
6 7

   This program is distributed in the hope that it will be useful,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
9 10 11 12 13 14
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
15 16

/*
17 18
  Functions to handle initializating and allocationg of all mysys & debug
  thread variables.
bk@work.mysql.com's avatar
bk@work.mysql.com committed
19 20 21 22
*/

#include "mysys_priv.h"
#include <m_string.h>
23
#include <signal.h>
bk@work.mysql.com's avatar
bk@work.mysql.com committed
24 25

pthread_key(struct st_my_thread_var*, THR_KEY_mysys);
Marc Alff's avatar
Marc Alff committed
26 27
mysql_mutex_t THR_LOCK_malloc, THR_LOCK_open,
              THR_LOCK_lock, THR_LOCK_isam, THR_LOCK_myisam, THR_LOCK_heap,
28
              THR_LOCK_net, THR_LOCK_charset, THR_LOCK_threads,
29
              THR_LOCK_myisam_mmap;
30

Marc Alff's avatar
Marc Alff committed
31
mysql_cond_t  THR_COND_threads;
32 33
uint            THR_thread_count= 0;
uint 		my_thread_end_wait_time= 5;
34
#if !defined(HAVE_LOCALTIME_R) || !defined(HAVE_GMTIME_R)
Marc Alff's avatar
Marc Alff committed
35
mysql_mutex_t LOCK_localtime_r;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
36
#endif
37
#ifndef HAVE_GETHOSTBYNAME_R
Marc Alff's avatar
Marc Alff committed
38
mysql_mutex_t LOCK_gethostbyname_r;
39
#endif
40 41 42
#ifdef PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
pthread_mutexattr_t my_fast_mutexattr;
#endif
43 44 45
#ifdef PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP
pthread_mutexattr_t my_errorcheck_mutexattr;
#endif
46 47 48
#ifdef _MSC_VER
static void install_sigabrt_handler();
#endif
49
#ifdef TARGET_OS_LINUX
50 51

/*
52 53
  Dummy thread spawned in my_thread_global_init() below to avoid
  race conditions in NPTL pthread_exit code.
54 55
*/

56 57
static pthread_handler_t
nptl_pthread_exit_hack_handler(void *arg __attribute((unused)))
58 59 60 61 62 63
{
  /* Do nothing! */
  pthread_exit(0);
  return 0;
}

64
#endif /* TARGET_OS_LINUX */
65

66

67 68
static uint get_thread_lib(void);

69 70
/** True if @c my_thread_global_init() has been called. */
static my_bool my_thread_global_init_done= 0;
Marc Alff's avatar
Marc Alff committed
71 72 73


/**
74
  Re-initialize components initialized early with @c my_thread_global_init.
Marc Alff's avatar
Marc Alff committed
75 76 77 78 79 80
  Some mutexes were initialized before the instrumentation.
  Destroy + create them again, now that the instrumentation
  is in place.
  This is safe, since this function() is called before creating new threads,
  so the mutexes are not in use.
*/
81
void my_thread_global_reinit(void)
Marc Alff's avatar
Marc Alff committed
82 83 84
{
  struct st_my_thread_var *tmp;

85
  DBUG_ASSERT(my_thread_global_init_done);
Marc Alff's avatar
Marc Alff committed
86 87 88 89 90

#ifdef HAVE_PSI_INTERFACE
  my_init_mysys_psi_keys();
#endif

91 92 93 94 95 96 97 98 99 100 101 102
  mysql_mutex_destroy(&THR_LOCK_isam);
  mysql_mutex_init(key_THR_LOCK_isam, &THR_LOCK_isam, MY_MUTEX_INIT_SLOW);

  mysql_mutex_destroy(&THR_LOCK_heap);
  mysql_mutex_init(key_THR_LOCK_heap, &THR_LOCK_heap, MY_MUTEX_INIT_FAST);

  mysql_mutex_destroy(&THR_LOCK_net);
  mysql_mutex_init(key_THR_LOCK_net, &THR_LOCK_net, MY_MUTEX_INIT_FAST);

  mysql_mutex_destroy(&THR_LOCK_myisam);
  mysql_mutex_init(key_THR_LOCK_myisam, &THR_LOCK_myisam, MY_MUTEX_INIT_SLOW);

Marc Alff's avatar
Marc Alff committed
103 104 105 106 107 108 109 110 111 112 113 114
  mysql_mutex_destroy(&THR_LOCK_malloc);
  mysql_mutex_init(key_THR_LOCK_malloc, &THR_LOCK_malloc, MY_MUTEX_INIT_FAST);

  mysql_mutex_destroy(&THR_LOCK_open);
  mysql_mutex_init(key_THR_LOCK_open, &THR_LOCK_open, MY_MUTEX_INIT_FAST);

  mysql_mutex_destroy(&THR_LOCK_charset);
  mysql_mutex_init(key_THR_LOCK_charset, &THR_LOCK_charset, MY_MUTEX_INIT_FAST);

  mysql_mutex_destroy(&THR_LOCK_threads);
  mysql_mutex_init(key_THR_LOCK_threads, &THR_LOCK_threads, MY_MUTEX_INIT_FAST);

115 116 117
  mysql_cond_destroy(&THR_COND_threads);
  mysql_cond_init(key_THR_COND_threads, &THR_COND_threads, NULL);

Marc Alff's avatar
Marc Alff committed
118 119 120 121 122 123 124 125 126 127
  tmp= my_pthread_getspecific(struct st_my_thread_var*, THR_KEY_mysys);
  DBUG_ASSERT(tmp);

  mysql_mutex_destroy(&tmp->mutex);
  mysql_mutex_init(key_my_thread_var_mutex, &tmp->mutex, MY_MUTEX_INIT_FAST);

  mysql_cond_destroy(&tmp->suspend);
  mysql_cond_init(key_my_thread_var_suspend, &tmp->suspend, NULL);
}

128 129 130 131 132 133 134 135 136 137 138
/*
  initialize thread environment

  SYNOPSIS
    my_thread_global_init()

  RETURN
    0  ok
    1  error (Couldn't create THR_KEY_mysys)
*/

bk@work.mysql.com's avatar
bk@work.mysql.com committed
139 140
my_bool my_thread_global_init(void)
{
141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
  int pth_ret;

  if (my_thread_global_init_done)
    return 0;
  my_thread_global_init_done= 1;

#ifdef PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
  /*
    Set mutex type to "fast" a.k.a "adaptive"

    In this case the thread may steal the mutex from some other thread
    that is waiting for the same mutex.  This will save us some
    context switches but may cause a thread to 'starve forever' while
    waiting for the mutex (not likely if the code within the mutex is
    short).
  */
  pthread_mutexattr_init(&my_fast_mutexattr);
  pthread_mutexattr_settype(&my_fast_mutexattr,
                            PTHREAD_MUTEX_ADAPTIVE_NP);
#endif

#ifdef PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP
  /*
    Set mutex type to "errorcheck"
  */
  pthread_mutexattr_init(&my_errorcheck_mutexattr);
  pthread_mutexattr_settype(&my_errorcheck_mutexattr,
                            PTHREAD_MUTEX_ERRORCHECK);
#endif

  if ((pth_ret= pthread_key_create(&THR_KEY_mysys, NULL)) != 0)
  {
    fprintf(stderr, "Can't initialize threads: error %d\n", pth_ret);
    return 1;
  }

  mysql_mutex_init(key_THR_LOCK_malloc, &THR_LOCK_malloc, MY_MUTEX_INIT_FAST);
  mysql_mutex_init(key_THR_LOCK_open, &THR_LOCK_open, MY_MUTEX_INIT_FAST);
  mysql_mutex_init(key_THR_LOCK_charset, &THR_LOCK_charset, MY_MUTEX_INIT_FAST);
  mysql_mutex_init(key_THR_LOCK_threads, &THR_LOCK_threads, MY_MUTEX_INIT_FAST);

  if (my_thread_init())
183
    return 1;
Marc Alff's avatar
Marc Alff committed
184 185

  thd_lib_detected= get_thread_lib();
186

187
#ifdef TARGET_OS_LINUX
188
  /*
189
    BUG#24507: Race conditions inside current NPTL pthread_exit()
190
    implementation.
191

192 193 194 195
    To avoid a possible segmentation fault during concurrent
    executions of pthread_exit(), a dummy thread is spawned which
    initializes internal variables of pthread lib. See bug description
    for a full explanation.
196

197 198 199
    TODO: Remove this code when fixed versions of glibc6 are in common
    use.
  */
200
  if (thd_lib_detected == THD_LIB_NPTL)
201 202 203
  {
    pthread_t       dummy_thread;
    pthread_attr_t  dummy_thread_attr;
204

205
    pthread_attr_init(&dummy_thread_attr);
206
    pthread_attr_setdetachstate(&dummy_thread_attr, PTHREAD_CREATE_JOINABLE);
207

208 209 210
    if (pthread_create(&dummy_thread,&dummy_thread_attr,
                       nptl_pthread_exit_hack_handler, NULL) == 0)
      (void)pthread_join(dummy_thread, NULL);
211
  }
212
#endif /* TARGET_OS_LINUX */
213

Marc Alff's avatar
Marc Alff committed
214 215 216
  mysql_mutex_init(key_THR_LOCK_lock, &THR_LOCK_lock, MY_MUTEX_INIT_FAST);
  mysql_mutex_init(key_THR_LOCK_isam, &THR_LOCK_isam, MY_MUTEX_INIT_SLOW);
  mysql_mutex_init(key_THR_LOCK_myisam, &THR_LOCK_myisam, MY_MUTEX_INIT_SLOW);
217
  mysql_mutex_init(key_THR_LOCK_myisam_mmap, &THR_LOCK_myisam_mmap, MY_MUTEX_INIT_FAST);
Marc Alff's avatar
Marc Alff committed
218 219 220
  mysql_mutex_init(key_THR_LOCK_heap, &THR_LOCK_heap, MY_MUTEX_INIT_FAST);
  mysql_mutex_init(key_THR_LOCK_net, &THR_LOCK_net, MY_MUTEX_INIT_FAST);
  mysql_cond_init(key_THR_COND_threads, &THR_COND_threads, NULL);
221

222
#if !defined(HAVE_LOCALTIME_R) || !defined(HAVE_GMTIME_R)
Marc Alff's avatar
Marc Alff committed
223
  mysql_mutex_init(key_LOCK_localtime_r, &LOCK_localtime_r, MY_MUTEX_INIT_SLOW);
224 225
#endif
#ifndef HAVE_GETHOSTBYNAME_R
Marc Alff's avatar
Marc Alff committed
226 227
  mysql_mutex_init(key_LOCK_gethostbyname_r,
                   &LOCK_gethostbyname_r, MY_MUTEX_INIT_SLOW);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
228
#endif
229 230 231 232 233

#ifdef _MSC_VER
  install_sigabrt_handler();
#endif

234 235 236 237 238
//  if (my_thread_init())
//  {
//    my_thread_global_end();			/* Clean up */
//    return 1;
//  }
239
  return 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
240 241
}

242

bk@work.mysql.com's avatar
bk@work.mysql.com committed
243 244
void my_thread_global_end(void)
{
245 246 247
  struct timespec abstime;
  my_bool all_threads_killed= 1;

248
  set_timespec(abstime, my_thread_end_wait_time);
Marc Alff's avatar
Marc Alff committed
249
  mysql_mutex_lock(&THR_LOCK_threads);
250
  while (THR_thread_count > 0)
251
  {
Marc Alff's avatar
Marc Alff committed
252 253
    int error= mysql_cond_timedwait(&THR_COND_threads, &THR_LOCK_threads,
                                    &abstime);
254 255
    if (error == ETIMEDOUT || error == ETIME)
    {
256 257 258 259 260 261
#ifdef HAVE_PTHREAD_KILL
      /*
        We shouldn't give an error here, because if we don't have
        pthread_kill(), programs like mysqld can't ensure that all threads
        are killed when we enter here.
      */
262
      if (THR_thread_count)
263 264
        fprintf(stderr,
                "Error in my_thread_global_end(): %d threads didn't exit\n",
265
                THR_thread_count);
266
#endif
267
      all_threads_killed= 0;
268
      break;
269 270
    }
  }
Marc Alff's avatar
Marc Alff committed
271
  mysql_mutex_unlock(&THR_LOCK_threads);
272

273
  pthread_key_delete(THR_KEY_mysys);
274 275
#ifdef PTHREAD_ADAPTIVE_MUTEX_INITIALIZER_NP
  pthread_mutexattr_destroy(&my_fast_mutexattr);
276 277 278
#endif
#ifdef PTHREAD_ERRORCHECK_MUTEX_INITIALIZER_NP
  pthread_mutexattr_destroy(&my_errorcheck_mutexattr);
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
279
#endif
Marc Alff's avatar
Marc Alff committed
280 281 282 283 284
  mysql_mutex_destroy(&THR_LOCK_malloc);
  mysql_mutex_destroy(&THR_LOCK_open);
  mysql_mutex_destroy(&THR_LOCK_lock);
  mysql_mutex_destroy(&THR_LOCK_isam);
  mysql_mutex_destroy(&THR_LOCK_myisam);
285
  mysql_mutex_destroy(&THR_LOCK_myisam_mmap);
Marc Alff's avatar
Marc Alff committed
286 287 288
  mysql_mutex_destroy(&THR_LOCK_heap);
  mysql_mutex_destroy(&THR_LOCK_net);
  mysql_mutex_destroy(&THR_LOCK_charset);
289 290
  if (all_threads_killed)
  {
Marc Alff's avatar
Marc Alff committed
291 292
    mysql_mutex_destroy(&THR_LOCK_threads);
    mysql_cond_destroy(&THR_COND_threads);
293
  }
294
#if !defined(HAVE_LOCALTIME_R) || !defined(HAVE_GMTIME_R)
Marc Alff's avatar
Marc Alff committed
295
  mysql_mutex_destroy(&LOCK_localtime_r);
296
#endif
297
#ifndef HAVE_GETHOSTBYNAME_R
Marc Alff's avatar
Marc Alff committed
298
  mysql_mutex_destroy(&LOCK_gethostbyname_r);
299
#endif
300

301
  my_thread_global_init_done= 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
302 303
}

304
static my_thread_id thread_id= 0;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
305

306
/*
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
  Allocate thread specific memory for the thread, used by mysys and dbug

  SYNOPSIS
    my_thread_init()

  NOTES
    We can't use mutex_locks here if we are using windows as
    we may have compiled the program with SAFE_MUTEX, in which
    case the checking of mutex_locks will not work until
    the pthread_self thread specific variable is initialized.

   This function may called multiple times for a thread, for example
   if one uses my_init() followed by mysql_server_init().

  RETURN
    0  ok
    1  Fatal error; mysys/dbug functions can't be used
324 325
*/

bk@work.mysql.com's avatar
bk@work.mysql.com committed
326 327 328
my_bool my_thread_init(void)
{
  struct st_my_thread_var *tmp;
329 330
  my_bool error=0;

331
#ifdef EXTRA_DEBUG_THREADS
332 333
  fprintf(stderr,"my_thread_init(): thread_id: 0x%lx\n",
          (ulong) pthread_self());
334
#endif  
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
335

bk@work.mysql.com's avatar
bk@work.mysql.com committed
336 337
  if (my_pthread_getspecific(struct st_my_thread_var *,THR_KEY_mysys))
  {
338
#ifdef EXTRA_DEBUG_THREADS
339 340
    fprintf(stderr,"my_thread_init() called more than once in thread 0x%lx\n",
            (long) pthread_self());
341
#endif    
342
    goto end;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
343
  }
Vladislav Vaintroub's avatar
Vladislav Vaintroub committed
344 345 346 347 348

#ifdef _MSC_VER
  install_sigabrt_handler();
#endif

349
  if (!(tmp= (struct st_my_thread_var *) calloc(1, sizeof(*tmp))))
bk@work.mysql.com's avatar
bk@work.mysql.com committed
350
  {
351 352
    error= 1;
    goto end;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
353 354
  }
  pthread_setspecific(THR_KEY_mysys,tmp);
355
  tmp->pthread_self= pthread_self();
Marc Alff's avatar
Marc Alff committed
356 357
  mysql_mutex_init(key_my_thread_var_mutex, &tmp->mutex, MY_MUTEX_INIT_FAST);
  mysql_cond_init(key_my_thread_var_suspend, &tmp->suspend, NULL);
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
358

Marc Alff's avatar
Marc Alff committed
359 360 361
  tmp->stack_ends_here= (char*)&tmp +
                         STACK_DIRECTION * (long)my_thread_stack_size;

Marc Alff's avatar
Marc Alff committed
362
  mysql_mutex_lock(&THR_LOCK_threads);
363 364
  tmp->id= ++thread_id;
  ++THR_thread_count;
Marc Alff's avatar
Marc Alff committed
365 366
  mysql_mutex_unlock(&THR_LOCK_threads);
  tmp->init= 1;
367 368 369 370 371
#ifndef DBUG_OFF
  /* Generate unique name for thread */
  (void) my_thread_name();
#endif

monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
372
end:
373
  return error;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
374 375
}

376

377 378 379 380 381 382 383 384 385 386 387 388
/*
  Deallocate memory used by the thread for book-keeping

  SYNOPSIS
    my_thread_end()

  NOTE
    This may be called multiple times for a thread.
    This happens for example when one calls 'mysql_server_init()'
    mysql_server_end() and then ends with a mysql_end().
*/

bk@work.mysql.com's avatar
bk@work.mysql.com committed
389 390
void my_thread_end(void)
{
391 392 393
  struct st_my_thread_var *tmp;
  tmp= my_pthread_getspecific(struct st_my_thread_var*,THR_KEY_mysys);

394
#ifdef EXTRA_DEBUG_THREADS
395 396
  fprintf(stderr,"my_thread_end(): tmp: 0x%lx  pthread_self: 0x%lx  thread_id: %ld\n",
	  (long) tmp, (long) pthread_self(), tmp ? (long) tmp->id : 0L);
397
#endif  
Marc Alff's avatar
Marc Alff committed
398 399 400 401 402 403 404 405 406 407 408

#ifdef HAVE_PSI_INTERFACE
  /*
    Remove the instrumentation for this thread.
    This must be done before trashing st_my_thread_var,
    because the LF_HASH depends on it.
  */
  if (PSI_server)
    PSI_server->delete_current_thread();
#endif

409
  if (tmp && tmp->init)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
410 411
  {
#if !defined(DBUG_OFF)
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
412
    /* tmp->dbug is allocated inside DBUG library */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
413 414
    if (tmp->dbug)
    {
415
      DBUG_POP();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
416 417 418 419
      free(tmp->dbug);
      tmp->dbug=0;
    }
#endif
420
#if !defined(__bsdi__) && !defined(__OpenBSD__)
421
 /* bsdi and openbsd 3.5 dumps core here */
Marc Alff's avatar
Marc Alff committed
422
    mysql_cond_destroy(&tmp->suspend);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
423
#endif
Marc Alff's avatar
Marc Alff committed
424
    mysql_mutex_destroy(&tmp->mutex);
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
425
    free(tmp);
426 427 428 429 430 431 432

    /*
      Decrement counter for number of running threads. We are using this
      in my_thread_global_end() to wait until all threads have called
      my_thread_end and thus freed all memory they have allocated in
      my_thread_init() and DBUG_xxxx
    */
Marc Alff's avatar
Marc Alff committed
433
    mysql_mutex_lock(&THR_LOCK_threads);
434 435
    DBUG_ASSERT(THR_thread_count != 0);
    if (--THR_thread_count == 0)
Marc Alff's avatar
Marc Alff committed
436 437
      mysql_cond_signal(&THR_COND_threads);
    mysql_mutex_unlock(&THR_LOCK_threads);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
438
  }
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
439
  pthread_setspecific(THR_KEY_mysys,0);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
440 441 442 443
}

struct st_my_thread_var *_my_thread_var(void)
{
444
  return  my_pthread_getspecific(struct st_my_thread_var*,THR_KEY_mysys);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
445 446
}

447

bk@work.mysql.com's avatar
bk@work.mysql.com committed
448
/****************************************************************************
449
  Get name of current thread.
bk@work.mysql.com's avatar
bk@work.mysql.com committed
450 451
****************************************************************************/

452
my_thread_id my_thread_dbug_id()
bk@work.mysql.com's avatar
bk@work.mysql.com committed
453 454 455 456 457
{
  return my_thread_var->id;
}

#ifdef DBUG_OFF
458
const char *my_thread_name(void)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
459 460 461 462 463 464
{
  return "no_name";
}

#else

465
const char *my_thread_name(void)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
466 467 468 469 470
{
  char name_buff[100];
  struct st_my_thread_var *tmp=my_thread_var;
  if (!tmp->name[0])
  {
471 472
    my_thread_id id= my_thread_dbug_id();
    sprintf(name_buff,"T@%lu", (ulong) id);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
473 474 475 476
    strmake(tmp->name,name_buff,THREAD_NAME_SIZE);
  }
  return tmp->name;
}
477 478 479 480 481 482 483 484 485

/* Return pointer to DBUG for holding current state */

extern void **my_thread_var_dbug()
{
  struct st_my_thread_var *tmp=
    my_pthread_getspecific(struct st_my_thread_var*,THR_KEY_mysys);
  return tmp && tmp->init ? &tmp->dbug : 0;
}
bk@work.mysql.com's avatar
bk@work.mysql.com committed
486 487
#endif /* DBUG_OFF */

488 489 490

static uint get_thread_lib(void)
{
491
#ifdef _CS_GNU_LIBPTHREAD_VERSION
492 493 494 495 496 497 498 499 500 501 502 503
  char buff[64];
    
  confstr(_CS_GNU_LIBPTHREAD_VERSION, buff, sizeof(buff));

  if (!strncasecmp(buff, "NPTL", 4))
    return THD_LIB_NPTL;
  if (!strncasecmp(buff, "linuxthreads", 12))
    return THD_LIB_LT;
#endif
  return THD_LIB_OTHER;
}

504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529
#ifdef _WIN32
/*
  In Visual Studio 2005 and later, default SIGABRT handler will overwrite
  any unhandled exception filter set by the application  and will try to
  call JIT debugger. This is not what we want, this we calling __debugbreak
  to stop in debugger, if process is being debugged or to generate 
  EXCEPTION_BREAKPOINT and then handle_segfault will do its magic.
*/

#if (_MSC_VER >= 1400)
static void my_sigabrt_handler(int sig)
{
  __debugbreak();
}
#endif /*_MSC_VER >=1400 */

static void install_sigabrt_handler(void)
{
#if (_MSC_VER >=1400)
  /*abort() should not override our exception filter*/
  _set_abort_behavior(0,_CALL_REPORTFAULT);
  signal(SIGABRT,my_sigabrt_handler);
#endif /* _MSC_VER >=1400 */
}
#endif