This commit is contained in:
Yang Tse 2007-04-03 15:35:19 +00:00
Родитель bcf0af9ddb
Коммит f1b4f5e2ae
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -41,7 +41,7 @@
#include <socket.h>
#endif
#ifdef __MSDOS__
#ifdef MSDOS
#include <dos.h> /* delay() */
#endif
@ -116,7 +116,7 @@
*/
static int wait_ms(int timeout_ms)
{
#if !defined(__MSDOS__) && !defined(USE_WINSOCK)
#if !defined(MSDOS) && !defined(USE_WINSOCK)
#ifndef HAVE_POLL_FINE
struct timeval pending_tv;
#endif
@ -132,7 +132,7 @@ static int wait_ms(int timeout_ms)
SET_SOCKERRNO(EINVAL);
return -1;
}
#if defined(__MSDOS__)
#if defined(MSDOS)
delay(timeout_ms);
#elif defined(USE_WINSOCK)
Sleep(timeout_ms);

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

@ -2794,7 +2794,7 @@ static void go_sleep(long ms)
#ifdef WIN32
/* Windows offers a millisecond sleep */
Sleep(ms);
#elif defined(__MSDOS__)
#elif defined(MSDOS)
delay(ms);
#else
/* Other systems must use select() for this */