tool_sleep.c
Go to the documentation of this file.
00001 /***************************************************************************
00002  *                                  _   _ ____  _
00003  *  Project                     ___| | | |  _ \| |
00004  *                             / __| | | | |_) | |
00005  *                            | (__| |_| |  _ <| |___
00006  *                             \___|\___/|_| \_\_____|
00007  *
00008  * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
00009  *
00010  * This software is licensed as described in the file COPYING, which
00011  * you should have received as part of this distribution. The terms
00012  * are also available at https://curl.haxx.se/docs/copyright.html.
00013  *
00014  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
00015  * copies of the Software, and permit persons to whom the Software is
00016  * furnished to do so, under the terms of the COPYING file.
00017  *
00018  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
00019  * KIND, either express or implied.
00020  *
00021  ***************************************************************************/
00022 #include "tool_setup.h"
00023 
00024 #ifdef HAVE_SYS_SELECT_H
00025 #  include <sys/select.h>
00026 #endif
00027 
00028 #ifdef HAVE_SYS_POLL_H
00029 #  include <sys/poll.h>
00030 #elif defined(HAVE_POLL_H)
00031 #  include <poll.h>
00032 #endif
00033 
00034 #ifdef MSDOS
00035 #  include <dos.h>
00036 #endif
00037 
00038 #include "tool_sleep.h"
00039 
00040 #include "memdebug.h" /* keep this as LAST include */
00041 
00042 void tool_go_sleep(long ms)
00043 {
00044 #if defined(MSDOS)
00045   delay(ms);
00046 #elif defined(WIN32)
00047   Sleep(ms);
00048 #elif defined(HAVE_POLL_FINE)
00049   (void)poll((void *)0, 0, (int)ms);
00050 #else
00051   struct timeval timeout;
00052   timeout.tv_sec = ms / 1000L;
00053   ms = ms % 1000L;
00054   timeout.tv_usec = ms * 1000L;
00055   select(0, NULL,  NULL, NULL, &timeout);
00056 #endif
00057 }
00058 


rc_visard_driver
Author(s): Heiko Hirschmueller , Christian Emmerich , Felix Ruess
autogenerated on Thu Jun 6 2019 20:43:07