summaryrefslogtreecommitdiff
path: root/include/my_semaphore.h
diff options
context:
space:
mode:
authorunknown <Sinisa@sinisa.nasamreza.org>2002-08-01 15:19:06 +0300
committerunknown <Sinisa@sinisa.nasamreza.org>2002-08-01 15:19:06 +0300
commite8d66a287128ef17077312d21328dcab5a023540 (patch)
tree67ec49d5d5ef02caf7bf759846031b6ce6eb059c /include/my_semaphore.h
parent3e7f12c8b6be01fc5a9a120fc58ac0e8f39e2149 (diff)
downloadmariadb-git-e8d66a287128ef17077312d21328dcab5a023540.tar.gz
few small fixes
BitKeeper/etc/ignore: Added mysys/ste5KbMa to the ignore list include/my_semaphore.h: A small fix for BSDi sql/sql_update.cc: Just a proper error message
Diffstat (limited to 'include/my_semaphore.h')
-rw-r--r--include/my_semaphore.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/my_semaphore.h b/include/my_semaphore.h
index aecbde09511..e08138495f7 100644
--- a/include/my_semaphore.h
+++ b/include/my_semaphore.h
@@ -32,11 +32,11 @@
#define _my_semaphore_h_
C_MODE_START
-
#ifdef HAVE_SEMAPHORE_H
#include <semaphore.h>
+#elif defined(__bsdi__)
+#include <sys/errno.h>
#else
-
#ifdef __WIN__
typedef HANDLE sem_t;
#else