Annotation of embedaddon/sudo/compat/nanosleep.c, revision 1.1.1.3

1.1       misho       1: /*
1.1.1.3 ! misho       2:  * Copyright (c) 2009-2011, 2013 Todd C. Miller <Todd.Miller@courtesan.com>
1.1       misho       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: 
1.1.1.3 ! misho      19: #ifndef HAVE_NANOSLEEP
        !            20: 
1.1       misho      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
1.1.1.2   misho      29: #ifndef HAVE_STRUCT_TIMESPEC
1.1       misho      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: }
1.1.1.3 ! misho      57: #endif /* HAVE_NANOSLEEP */

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