summaryrefslogtreecommitdiff
path: root/include/my_pthread.h
diff options
context:
space:
mode:
authorunknown <monty@donna.mysql.com>2000-08-31 22:00:09 +0300
committerunknown <monty@donna.mysql.com>2000-08-31 22:00:09 +0300
commitb4fb0ec11788c5f1113e493b9c7653f30c8dc2cf (patch)
tree96f970afaa1f5743c4cb056f49e66b1d99eb2da4 /include/my_pthread.h
parente286d8c5dca5220ab65c5aa35b4287f699626c62 (diff)
downloadmariadb-git-b4fb0ec11788c5f1113e493b9c7653f30c8dc2cf.tar.gz
Portability changes
Docs/manual.texi: Comment about timestamp include/my_pthread.h: Portability fix mysys/thr_rwlock.c: Fix for hpux
Diffstat (limited to 'include/my_pthread.h')
-rw-r--r--include/my_pthread.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/my_pthread.h b/include/my_pthread.h
index bf6a0515ed2..19c39d76ef3 100644
--- a/include/my_pthread.h
+++ b/include/my_pthread.h
@@ -279,7 +279,7 @@ extern int my_pthread_create_detached;
#endif /* defined(PTHREAD_SCOPE_GLOBAL) && !defined(PTHREAD_SCOPE_SYSTEM) */
#if defined(_BSDI_VERSION) && _BSDI_VERSION < 199910
-int sigwait(const sigset_t *set, int *sig);
+int sigwait(sigset_t *set, int *sig);
#endif
#if defined(HAVE_UNIXWARE7_POSIX)
@@ -309,7 +309,7 @@ extern int my_pthread_cond_init(pthread_cond_t *mp,
#endif
#if !defined(HAVE_SIGWAIT) && !defined(HAVE_mit_thread) && !defined(HAVE_rts_threads) && !defined(sigwait) && !defined(alpha_linux_port) && !defined(HAVE_NONPOSIX_SIGWAIT) && !defined(HAVE_DEC_3_2_THREADS) && !defined(_AIX)
-int sigwait(const sigset_t *setp, int *sigp); /* Use our implemention */
+int sigwait(sigset_t *setp, int *sigp); /* Use our implemention */
#endif
#if !defined(HAVE_SIGSET) && !defined(HAVE_mit_thread) && !defined(sigset)
#define sigset(A,B) do { struct sigaction s; sigset_t set; \