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

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.17.0/] [newlib/] [libc/] [sys/] [linux/] [usleep.c] - Blame information for rev 158

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 148 jeremybenn
/* libc/sys/linux/usleep.c - usleep function */
2
 
3
/* Written 2002 by Jeff Johnston */
4
 
5
 
6
#include <errno.h>
7
#include <sys/types.h>
8
#include <sys/time.h>
9
#include <linux/times.h>
10
 
11
int usleep(__useconds_t useconds)
12
{
13
    struct timespec ts;
14
 
15
    ts.tv_sec = (long int)useconds / 1000000;
16
    ts.tv_nsec = ((long int)useconds % 1000000) * 1000;
17
    if (!nanosleep(&ts,&ts)) return 0;
18
    if (errno == EINTR) return ts.tv_sec;
19
    return -1;
20
}

powered by: WebSVN 2.1.0

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