From: Martin v. Löwis Date: Fri, 14 Apr 2006 15:07:46 +0000 (+0000) Subject: Patch #1470300: Port _hotshot to QNX4.25 port. X-Git-Tag: v2.5a2~234 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f24de1e99049fb0b4c35afd76f91a964e08752de;p=python Patch #1470300: Port _hotshot to QNX4.25 port. --- diff --git a/Modules/_hotshot.c b/Modules/_hotshot.c index 6a78fd2e49..2ee4eb9382 100644 --- a/Modules/_hotshot.c +++ b/Modules/_hotshot.c @@ -26,7 +26,7 @@ typedef __int64 hs_time; #ifndef HAVE_GETTIMEOFDAY #error "This module requires gettimeofday() on non-Windows platforms!" #endif -#if (defined(PYOS_OS2) && defined(PYCC_GCC)) +#if (defined(PYOS_OS2) && defined(PYCC_GCC)) || defined(__QNX__) #include #else #include @@ -918,7 +918,7 @@ calibrate(void) #endif } #if defined(MS_WINDOWS) || defined(PYOS_OS2) || \ - defined(__VMS) + defined(__VMS) || defined (__QNX__) rusage_diff = -1; #else {