ADJTIME(3) Linux Programmer’s Manual ADJTIME(3) 名前 adjtime - システムクロックに同期する時刻を調整する 書式 int adjtime(const struct timeval *delta, struct timeval *olddelta); glibc 向けの機能検査マクロの要件 (feature_test_macros(7) 参照): adjtime(): _BSD_SOURCE 説明 adjtime() 関数は (gettimeofday(2) が返す) システムクロックを徐々に調整 する。調整すべきクロックの時間量は delta が指す構造体で指定される。この 構造体は以下の形である: struct timeval { time_t tv_sec; /* 秒 */ suseconds_t tv_usec; /* マイクロ秒 */ }; delta の調整量が正の場合、調整量に達するまでシステムクロックを少し割合 だけスピードアップさせる (つまり、毎秒クロック値に少しだけ時刻を加算 す る)。 delta の調整量が負の場合、同様の方法でクロックを遅くする。 adjtime() が呼び出されたときに以前の adjtime() の呼び出しによるクロック の調整がまだ実行中で、かつ後の adjtime() の delta が NULL でない場合 、 実 行中の調整は停止される。しかし、すでに実行された調整の取り消しは行わ れない。 olddelta が NULL でない場合、 olddelta が指すバッファに、過去の調整要求 でまだ完了せず残っている時間量が格納して返される。 返り値 成 功すると、 adjtime() は 0 を返す。失敗すると、-1 を返し、 errno にエ ラーを示す値をセットする。 エラー EINVAL delta で指定された調整量が許可された範囲に入っていない。 EPERM 呼び出し者が時刻を調整するのに必要な権限を持っていない 。 Linux では CAP_SYS_TIME ケーパビリティが必要である。 準拠 4.3BSD, System V. 注意 adjtime() が行うクロックの調整は、クロックは常に単調増加するという範囲 内で実行される。 adjtime() を使って時刻を調整することで、システムタイム の 突 然 の 正 や負のジャンプにより、いくつかのアプリケーション (例えば make(1) など) に起こる問題を防ぐことができる。 adjtime() はシステム時刻に少しずつ調整を行うために使用されることを期 待 されている。ほとんどのシステムでは、 delta に指定できる調整量に制限を課 している。 glibc の実装では、 delta は (INT_MIN / 1000000 + 2) 以 上 (INT_MAX / 1000000 - 2) 以下 (i386 では -2145 以上 2145 以下) でなけれ ばならない。 バグ ずっと昔から、 delta に NULL を指定すると、未完了のクロック調整に関する 有 効 な情報が olddelta に返されないというバグがあった (この場合、 adj- time() は、未完了のクロック調整に関する情報を、変更せずに返すべき で あ る) 。このバグは、 glibc 2.8 以降で、Linux カーネル 2.6.26 以降のシステ ムで修正されている。 関連項目 adjtimex(2), gettimeofday(2), time(7) Linux 2008-06-22 ADJTIME(3)
ADJTIME(3) Linux Programmer’s Manual ADJTIME(3) NAME adjtime - correct the time to synchronize the system clock SYNOPSIS int adjtime(const struct timeval *delta, struct timeval *olddelta); Feature Test Macro Requirements for glibc (see feature_test_macros(7)): adjtime(): _BSD_SOURCE DESCRIPTION The adjtime() function gradually adjusts the system clock (as returned by gettimeofday(2)). The amount of time by which the clock is to be adjusted is specified in the structure pointed to by delta. This structure has the following form: struct timeval { time_t tv_sec; /* seconds */ suseconds_t tv_usec; /* microseconds */ }; If the adjustment in delta is positive, then the system clock is speeded up by some small percentage (i.e., by adding a small amount of time to the clock value in each second) until the adjustment has been completed. If the adjustment in delta is negative, then the clock is slowed down in a similar fashion. If a clock adjustment from an earlier adjtime() call is already in progress at the time of a later adjtime() call, and delta is not NULL for the later call, then the earlier adjustment is stopped, but any already completed part of that adjustment is not undone. If olddelta is not NULL, then the buffer that it points to is used to return the amount of time remaining from any previous adjustment that has not yet been completed. RETURN VALUE On success, adjtime() returns 0. On failure, -1 is returned, and errno is set to indicate the error. ERRORS EINVAL The adjustment in delta is outside the permitted range. EPERM The caller does not have sufficient privilege to adjust the time. Under Linux the CAP_SYS_TIME capability is required. CONFORMING TO 4.3BSD, System V. NOTES The adjustment that adjtime() makes to the clock is carried out in such a manner that the clock is always monotonically increasing. Using adj- time() to adjust the time prevents the problems that can be caused for certain applications (e.g., make(1)) by abrupt positive or negative jumps in the system time. adjtime() is intended to be used to make small adjustments to the sys- tem time. Most systems impose a limit on the adjustment that can be specified in delta. In the glibc implementation, delta must be less than or equal to (INT_MAX / 1000000 - 2) and greater than or equal to (INT_MIN / 1000000 + 2) (respectively 2145 and -2145 seconds on i386). BUGS A longstanding bug meant that if delta was specified as NULL, no valid information about the outstanding clock adjustment was returned in old- delta. (In this circumstance, adjtime() should return the outstanding clock adjustment, without changing it.) This bug is fixed on systems with glibc 2.8 or later and Linux kernel 2.6.26 or later. SEE ALSO adjtimex(2), gettimeofday(2), time(7) COLOPHON This page is part of release 3.22 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. Linux 2008-06-22 ADJTIME(3)
コロナウイルスの日ごとの感染者数・死者数をグラフ化してみました。どの国が増加傾向にあり、どの国が終息に向かっているかを視覚化しています。
Copyright(C) linux-cmd.com All Rights Reserved. Author Takayuki Yukawa