From fbf47a381c1df4db246c95e6a0f81caed7ba94d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Duval?= Date: Mon, 22 Nov 2004 16:59:10 +0000 Subject: [PATCH] added _kern_set_tzfilename, used to set global timezone filename and whether clock is GMT git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10174 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/private/kernel/syscalls.h | 1 + 1 file changed, 1 insertion(+) diff --git a/headers/private/kernel/syscalls.h b/headers/private/kernel/syscalls.h index 99e8968e59..5d9eb0b645 100644 --- a/headers/private/kernel/syscalls.h +++ b/headers/private/kernel/syscalls.h @@ -185,6 +185,7 @@ extern status_t _kern_stop_watching(dev_t device, ino_t node, uint32 flags, // time functions extern status_t _kern_set_real_time_clock(uint32 time); extern status_t _kern_set_tzspecs(int32 timezone_offset, bool dst_observed); +extern status_t _kern_set_tzfilename(const char *filename, size_t length, bool isGMT); // area functions area_id _kern_create_area(const char *name, void **address, uint32 addressSpec,