File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / sudo / compat / nanosleep.c
Revision 1.1.1.3 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Jul 22 10:46:11 2013 UTC (10 years, 11 months ago) by misho
Branches: sudo, MAIN
CVS tags: v1_8_8p0, v1_8_8, v1_8_7p0, v1_8_7, HEAD
1.8.7

    1: /*
    2:  * Copyright (c) 2009-2011, 2013 Todd C. Miller <Todd.Miller@courtesan.com>
    3:  *
    4:  * Permission to use, copy, modify, and distribute this software for any
    5:  * purpose with or without fee is hereby granted, provided that the above
    6:  * copyright notice and this permission notice appear in all copies.
    7:  *
    8:  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
    9:  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
   10:  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
   11:  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
   12:  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
   13:  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
   14:  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
   15:  */
   16: 
   17: #include <config.h>
   18: 
   19: #ifndef HAVE_NANOSLEEP
   20: 
   21: #include <sys/types.h>
   22: #include <sys/time.h>
   23: #ifdef HAVE_SYS_SELECT_H
   24: #include <sys/select.h>
   25: #endif /* HAVE_SYS_SELECT_H */
   26: #if TIME_WITH_SYS_TIME
   27: # include <time.h>
   28: #endif
   29: #ifndef HAVE_STRUCT_TIMESPEC
   30: # include "compat/timespec.h"
   31: #endif
   32: #include <errno.h>
   33: 
   34: #include "missing.h"
   35: 
   36: int
   37: nanosleep(const struct timespec *ts, struct timespec *rts)
   38: {
   39:     struct timeval timeout, endtime, now;
   40:     int rval;
   41: 
   42:     timeout.tv_sec = ts->tv_sec;
   43:     timeout.tv_usec = ts->tv_nsec / 1000;
   44:     if (rts != NULL) {
   45: 	gettimeofday(&endtime, NULL);
   46: 	timevaladd(&endtime, &timeout);
   47:     }
   48:     rval = select(0, NULL, NULL, NULL, &timeout);
   49:     if (rts != NULL && rval == -1 && errno == EINTR) {
   50: 	gettimeofday(&now, NULL);
   51: 	timevalsub(&endtime, &now);
   52: 	rts->tv_sec = endtime.tv_sec;
   53: 	rts->tv_nsec = endtime.tv_usec * 1000;
   54:     }
   55:     return rval;
   56: }
   57: #endif /* HAVE_NANOSLEEP */

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>