Bugzilla bug 92085: checked in a Neutrino patch from

briane@qnx.com (Brian Edmond).  r=wtc.
Modified files: _nto.h protypes.h
This commit is contained in:
wtc%netscape.com 2001-10-17 22:28:29 +00:00
Родитель 8ff9efeee1
Коммит 4fcaba9a87
2 изменённых файлов: 3 добавлений и 2 удалений

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

@ -62,6 +62,7 @@
#define PR_HAVE_POSIX_NAMED_SHARED_MEMORY
#define _PR_HAVE_POSIX_SEMAPHORES
#undef FD_SETSIZE
#define FD_SETSIZE 4096
#include <sys/time.h>
#include <sys/types.h>

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

@ -110,7 +110,7 @@ typedef PRUint64 uint64;
*/
#if !defined(XP_BEOS) && !defined(VMS)
#if !defined(XP_MAC) && !defined(_WIN32) && !defined(XP_OS2)
#if !defined(XP_MAC) && !defined(_WIN32) && !defined(XP_OS2) && !defined(NTO)
typedef PRUint32 uint32;
#else
typedef unsigned long uint32;
@ -150,7 +150,7 @@ typedef PRInt64 int64;
&& !defined(_PR_AIX_HAVE_BSD_INT_TYPES) \
&& !defined(HPUX)
#if !defined(WIN32) || !defined(_WINSOCK2API_) /* defines its own "int32" */
#if !defined(XP_MAC) && !defined(_WIN32) && !defined(XP_OS2)
#if !defined(XP_MAC) && !defined(_WIN32) && !defined(XP_OS2) && !defined(NTO)
typedef PRInt32 int32;
#else
typedef long int32;