tzsetのヘルプ・マニュアル
日本語 英語
tzset --help
man tzset
TZSET(3) Linux Programmer’s Manual TZSET(3)
名前
tzset, tzname, timezone, daylight - 時刻の変換情報を初期化する
書式
#include
void tzset (void);
extern char *tzname[2];
extern long timezone;
extern int daylight;
glibc 向けの機能検査マクロの要件 (feature_test_macros(7) 参照):
tzset(): _POSIX_C_SOURCE >= 1 || _XOPEN_SOURCE || _POSIX_SOURCE
tzname: _POSIX_C_SOURCE >= 1 || _XOPEN_SOURCE || _POSIX_SOURCE
timezone: _SVID_SOURCE || _XOPEN_SOURCE
daylight: _SVID_SOURCE || _XOPEN_SOURCE
説明
tzset() 関数は TZ 環境変数を用いて tzname 変数を初期化する。この関数は
、タイムゾーンに依存する他の時刻変換関数から自動的に呼び出される。 Sys-
tem V 的な環境では、この関数は変数 timezone (GMT からの西向きの秒数) と
daylight (このタイムゾーンにサマータイムに関するルールがなければ 0、 サ
マータイム期間が一年のどこかにあれば 0 以外) も設定する。
TZ 環境変数が設定されていない場合には、 tzname 変数はローカルな壁時計時
刻 (wall clock time) に最も近い値に初期化される。このローカルな壁時計時
刻 としては、システムのタイムゾーンディレクトリ (後述) にある tzfile(5)
形式のファイル localtime で指定されている値が用いられる。 (この際 に は
/etc/localtime もよく用いられる。これはシステムのタイムゾーンディレクト
リにある適切なファイルへのシンボリックリンクになっている。)
TZ 環境変数が存在しているが、その値が空だったり、以下に示す形式のどれに
もあてはまらない場合は、協定世界時 (Coordinated Universal Time: UTC) が
用いられる。
TZ の値は以下の 3 つの形式のいずれかを取ることができる。最初の形式は サ
マ ータイム (daylight saving time) を持たないローカルタイムゾーンに対し
て用いる。
std offset
std 文字列はタイムゾーンの名前を指定する。アルファベットからなる 3 文字
以上の文字列でなければならない。 offset 文字列は std の直後に続き、協定
世界時 (UTC) を得るためにローカルな時刻に加えなければならない時間を指定
す る。 offset は、ローカルタイムゾーンがグリニッジ子午線 (Prime Merid-
ian) の西なら正の値、東なら負の値を取る。時間 (hour) は 0 から 24 の 間
でなければならない。分 (minute) と秒 (second) は 0 から 59 の間でなけれ
ばならない。
2 番目の形式はサマータイムがある場合に用いられる。
std offset dst [offset],start[/time],end[/time]
指定にはスペースを含めてはならない。先頭の std と offset は 1 番目の 形
式と同じで、標準のタイムゾーンを指定する。 dst 文字列と offset は、対応
するサマータイムゾーンの名前とオフセットを指定する。オフセットが省略 さ
れると、デフォルトでは標準の一時間前となる。
start フィールドはサマータイムが有効になる時刻、 end フィールドは標準に
戻る時刻である。これらのフィールドは以下の形式で指定する。
Jn 年の通日 (Julian day) で日にちを指定する。 n は 1 から 365 の 間
の数値。うるう年の場合でも 2 月 29 日はカウントされない。
n 年の通日で日にちを指定する。 n は 1 から 365 の間の数値。うるう
年の場合には 2 月 29 日がカウントされる。
Mm.w.d m は月 (1 <= m <= 12) を、 w は月のうちの週 (1 <= w <= 5) を、 d
は 週のうちの日にち (0 <= d <= 6) を示す。 w = 1 は所属する d が
存在する最初の週、 w = 5 は最後の週である。 d = 0 は日曜日である
。
time フィールドは、ローカルタイムを切り替える時刻を、変更前のローカルタ
イムで表したものである。省略された場合のデフォルトは 02:00:00 である。
ニュージーランドの例である。ニュージーランドでは、標準のタイム ゾ ー ン
(NZST) は UTC より 12時間進んでおり、サマータイム (NZDT) は UTC の 13時
間進んでいる。サマータイムは 10月の第一日曜から 3月の第三日曜までであり
、ローカルタイムの切り替えはデフォルトの 02:00:00 に行われる。
TZ="NZST-12.00:00NZDT-13:00:00,M10.1.0,M3.3.0"
3 番目の形式は、タイムゾーンの情報をファイルから読み込むように指定する
。
:[filespec]
ファイルの指定 filespec が省略された場合は、タイムゾーンの情報はシス テ
ムタイムゾーンディレクトリの localtime ファイルから読まれる。最近ではシ
ステムタイムゾーンディレクトリは普通 /usr/share/zoneinfo/localtime であ
る。このファイルは tzfile(5) 形式で書かれている。 filespec が与えられた
場合は、タイムゾーンの情報をそのファイルから読み込む。このファ イ ル も
tzfile(5) 形式で書かれている必要がある。 filespec が '/' で始まらなかっ
た場合には、システムタイムゾーンディレクトリからの相対パスでファイル が
指定されたことになる。
例を挙げておく。もう一度ニュージーランドの例である。
TZ=":Pacific/Auckland"
ファイル
用いられるシステムタイムゾーンディレクトリは (g)libc のバージョンに依存
する。 libc4 と libc5 は /usr/lib/zoneinfo を用いる。libc-5.4.6 以降 で
は 、 こ れ が使えなかった場合には /usr/share/zoneinfo を使おうとする。
glibc2 では環境変数 TZDIR が存在すればそれを用いる。このデフォルトは ど
のようにインストールされたかによるが、普通は /usr/share/zoneinfo である
。
このタイムゾーンディレクトリには以下のファイルが含まれる。
localtime ローカルタイムゾーンのファイル
posixrules POSIX 式の TZ 書式ルール
/etc/localtime は、 localtime ファイルや、システムのタイムゾーンディ レ
ク トリ中の適切なタイムゾーンファイルへのシンボリックリンクであることが
多い。
準拠
SVr4, POSIX.1-2001, 4.3BSD.
注意
daylight 変数は、現在がサマータイムであるかどうかを示しているのではない
。 これはいくつかあるアルゴリズムのうちの番号を与える (アルゴリズムにつ
いては gettimeofday(2) の tz_dsttime 変数を見よ)。これはもう何年も使 わ
れていないが、SUSv2 では必要とされている。
4.3BSD には char *timezone(zone, dst) というルーチンがあり、これは最初
の引数 (GMT からの西向きの分数) に対応するタイムゾーンの名前を返す。 二
番目の引数が 0 の場合は標準の名前が用いられ、それ以外はサマータイム版の
名前が用いられる。
関連項目
date(1), gettimeofday(2), time(2), ctime(3), getenv(3), tzfile(5)
2008-08-29 TZSET(3)
TZSET(3) Linux Programmer’s Manual TZSET(3)
NAME
tzset, tzname, timezone, daylight - initialize time conversion informa-
tion
SYNOPSIS
#include
void tzset (void);
extern char *tzname[2];
extern long timezone;
extern int daylight;
Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
tzset(): _POSIX_C_SOURCE >= 1 || _XOPEN_SOURCE || _POSIX_SOURCE
tzname: _POSIX_C_SOURCE >= 1 || _XOPEN_SOURCE || _POSIX_SOURCE
timezone: _SVID_SOURCE || _XOPEN_SOURCE
daylight: _SVID_SOURCE || _XOPEN_SOURCE
DESCRIPTION
The tzset() function initializes the tzname variable from the TZ envi-
ronment variable. This function is automatically called by the other
time conversion functions that depend on the timezone. In a System-V-
like environment it will also set the variables timezone (seconds West
of GMT) and daylight (0 if this timezone does not have any daylight
saving time rules, non-zero if there is a time during the year when
daylight saving time applies).
If the TZ variable does not appear in the environment, the tzname vari-
able is initialized with the best approximation of local wall clock
time, as specified by the tzfile(5)-format file localtime found in the
system timezone directory (see below). (One also often sees
/etc/localtime used here, a symlink to the right file in the system
timezone directory.)
If the TZ variable does appear in the environment but its value is
empty or its value cannot be interpreted using any of the formats spec-
ified below, Coordinated Universal Time (UTC) is used.
The value of TZ can be one of three formats. The first format is used
when there is no daylight saving time in the local timezone:
std offset
The std string specifies the name of the timezone and must be three or
more alphabetic characters. The offset string immediately follows std
and specifies the time value to be added to the local time to get Coor-
dinated Universal Time (UTC). The offset is positive if the local
timezone is west of the Prime Meridian and negative if it is east. The
hour must be between 0 and 24, and the minutes and seconds 0 and 59.
The second format is used when there is daylight saving time:
std offset dst [offset],start[/time],end[/time]
There are no spaces in the specification. The initial std and offset
specify the standard timezone, as described above. The dst string and
offset specify the name and offset for the corresponding daylight sav-
ing timezone. If the offset is omitted, it default to one hour ahead
of standard time.
The start field specifies when daylight saving time goes into effect
and the end field specifies when the change is made back to standard
time. These fields may have the following formats:
Jn This specifies the Julian day with n between 1 and 365. Febru-
ary 29 is never counted even in leap years.
n This specifies the Julian day with n between 0 and 365. Febru-
ary 29 is counted in leap years.
Mm.w.d This specifies day d (0 <= d <= 6) of week w (1 <= w <= 5) of
month m (1 <= m <= 12). Week 1 is the first week in which day d
occurs and week 5 is the last week in which day d occurs. Day 0
is a Sunday.
The time fields specify when, in the local time currently in effect,
the change to the other time occurs. If omitted, the default is
02:00:00.
Here is an example for New Zealand, where the standard time (NZST) is
12 hours ahead of UTC, and daylight saving time (NZDT), 13 hours ahead
of UTC, runs from the first Sunday in October to the third Sunday in
March, and the changeovers happen at the default time of 02:00:00:
TZ="NZST-12.00:00NZDT-13:00:00,M10.1.0,M3.3.0"
The third format specifies that the timezone information should be read
from a file:
:[filespec]
If the file specification filespec is omitted, the timezone information
is read from the file localtime in the system timezone directory, which
nowadays usually is /usr/share/zoneinfo. This file is in tzfile(5)
format. If filespec is given, it specifies another tzfile(5)-format
file to read the timezone information from. If filespec does not begin
with a '/', the file specification is relative to the system timezone
directory.
Here’s an example, once more for New Zealand:
TZ=":Pacific/Auckland"
FILES
The system timezone directory used depends on the (g)libc version.
Libc4 and libc5 use /usr/lib/zoneinfo, and, since libc-5.4.6, when this
doesn’t work, will try /usr/share/zoneinfo. Glibc2 will use the envi-
ronment variable TZDIR, when that exists. Its default depends on how
it was installed, but normally is /usr/share/zoneinfo.
This timezone directory contains the files
localtime local timezone file
posixrules rules for POSIX-style TZ’s
Often /etc/localtime is a symlink to the file localtime or to the cor-
rect timezone file in the system timezone directory.
CONFORMING TO
SVr4, POSIX.1-2001, 4.3BSD.
NOTES
Note that the variable daylight does not indicate that daylight saving
time applies right now. It used to give the number of some algorithm
(see the variable tz_dsttime in gettimeofday(2)). It has been obsolete
for many years but is required by SUSv2.
4.3BSD had a function char *timezone(zone, dst) that returned the name
of the timezone corresponding to its first argument (minutes West of
GMT). If the second argument was 0, the standard name was used, other-
wise the daylight saving time version.
SEE ALSO
date(1), gettimeofday(2), time(2), ctime(3), getenv(3), tzfile(5)
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/.
2008-08-29 TZSET(3)