~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to libmysql/client.c

  • Committer: Monty Taylor
  • Date: 2008-07-02 14:35:48 UTC
  • mto: This revision was merged to the branch mainline in revision 51.
  • Revision ID: monty@inaugust.com-20080702143548-onj30ry0sugr01uw
Removed all references to THREAD.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
#include "mysqld_error.h"
69
69
#include "errmsg.h"
70
70
#include <violite.h>
71
 
#if defined(THREAD) && !defined(__WIN__)
72
71
#include <my_pthread.h>                         /* because of signal()  */
73
 
#endif /* defined(THREAD) && !defined(__WIN__) */
74
72
 
75
73
#include <sys/stat.h>
76
74
#include <signal.h>
243
241
  {
244
242
    tv.tv_sec = (long) timeout;
245
243
    tv.tv_usec = 0;
246
 
#if defined(HPUX10) && defined(THREAD)
 
244
#if defined(HPUX10)
247
245
    if ((res = select(fd+1, NULL, (int*) &sfds, NULL, &tv)) > 0)
248
246
      break;
249
247
#else