1
1

* NFDBITS is declared in sys/select.h on AIX

* Need to explicitly cast memcpy with XL on AIX

This commit was SVN r11274.
Этот коммит содержится в:
Brian Barrett 2006-08-20 21:56:45 +00:00
родитель ebd7a49428
Коммит da0610cc50
2 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -37,6 +37,9 @@
#else
#include <sys/_time.h>
#endif
#ifdef HAVE_SYS_SELECT_H
#include <sys/select.h>
#endif
#include <sys/queue.h>
#include <sys/tree.h>
#include <signal.h>

Просмотреть файл

@ -267,7 +267,7 @@ opal_evsignal_process(void)
}
}
memset(opal_evsigcaught, 0, sizeof(opal_evsigcaught));
memset((void*) opal_evsigcaught, 0, sizeof(opal_evsigcaught));
opal_evsignal_caught = 0;
}