Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ShExBy/shex_roo.../usr/include/bits
File: time.h
/* System-dependent timing definitions. Linux version.
[0] Fix | Delete
Copyright (C) 1996-2018 Free Software Foundation, Inc.
[1] Fix | Delete
This file is part of the GNU C Library.
[2] Fix | Delete
[3] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[4] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[5] Fix | Delete
License as published by the Free Software Foundation; either
[6] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[7] Fix | Delete
[8] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[9] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[10] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[11] Fix | Delete
Lesser General Public License for more details.
[12] Fix | Delete
[13] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[14] Fix | Delete
License along with the GNU C Library; if not, see
[15] Fix | Delete
<http://www.gnu.org/licenses/>. */
[16] Fix | Delete
[17] Fix | Delete
/*
[18] Fix | Delete
* Never include this file directly; use <time.h> instead.
[19] Fix | Delete
*/
[20] Fix | Delete
[21] Fix | Delete
#ifndef _BITS_TIME_H
[22] Fix | Delete
#define _BITS_TIME_H 1
[23] Fix | Delete
[24] Fix | Delete
#include <bits/types.h>
[25] Fix | Delete
[26] Fix | Delete
/* ISO/IEC 9899:1999 7.23.1: Components of time
[27] Fix | Delete
The macro `CLOCKS_PER_SEC' is an expression with type `clock_t' that is
[28] Fix | Delete
the number per second of the value returned by the `clock' function. */
[29] Fix | Delete
/* CAE XSH, Issue 4, Version 2: <time.h>
[30] Fix | Delete
The value of CLOCKS_PER_SEC is required to be 1 million on all
[31] Fix | Delete
XSI-conformant systems. */
[32] Fix | Delete
#define CLOCKS_PER_SEC ((__clock_t) 1000000)
[33] Fix | Delete
[34] Fix | Delete
#if (!defined __STRICT_ANSI__ || defined __USE_POSIX) \
[35] Fix | Delete
&& !defined __USE_XOPEN2K
[36] Fix | Delete
/* Even though CLOCKS_PER_SEC has such a strange value CLK_TCK
[37] Fix | Delete
presents the real value for clock ticks per second for the system. */
[38] Fix | Delete
extern long int __sysconf (int);
[39] Fix | Delete
# define CLK_TCK ((__clock_t) __sysconf (2)) /* 2 is _SC_CLK_TCK */
[40] Fix | Delete
#endif
[41] Fix | Delete
[42] Fix | Delete
#ifdef __USE_POSIX199309
[43] Fix | Delete
/* Identifier for system-wide realtime clock. */
[44] Fix | Delete
# define CLOCK_REALTIME 0
[45] Fix | Delete
/* Monotonic system-wide clock. */
[46] Fix | Delete
# define CLOCK_MONOTONIC 1
[47] Fix | Delete
/* High-resolution timer from the CPU. */
[48] Fix | Delete
# define CLOCK_PROCESS_CPUTIME_ID 2
[49] Fix | Delete
/* Thread-specific CPU-time clock. */
[50] Fix | Delete
# define CLOCK_THREAD_CPUTIME_ID 3
[51] Fix | Delete
/* Monotonic system-wide clock, not adjusted for frequency scaling. */
[52] Fix | Delete
# define CLOCK_MONOTONIC_RAW 4
[53] Fix | Delete
/* Identifier for system-wide realtime clock, updated only on ticks. */
[54] Fix | Delete
# define CLOCK_REALTIME_COARSE 5
[55] Fix | Delete
/* Monotonic system-wide clock, updated only on ticks. */
[56] Fix | Delete
# define CLOCK_MONOTONIC_COARSE 6
[57] Fix | Delete
/* Monotonic system-wide clock that includes time spent in suspension. */
[58] Fix | Delete
# define CLOCK_BOOTTIME 7
[59] Fix | Delete
/* Like CLOCK_REALTIME but also wakes suspended system. */
[60] Fix | Delete
# define CLOCK_REALTIME_ALARM 8
[61] Fix | Delete
/* Like CLOCK_BOOTTIME but also wakes suspended system. */
[62] Fix | Delete
# define CLOCK_BOOTTIME_ALARM 9
[63] Fix | Delete
/* Like CLOCK_REALTIME but in International Atomic Time. */
[64] Fix | Delete
# define CLOCK_TAI 11
[65] Fix | Delete
[66] Fix | Delete
/* Flag to indicate time is absolute. */
[67] Fix | Delete
# define TIMER_ABSTIME 1
[68] Fix | Delete
#endif
[69] Fix | Delete
[70] Fix | Delete
#ifdef __USE_GNU
[71] Fix | Delete
# include <bits/timex.h>
[72] Fix | Delete
[73] Fix | Delete
__BEGIN_DECLS
[74] Fix | Delete
[75] Fix | Delete
/* Tune a POSIX clock. */
[76] Fix | Delete
extern int clock_adjtime (__clockid_t __clock_id, struct timex *__utx) __THROW;
[77] Fix | Delete
[78] Fix | Delete
__END_DECLS
[79] Fix | Delete
#endif /* use GNU */
[80] Fix | Delete
[81] Fix | Delete
#endif /* bits/time.h */
[82] Fix | Delete
[83] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function