Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 165 → Rev 166

/shark/trunk/include/unistd.h
20,11 → 20,11
 
/**
------------
CVS : $Id: unistd.h,v 1.2 2003-03-13 13:41:04 pj Exp $
CVS : $Id: unistd.h,v 1.3 2003-05-22 09:35:08 giacomo Exp $
 
File: $File$
Revision: $Revision: 1.2 $
Last update: $Date: 2003-03-13 13:41:04 $
Revision: $Revision: 1.3 $
Last update: $Date: 2003-05-22 09:35:08 $
------------
 
unistd.h, inspired on BSD one...
237,6 → 237,10
/*+ sleep for n seconds or until a signal is delivered to the thread +*/
unsigned int sleep(unsigned int seconds);
 
/*+ sleep for n useconds */
unsigned int usleep(unsigned int usec);
 
#define udelay(x) usleep(x)
/*
*
*