Add const to [my_]sigwait() arg, to make all declarations match.

include/my_pthread.h:
  - add const to [my_]sigwait() arg
mysys/my_pthread.c:
  - add const to [my_]sigwait() arg
This commit is contained in:
unknown 2000-08-09 14:47:25 -04:00
commit 14ccbc09bb
2 changed files with 3 additions and 3 deletions

View file

@ -100,7 +100,7 @@ int my_pthread_create_detached=1;
#if defined(HAVE_NONPOSIX_SIGWAIT) || defined(HAVE_DEC_3_2_THREADS)
int my_sigwait(sigset_t *set,int *sig)
int my_sigwait(const sigset_t *set,int *sig)
{
int signal=sigwait(set);
if (signal < 0)