* libc/include/time.h (CLOCK_PROCESS_CPUTIME_ID): Rename from
CLOCK_PROCESS_CPUTIME. (CLOCK_THREAD_CPUTIME_ID): Rename from CLOCK_THREAD_CPUTIME. * libc/include/sys/features.h [__CYGWIN__] (_POSIX_CPUTIME): Define. (_POSIX_THREAD_CPUTIME): Define.
This commit is contained in:
parent
553f08059b
commit
64a5e8a9a3
|
@ -1,3 +1,11 @@
|
|||
2011-05-16 Yaakov Selkowitz <yselkowitz@users.sourceforge.net>
|
||||
|
||||
* libc/include/time.h (CLOCK_PROCESS_CPUTIME_ID): Rename from
|
||||
CLOCK_PROCESS_CPUTIME.
|
||||
(CLOCK_THREAD_CPUTIME_ID): Rename from CLOCK_THREAD_CPUTIME.
|
||||
* libc/include/sys/features.h [__CYGWIN__] (_POSIX_CPUTIME): Define.
|
||||
(_POSIX_THREAD_CPUTIME): Define.
|
||||
|
||||
2011-05-16 Christian Bruel <christian.bruel@st.com>
|
||||
|
||||
* libc/stdlib/strtod.c (_strtod_r): Fix nf/nd counts to not exceed
|
||||
|
|
|
@ -103,7 +103,7 @@ extern "C" {
|
|||
/* #define _POSIX_BARRIERS -1 */
|
||||
#define _POSIX_CHOWN_RESTRICTED 1
|
||||
/* #define _POSIX_CLOCK_SELECTION -1 */
|
||||
/* #define _POSIX_CPUTIME -1 */
|
||||
#define _POSIX_CPUTIME 200112L
|
||||
#define _POSIX_FSYNC 200112L
|
||||
#define _POSIX_IPV6 200112L
|
||||
#define _POSIX_JOB_CONTROL 1
|
||||
|
@ -130,7 +130,7 @@ extern "C" {
|
|||
#define _POSIX_SYNCHRONIZED_IO 200112L
|
||||
#define _POSIX_THREAD_ATTR_STACKADDR 200112L
|
||||
#define _POSIX_THREAD_ATTR_STACKSIZE 200112L
|
||||
/* #define _POSIX_THREAD_CPUTIME -1 */
|
||||
#define _POSIX_THREAD_CPUTIME 200112L
|
||||
/* #define _POSIX_THREAD_PRIO_INHERIT -1 */
|
||||
/* #define _POSIX_THREAD_PRIO_PROTECT -1 */
|
||||
#define _POSIX_THREAD_PRIORITY_SCHEDULING 200112L
|
||||
|
|
|
@ -212,7 +212,7 @@ extern "C" {
|
|||
the identifier of the CPU_time clock associated with the PROCESS
|
||||
making the function call. */
|
||||
|
||||
#define CLOCK_PROCESS_CPUTIME (clockid_t)2
|
||||
#define CLOCK_PROCESS_CPUTIME_ID (clockid_t)2
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -222,7 +222,7 @@ extern "C" {
|
|||
the identifier of the CPU_time clock associated with the THREAD
|
||||
making the function call. */
|
||||
|
||||
#define CLOCK_THREAD_CPUTIME (clockid_t)3
|
||||
#define CLOCK_THREAD_CPUTIME_ID (clockid_t)3
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue