ncursesw-morphos/ncurses/tinfo/lib_napms.c

90 lines
3.6 KiB
C
Raw Normal View History

1998-03-01 12:21:12 +08:00
/****************************************************************************
* Copyright (c) 1998-2008,2009 Free Software Foundation, Inc. *
1998-03-01 12:21:12 +08:00
* *
* Permission is hereby granted, free of charge, to any person obtaining a *
* copy of this software and associated documentation files (the *
* "Software"), to deal in the Software without restriction, including *
* without limitation the rights to use, copy, modify, merge, publish, *
* distribute, distribute with modifications, sublicense, and/or sell *
* copies of the Software, and to permit persons to whom the Software is *
* furnished to do so, subject to the following conditions: *
* *
* The above copyright notice and this permission notice shall be included *
* in all copies or substantial portions of the Software. *
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
* IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
* THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
* *
* Except as contained in this notice, the name(s) of the above copyright *
* holders shall not be used in advertising or otherwise to promote the *
* sale, use or other dealings in this Software without prior written *
* authorization. *
****************************************************************************/
/****************************************************************************
* Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995 *
* and: Eric S. Raymond <esr@snark.thyrsus.com> *
* and: Thomas E. Dickey 1996-on *
* and: Juergen Pfeifer 2009 *
1998-03-01 12:21:12 +08:00
****************************************************************************/
/*
* lib_napms.c
*
* The routine napms.
*
2004-02-09 10:15:26 +08:00
* (This file was originally written by Eric Raymond; however except for
* comments, none of the original code remains - T.Dickey).
1998-03-01 12:21:12 +08:00
*/
#include <curses.priv.h>
1999-10-24 12:32:42 +08:00
#if HAVE_NANOSLEEP
#include <time.h>
2000-07-09 10:46:08 +08:00
#if HAVE_SYS_TIME_H
#include <sys/time.h> /* needed for MacOS X DP3 */
#endif
1999-10-24 12:32:42 +08:00
#endif
1998-03-01 12:21:12 +08:00
MODULE_ID("$Id: lib_napms.c,v 1.20 2009/11/07 20:37:30 tom Exp $")
1998-03-01 12:21:12 +08:00
2002-10-13 11:35:53 +08:00
NCURSES_EXPORT(int)
NCURSES_SP_NAME(napms) (NCURSES_SP_DCLx int ms)
1998-03-01 12:21:12 +08:00
{
(void) SP_PARM;
2000-07-09 10:46:08 +08:00
T((T_CALLED("napms(%d)"), ms));
1998-03-01 12:21:12 +08:00
#ifdef USE_TERM_DRIVER
CallDriver_1(SP_PARM, nap, ms);
#else /* !USE_TERM_DRIVER */
1998-03-01 12:21:12 +08:00
#if HAVE_NANOSLEEP
2000-07-09 10:46:08 +08:00
{
2004-02-09 10:15:26 +08:00
struct timespec request, remaining;
request.tv_sec = ms / 1000;
request.tv_nsec = (ms % 1000) * 1000000;
2005-10-10 02:41:57 +08:00
while (nanosleep(&request, &remaining) == -1
2004-02-09 10:15:26 +08:00
&& errno == EINTR) {
request = remaining;
}
2000-07-09 10:46:08 +08:00
}
2002-10-13 11:35:53 +08:00
#else
_nc_timed_wait(0, 0, ms, (int *) 0 EVENTLIST_2nd(0));
1998-03-01 12:21:12 +08:00
#endif
#endif /* !USE_TERM_DRIVER */
2002-10-13 11:35:53 +08:00
2000-07-09 10:46:08 +08:00
returnCode(OK);
1998-03-01 12:21:12 +08:00
}
#if NCURSES_SP_FUNCS
NCURSES_EXPORT(int)
napms(int ms)
{
return NCURSES_SP_NAME(napms) (CURRENT_SCREEN, ms);
}
#endif