comparison cpuinfo.c @ 33884:514016233368

build: drop BeOS support BeOS is dead and support has been dropped from FFmpeg/Libav a long time ago. The support code that was added years ago adds considerable clutter while not providing any benefit, so it's better to drop it outright. Support for Haiku, the FOSS replacement of BeOS remains unaffected.
author diego
date Thu, 11 Aug 2011 17:45:43 +0000
parents dd7f15a3fb1b
children
comparison
equal deleted inserted replaced
33883:7bf488338904 33884:514016233368
28 28
29 #ifdef __MINGW32__ 29 #ifdef __MINGW32__
30 #define MISSING_USLEEP 30 #define MISSING_USLEEP
31 #include <windows.h> 31 #include <windows.h>
32 #define sleep(t) Sleep(1000*t); 32 #define sleep(t) Sleep(1000*t);
33 #endif
34
35 #ifdef __BEOS__
36 #define usleep(t) snooze(t)
37 #endif 33 #endif
38 34
39 #ifdef M_UNIX 35 #ifdef M_UNIX
40 typedef long long int64_t; 36 typedef long long int64_t;
41 #define MISSING_USLEEP 37 #define MISSING_USLEEP