~drizzle-developers/ubuntu/natty/drizzle/natty

« back to all changes in this revision

Viewing changes to drizzled/internal/my_thr_init.cc

  • Committer: Monty Taylor
  • Date: 2010-03-03 19:27:30 UTC
  • mto: (1308.1.2 trunk)
  • mto: This revision was merged to the branch mainline in revision 1278.
  • Revision ID: mordred@inaugust.com-20100303192730-o2o3nmp0lzhuatbe
Tags: upstream-2010.03.1317
ImportĀ upstreamĀ versionĀ 2010.03.1317

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
  thread variables.
19
19
*/
20
20
 
21
 
#include "drizzled/internal/mysys_priv.h"
 
21
#include "config.h"
 
22
 
 
23
#include "drizzled/internal/my_sys.h"
22
24
#include "drizzled/internal/my_pthread.h"
23
25
#include "drizzled/internal/m_string.h"
24
26
 
25
 
#include <stdio.h>
 
27
#include <cstdio>
26
28
#include <signal.h>
27
29
 
28
30
#if TIME_WITH_SYS_TIME
36
38
# endif
37
39
#endif
38
40
 
 
41
namespace drizzled
 
42
{
 
43
namespace internal
 
44
{
 
45
 
39
46
uint32_t thd_lib_detected= 0;
40
47
 
41
48
pthread_key_t THR_KEY_mysys;
256
263
#endif
257
264
  return THD_LIB_OTHER;
258
265
}
 
266
 
 
267
} /* namespace internal */
 
268
} /* namespace drizzled */