|
Revision tags: release/13.4.0-p5, release/13.5.0-p1, release/14.2.0-p3, release/13.5.0, release/14.2.0-p2, release/14.1.0-p8, release/13.4.0-p4, release/14.1.0-p7, release/14.2.0-p1, release/13.4.0-p3, release/14.2.0, release/13.4.0, release/14.1.0 |
|
| #
0e0220d1 |
| 06-May-2024 |
Ed Maste <[email protected]> |
clock_gettime.2: fix markup
The CLOCK_* constants are "defined variable or preprocessor constants" and so use .Dv.
Reviewed by: imp Sponsored by: The FreeBSD Foundation Differential Revision: https
clock_gettime.2: fix markup
The CLOCK_* constants are "defined variable or preprocessor constants" and so use .Dv.
Reviewed by: imp Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D45106
(cherry picked from commit 2d29d2ecebf8ea19221995b3ea2e3a7ac700bf81)
show more ...
|
|
Revision tags: release/13.3.0, release/14.0.0 |
|
| #
fa9896e0 |
| 16-Aug-2023 |
Warner Losh <[email protected]> |
Remove $FreeBSD$: two-line nroff pattern
Remove /^\.\\"\n\.\\"\s*\$FreeBSD\$$\n/
|
|
Revision tags: release/13.2.0, release/12.4.0 |
|
| #
16e4487e |
| 08-Jul-2022 |
Mateusz Piotrowski <[email protected]> |
clock_gettime.2: Clarify CLOCK_*
Clarify that CLOCK_* (e.g., CLOCK_REALTIME) do not necessarily default to CLOCK_*_FAST.
PR: 259642
|
| #
13a9da7d |
| 08-Jul-2022 |
Mateusz Piotrowski <[email protected]> |
clock_gettime.2: Add cross references and fix linter warnings
MFC after: 3 days
|
|
Revision tags: release/13.1.0, release/12.3.0 |
|
| #
155f1511 |
| 30-Jul-2021 |
Warner Losh <[email protected]> |
clock_gettime: Add Linux aliases for CLOCK_*
Linux standardized what we call CLOCK_{REALTIME,MONOTONIC}_FAST as CLOCK_{REALTIME,MONOTONIC}_COARSE. In addition, Linux spells CLOCK_UPTIME as CLOCK_BOO
clock_gettime: Add Linux aliases for CLOCK_*
Linux standardized what we call CLOCK_{REALTIME,MONOTONIC}_FAST as CLOCK_{REALTIME,MONOTONIC}_COARSE. In addition, Linux spells CLOCK_UPTIME as CLOCK_BOOTTIME.
Add aliases to time.h and document these new aliases in clock_gettime(2).
Reviewed by: vangyzen, kib (prior), dchagin (prior) Sponsored by: Netflix Differential Revision: https://reviews.freebsd.org/D30988
show more ...
|
| #
1760799b |
| 13-May-2021 |
Ceri Davies <[email protected]> |
Remove references to timed(8)
There are still references to timed(8) and timedc(8) in the base system, which were removed in 2018.
PR: 255425 Reported by: Ceri Davies <ceri at submonkey dot net> Re
Remove references to timed(8)
There are still references to timed(8) and timedc(8) in the base system, which were removed in 2018.
PR: 255425 Reported by: Ceri Davies <ceri at submonkey dot net> Reviewed by: ygy, gbe MFC after: 1 week Differential Revision: https://reviews.freebsd.org/D30232
show more ...
|
|
Revision tags: release/13.0.0, release/12.2.0, release/11.4.0 |
|
| #
8d3443b1 |
| 07-Dec-2019 |
Alan Somers <[email protected]> |
clock_gettime(2): add a HISTORY section
MFC after: 2 weeks
|
|
Revision tags: release/12.1.0, release/11.3.0, release/12.0.0, release/11.2.0, release/10.4.0, release/11.1.0 |
|
| #
16fe28bb |
| 22-Mar-2017 |
Eric van Gyzen <[email protected]> |
clock_gettime.2: add some clock IDs
Add the CLOCK_PROCESS_CPUTIME_ID and CLOCK_THREAD_CPUTIME_ID clock_id values to the clock_gettime(2) man page. Reformat the excessively long paragraph (sentence!
clock_gettime.2: add some clock IDs
Add the CLOCK_PROCESS_CPUTIME_ID and CLOCK_THREAD_CPUTIME_ID clock_id values to the clock_gettime(2) man page. Reformat the excessively long paragraph (sentence!) into a tag list.
Reported by: jilles in https://reviews.freebsd.org/D10020 MFC after: 3 days Sponsored by: Dell EMC
show more ...
|
| #
fbbd9655 |
| 28-Feb-2017 |
Warner Losh <[email protected]> |
Renumber copyright clause 4
Renumber cluase 4 to 3, per what everybody else did when BSD granted them permission to remove clause 3. My insistance on keeping the same numbering for legal reasons is
Renumber copyright clause 4
Renumber cluase 4 to 3, per what everybody else did when BSD granted them permission to remove clause 3. My insistance on keeping the same numbering for legal reasons is too pedantic, so give up on that point.
Submitted by: Jan Schaumann <[email protected]> Pull Request: https://github.com/freebsd/freebsd/pull/96
show more ...
|
|
Revision tags: release/11.0.1, release/11.0.0, release/10.3.0 |
|
| #
3e18d701 |
| 27-Dec-2015 |
Dmitry Chagin <[email protected]> |
Verify that tv_sec value specified in settimeofday() and clock_settime() (CLOCK_REALTIME case) system calls is non negative. This commit hides a kernel panic in atrtc_settime() as the clock_ts_to_ct(
Verify that tv_sec value specified in settimeofday() and clock_settime() (CLOCK_REALTIME case) system calls is non negative. This commit hides a kernel panic in atrtc_settime() as the clock_ts_to_ct() does not properly convert negative tv_sec.
ps. in my opinion clock_ts_to_ct() should be rewritten to properly handle negative tv_sec values.
Differential Revision: https://reviews.freebsd.org/D4714 Reviewed by: kib
MFC after: 1 week
show more ...
|
| #
11022e84 |
| 20-Dec-2015 |
Jilles Tjoelker <[email protected]> |
clock_gettime(2),gettimeofday(2): Remove [EFAULT] error.
Depending on system configuration and parameters, clock_gettime() and gettimeofday() may not be system calls. If so, passing an invalid point
clock_gettime(2),gettimeofday(2): Remove [EFAULT] error.
Depending on system configuration and parameters, clock_gettime() and gettimeofday() may not be system calls. If so, passing an invalid pointer will cause a signal and not an [EFAULT] error.
From a standards perspective, this is OK since passing an invalid pointer is undefined behaviour.
MFC after: 1 week
show more ...
|
|
Revision tags: release/10.2.0, release/10.1.0, release/9.3.0, release/10.0.0, release/9.2.0, release/8.4.0, release/9.1.0, release/8.3.0_cvs, release/8.3.0, release/9.0.0, release/7.4.0_cvs, release/8.2.0_cvs, release/7.4.0, release/8.2.0 |
|
| #
0d9deed5 |
| 08-Oct-2010 |
Ulrich Spörlein <[email protected]> |
mdoc: drop redundant .Pp and .LP calls
They have no effect when coming in pairs, or before .Bl/.Bd
|
|
Revision tags: release/8.1.0_cvs, release/8.1.0, release/7.3.0_cvs, release/7.3.0 |
|
| #
92bfafd3 |
| 01-Jan-2010 |
Konstantin Belousov <[email protected]> |
MFC r201201: Document CLOCK_SECOND, add cross-reference from time(3) to clock_gettime(2).
MFC r201204: Document _FAST and _PRECISE clocks.
|
| #
d439b6c2 |
| 29-Dec-2009 |
Konstantin Belousov <[email protected]> |
Document _FAST and _PRECISE clocks.
Submitted by: Valentin Nechayev <netch segfault kiev ua> MFC after: 3 days
|
| #
5d2874ab |
| 29-Dec-2009 |
Konstantin Belousov <[email protected]> |
Document CLOCK_SECOND, add cross-reference from time(3) to clock_gettime(2).
Based on submission by: pluknet gmail com MFC after: 3 days
|
|
Revision tags: release/8.0.0_cvs, release/8.0.0, release/7.2.0_cvs, release/7.2.0, release/7.1.0_cvs, release/7.1.0, release/6.4.0_cvs, release/6.4.0 |
|
| #
636133e3 |
| 25-Feb-2008 |
Christian Brueffer <[email protected]> |
Add missing words.
MFC after: 3 days
|
|
Revision tags: release/7.0.0_cvs, release/7.0.0, release/6.3.0_cvs, release/6.3.0, release/6.2.0_cvs, release/6.2.0 |
|
| #
c879ae35 |
| 09-Jan-2007 |
Warner Losh <[email protected]> |
Per Regents of the University of Calfornia letter, remove advertising clause.
# If I've done so improperly on a file, please let me know.
|
| #
137e54d3 |
| 04-Nov-2006 |
Daniel Gerzo <[email protected]> |
- clock_gettime is in time.h instead of sys/time.h
Approved by: trhodes (mentor), keramida (mentor) PR: docs/104707 MFC-after: 3 days
|
| #
a73a3ab5 |
| 17-Sep-2006 |
Ruslan Ermilov <[email protected]> |
Markup fixes.
|
|
Revision tags: release/5.5.0_cvs, release/5.5.0, release/6.1.0_cvs, release/6.1.0 |
|
| #
f6232df7 |
| 18-Nov-2005 |
Andre Oppermann <[email protected]> |
Document CLOCK_UPTIME which returns the current uptime in SI seconds. At the moment it is just an alias for CLOCK_MONOTONIC which reports the same number.
Sponsored by: TCP/IP Optimization Fundraise
Document CLOCK_UPTIME which returns the current uptime in SI seconds. At the moment it is just an alias for CLOCK_MONOTONIC which reports the same number.
Sponsored by: TCP/IP Optimization Fundraise 2005
show more ...
|
|
Revision tags: release/6.0.0_cvs, release/6.0.0, release/5.4.0_cvs, release/5.4.0, release/4.11.0_cvs, release/4.11.0, release/5.3.0_cvs, release/5.3.0 |
|
| #
1a0a9345 |
| 02-Jul-2004 |
Ruslan Ermilov <[email protected]> |
Mechanically kill hard sentence breaks.
|
| #
3c6dd63b |
| 21-Jun-2004 |
Mike Pritchard <[email protected]> |
Spelling fixes.
|
| #
0a016304 |
| 17-Jun-2004 |
Kelly Yancey <[email protected]> |
CLOCK_PROF and CLOCK_VIRTUAL are implemented now.
|
|
Revision tags: release/4.10.0_cvs, release/4.10.0, release/5.2.1_cvs, release/5.2.1, release/5.2.0_cvs, release/5.2.0, release/4.9.0_cvs, release/4.9.0 |
|
| #
743d5d51 |
| 10-Sep-2003 |
Ruslan Ermilov <[email protected]> |
mdoc(7): Properly mark C headers.
|
|
Revision tags: release/5.1.0_cvs, release/5.1.0, release/4.8.0_cvs, release/4.8.0 |
|
| #
aefdeea6 |
| 23-Feb-2003 |
Poul-Henning Kamp <[email protected]> |
Mention CLOCK_MONOTONIC.
|