summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrançois Revol <revol@free.fr>2003-03-12 17:15:42 +0000
committerFrançois Revol <revol@free.fr>2003-03-12 17:15:42 +0000
commite803f1a2eee01145c0297fa94e8c5608865ef5aa (patch)
treee9bca49e20b8fbaeea259f1722786509ac1b4b60
parentd4ad24c17ddf296aadfe34404caa461244babb27 (diff)
downloadffmpeg-streaming-e803f1a2eee01145c0297fa94e8c5608865ef5aa.zip
ffmpeg-streaming-e803f1a2eee01145c0297fa94e8c5608865ef5aa.tar.gz
Cleaner support for usleep() (with the correct header :)
Originally committed as revision 1669 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r--os_support.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/os_support.h b/os_support.h
new file mode 100644
index 0000000..38713f2
--- /dev/null
+++ b/os_support.h
@@ -0,0 +1,28 @@
+#ifndef _OS_SUPPORT_H
+#define _OS_SUPPORT_H
+
+/*
+ * miscellaneous OS support macros
+ *
+ * For now:
+ * usleep()
+ */
+
+#ifdef __MINGW32__
+# include <windows.h>
+# define usleep(t) Sleep((t) / 1000)
+#endif
+
+#ifdef __BEOS__
+# ifndef usleep
+# include <OS.h>
+# define usleep(t) snooze((bigtime_t)(t))
+# endif
+#endif
+
+#if defined(CONFIG_OS2)
+# include <stdlib.h>
+# define usleep(t) _sleep2((t) / 1000)
+#endif
+
+#endif /* _OS_SUPPORT_H */
OpenPOWER on IntegriCloud