OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [newlib-1.18.0/] [newlib-1.18.0-or32-1.0rc1/] [newlib/] [libc/] [machine/] [spu/] [usleep.c] - Blame information for rev 345

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 207 jeremybenn
/* Copied from libc/posix/usleep.c, removed the check for HAVE_NANOSLEEP */
2
 
3
/* Written 2002 by Jeff Johnston */
4
 
5
#include <errno.h>
6
#include <time.h>
7
#include <unistd.h>
8
 
9
int usleep(useconds_t useconds)
10
{
11
    struct timespec ts;
12
 
13
    ts.tv_sec = (long int)useconds / 1000000;
14
    ts.tv_nsec = ((long int)useconds % 1000000) * 1000;
15
    if (!nanosleep(&ts,&ts)) return 0;
16
    if (errno == EINTR) return ts.tv_sec;
17
    return -1;
18
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.