Commit e19ab04e authored by mmu_man's avatar mmu_man

Cleaner support for usleep() (with the correct header :)


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@1669 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 1bfd4fe3
#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 */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment