diff options
author | monty@hundin.mysql.fi <> | 2002-08-12 03:28:02 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2002-08-12 03:28:02 +0300 |
commit | b779b63862990857c2dd0456196529364ff02d1a (patch) | |
tree | 34d4d5eb2aef4b99d0518f461da41a331af8574e /mysys/my_gethostbyname.c | |
parent | 0005f28b4ec6fdc73c83ea430f53f74103b26239 (diff) | |
download | mariadb-git-b779b63862990857c2dd0456196529364ff02d1a.tar.gz |
Fixed problem with BIGINT and shutdown on AIX
Moved IF(test,column,NULL) code to 4.0
Changed mysys_priv.h to include my_pthread.h or my_no_pthread.h.
Removed some CR's in os2 files.
Diffstat (limited to 'mysys/my_gethostbyname.c')
-rw-r--r-- | mysys/my_gethostbyname.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/mysys/my_gethostbyname.c b/mysys/my_gethostbyname.c index f30591d9fe3..ffbfc424d0a 100644 --- a/mysys/my_gethostbyname.c +++ b/mysys/my_gethostbyname.c @@ -18,7 +18,6 @@ /* Thread safe version of gethostbyname_r() */ #include "mysys_priv.h" -#include "my_pthread.h" #include <assert.h> #if !defined(MSDOS) && !defined(__WIN__) #include <netdb.h> @@ -28,11 +27,6 @@ /* This file is not needed if my_gethostbyname_r is a macro */ #if !defined(my_gethostbyname_r) -#ifndef THREAD -#define pthread_mutex_lock(A) -#define pthread_mutex_unlock(A) -#endif - /* Emulate SOLARIS style calls, not because it's better, but just to make the usage of getbostbyname_r simpler. |