diff options
| author | Patrick Williams <iawillia@us.ibm.com> | 2010-10-04 17:48:47 -0500 |
|---|---|---|
| committer | Patrick Williams <iawillia@us.ibm.com> | 2010-10-04 17:48:47 -0500 |
| commit | 3e9ed72a3b6442eaebadf26294e448862c3a4400 (patch) | |
| tree | f3745143af3f1f87d99f3dec1256549195bf7fe1 /src/include/sys/time.h | |
| parent | 706838262ce47efeb8f983920a218460b81f2dc3 (diff) | |
| download | blackbird-hostboot-3e9ed72a3b6442eaebadf26294e448862c3a4400.tar.gz blackbird-hostboot-3e9ed72a3b6442eaebadf26294e448862c3a4400.zip | |
Add nanosleep syscall.
Diffstat (limited to 'src/include/sys/time.h')
| -rw-r--r-- | src/include/sys/time.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/include/sys/time.h b/src/include/sys/time.h new file mode 100644 index 000000000..2ed63710a --- /dev/null +++ b/src/include/sys/time.h @@ -0,0 +1,17 @@ +#ifndef __SYS_TIME_H +#define __SYS_TIME_H + +#include <stdint.h> + +#ifdef __cplusplus +extern "C" +{ +#endif + +int nanosleep(uint64_t sec, uint64_t nsec); + +#ifdef __cplusplus +} +#endif + +#endif |

