diff options
author | Christopher Faylor <me@cgf.cx> | 2005-11-18 15:45:51 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-11-18 15:45:51 +0000 |
commit | 808139f1af2a37d898f06664cc2f8124f2b61e70 (patch) | |
tree | e661610f9139ee59953d31b1aa266f5630cd5c24 | |
parent | 9d60f4f87a5b2fa7b05ead7ba9751bcdbcc2ccce (diff) | |
download | newlib-808139f1af2a37d898f06664cc2f8124f2b61e70.zip newlib-808139f1af2a37d898f06664cc2f8124f2b61e70.tar.gz newlib-808139f1af2a37d898f06664cc2f8124f2b61e70.tar.bz2 |
* include/cygwin/sys_time.h: Rename from include/cygwin/time.h.
* include/cygwin/time.h: New file.
-rw-r--r-- | winsup/cygwin/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/cygwin/include/cygwin/sys_time.h | 8 | ||||
-rw-r--r-- | winsup/cygwin/include/cygwin/time.h | 25 |
3 files changed, 34 insertions, 4 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index 52a6361..5f5c1d5 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -1,3 +1,8 @@ +2005-11-18 Christopher Faylor <cgf@timesys.com> + + * include/cygwin/sys_time.h: Rename from include/cygwin/time.h. + * include/cygwin/time.h: New file. + 2005-11-17 Christopher Faylor <cgf@timesys.com> * fork.cc (fork): Move top-of-stack calculation later. diff --git a/winsup/cygwin/include/cygwin/sys_time.h b/winsup/cygwin/include/cygwin/sys_time.h index a5e95f9..acf4b79 100644 --- a/winsup/cygwin/include/cygwin/sys_time.h +++ b/winsup/cygwin/include/cygwin/sys_time.h @@ -1,4 +1,4 @@ -/* time.h +/* sys_time.h Copyright 2005 Red Hat Inc. @@ -8,8 +8,8 @@ This software is a copyrighted work licensed under the terms of the Cygwin license. Please consult the file "CYGWIN_LICENSE" for details. */ -#ifndef _CYGWIN_TIME_H -#define _CYGWIN_TIME_H +#ifndef _CYGWIN_SYS_TIME_H +#define _CYGWIN_SYS_TIME_H #include <sys/select.h> #ifdef __cplusplus @@ -22,4 +22,4 @@ int clock_setres (clockid_t, struct timespec *); #ifdef __cplusplus } #endif -#endif /* _CYGWIN_TIME_H */ +#endif /*_CYGWIN_SYS_TIME_H*/ diff --git a/winsup/cygwin/include/cygwin/time.h b/winsup/cygwin/include/cygwin/time.h new file mode 100644 index 0000000..dadb6ce --- /dev/null +++ b/winsup/cygwin/include/cygwin/time.h @@ -0,0 +1,25 @@ +/* time.h + + Copyright 2005 Red Hat Inc. + +This file is part of Cygwin. + +This software is a copyrighted work licensed under the terms of the +Cygwin license. Please consult the file "CYGWIN_LICENSE" for +details. */ + +#ifndef _CYGWIN_TIME_H +#define _CYGWIN_TIME_H +#ifdef __cplusplus +extern "C" +{ +#endif + +int nanosleep (const struct timespec *, struct timespec *); +int clock_setres (clockid_t, struct timespec *); +int clock_getres (clockid_t, struct timespec *); + +#ifdef __cplusplus +} +#endif +#endif /*_CYGWIN_TIME_H*/ |