2000-02-17 20:38:33 +01:00
|
|
|
/* times.cc
|
|
|
|
|
2013-01-21 05:38:31 +01:00
|
|
|
Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
|
2013-06-14 11:09:41 +02:00
|
|
|
2007, 2008, 2009, 2010, 2011, 2012, 2013 Red Hat, Inc.
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2007-07-04 12:43:29 +02:00
|
|
|
#define __timezonefunc__
|
2009-01-03 06:12:22 +01:00
|
|
|
#include "winsup.h"
|
2000-02-17 20:38:33 +01:00
|
|
|
#include <sys/times.h>
|
|
|
|
#include <sys/timeb.h>
|
|
|
|
#include <utime.h>
|
|
|
|
#include <stdlib.h>
|
2011-05-17 19:08:10 +02:00
|
|
|
#include <unistd.h>
|
2000-08-22 05:58:47 +02:00
|
|
|
#include "cygerrno.h"
|
2001-07-26 21:22:24 +02:00
|
|
|
#include "security.h"
|
2000-08-22 07:10:20 +02:00
|
|
|
#include "path.h"
|
* devices.cc: New file.
* devices.gperf: New file.
* devices.shilka: New file.
* cygwin-gperf: New file.
* cygwin-shilka: New file.
* fhandler_fifo.cc: New file.
* fhandler_nodevice.cc : New file. Reorganize headers so that path.h precedes
fhandler.h throughout. Remove device argument and unit arguments from fhandler
constructors throughout. Remove pc arguments to fhandler functions and use
internal pc element instead, throughout. Use dev element in pc throughout.
Use major/minor elements rather than units and device numbers previously in
fhandler class. Use correct methods for fhandler file names rather than
directly accessing file name variables, throughout.
* Makefile.in (DLL_OFILES): Add devices.o, fhandler_fifo.o
* dcrt0.cc (dll_crt0_1): Call device::init.
* devices.h: Renumber devices based on more Linux-like major/minor numbers.
Add more devices. Declare standard device storage.
(device): Declare struct.
* dir.cc (opendir): Use new 'build_fh_name' to construct a fhandler_* type.
* dtable.cc (dtable::get_debugger_info): Ditto.
(cygwin_attach_handle_to_fd): Ditto.
(dtable::release): Remove special FH_SOCKET case in favor of generic
"need_fixup_before" test.
(dtable::init_std_file_from_handle): Use either build_fh_dev or build_fh_name
to build standard fhandler.
(dtable::build_fh_name): Renamed from dtable::build_fhandler_from_name. Move
out of dtable class. Don't accept a path_conv argument. Just build it here
and pass it to:
(build_fh_pc): Renamed from dtable::build_fhandler. Move out of dtable class.
Use intrinsic device type in path_conv to create new fhandler.
(build_fh_dev): Renamed from dtable::build_fhandler. Move out of dtable class.
Simplify arguments to just take new 'device' type and a name. Just return
pointer to fhandler rather than trying to insert into dtable.
(dtable::dup_worker): Accommodate above build_fh name changes.
(dtable::find_fifo): New (currently broken) function.
(handle_to_fn): Use strechr for efficiency.
* dtable.h: Reflect above build_fh name changes and argument differences.
(fhandler_base *&operator []): Return self rather than copy of self.
* fhandler.cc (fhandler_base::operator =): Use pc element to set normalized
path.
(fhandler_base::set_name): Ditto.
(fhandler_base::raw_read): Use method to access name.
(fhandler_base::write): Correctly use get_output_handle rather than get_handle.
(handler_base::device_access_denied): New function.
(fhandler_base::open): Eliminate pc argument and use pc element of
fhandler_base throughout.
(fhandler_base::fstat): Detect if device is based in filesystem and use
fstat_fs to calculate stat, if so.
(fhandler_base::fhandler_base): Eliminate handling of file names and, instead,
just free appropriate component from pc.
(fhandler_base::opendir): Remove path_conv parameter.
* fhandler.h: Remove all device flags.
(fhandler_base::pc): New element.
(fhandler_base::set_name): Change argument to path_conv.
(fhandler_base::error): New function.
(fhandler_base::exists): New function.
(fhandler_base::pc_binmode): New function.
(fhandler_base::dev): New function.
(fhandler_base::open_fs): New function.
(fhandler_base::fstat_fs): New function.
(fhandler_base::fstat_by_name): New function.
(fhandler_base::fstat_by_handle): New function.
(fhandler_base::isfifo): New function.
(fhandler_base::is_slow): New function.
(fhandler_base::is_auto_device): New function.
(fhandler_base::is_fs_special): New function.
(fhandler_base::device_access_denied): New function.
(fhandler_base::operator DWORD&): New operator.
(fhandler_base::get_name): Return normalized path from pc.
(fhandler_base::get_win32_name): Return windows path from pc.
(fhandler_base::isdevice): Renamed from is_device.
(fhandler_base::get_native_name): Return device format.
(fhandler_fifo): New class.
(fhandler_nodevice): New class.
(select_stuff::device_specific): Remove array.
(select_stuff::device_specific_pipe): New class element.
(select_stuff::device_specific_socket): New class element.
(select_stuff::device_specific_serial): New class element.
(select_stuff::select_stuff): Initialize new elements.
* fhandler_disk_file.cc (fhandler_base::fstat_by_handle): Move to base class
from fhandler_disk_file.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_base::fstat_by_name): Ditto.
(fhandler_disk_file::open): Move most functionality into
fhandler_base::open_fs.
(fhandler_base::open_fs): New function.
(fhandler_disk_file::close): Move most functionality into
fhandler_base::close_fs.
(fhandler_base::close_fs): New function.
* fhandler_mem.cc (fhandler_dev_mem::open): Use device name in debugging
output.
* fhandler_socket.cc (fhandler_socket::set_connect_secret): Copy standard
urandom device into appropriate place.
(fhandler_socket::accept): Reflect change in fdsock return value.
* fhandler_tty.cc: See "throughouts" above.
* net.cc: Accommodate fdsock change throughout.
(fdsock): Return success or failure, accept fd argument and device argument.
* path.cc (symlink_info::major): New element.
(symlink_info::minor): New element.
(symlink_info::parse_device): Declare new function.
(fs_info::update): Accommodate changes in path_conv class.
(path_conv::fillin): Ditto.
(path_conv::return_and_clear_normalized_path): Eliminate.
(path_conv::set_normalized_path): New function.
(path_conv::path_conv): Set info in dev element. Use path_conv methods Check
for FH_FS rather than FH_BAD to indicate when to fill in filesystem stuff.
where appropriate rather than direct access. Use set_normalized_path to set
normalized path.
(windows_device_names): Eliminate.
(get_dev): Ditto.
(get_raw_device_number): Ditto.
(get_device_number): Ditto.
(win32_device_name): Call new device name parser to do most of the heavy
lifting.
(mount_info::conv_to_win32_path): Fill in dev field as appropriate.
(symlink_worker): Handle new device files.
(symlink_info::check): Ditto.
(symlink_info::parse_device): Define new function.
* path.h (executable_states): Move here from fhandler.h.
(fs_info): Rename variables to *_storage and create methods for accessing same.
(path_conv): Add dev element, remove devn and unit and adjust inline methods to
accommodate.
(set_normalized_path): Declare new function.
* pinfo.cc (_pinfo::commune_recv): Add broken support for handling fifos.
(_pinfo::commune_send): Ditto.
* pipe.cc (fhandler_pipe::close): check for existence of handle before closing
it.
(handler_pipe::create): Rename from make_pipe. Change arguments to accept
fhandler_pipe array. Accommodate fifos.
(pipe): Rework to deal with fhandler_pipe::create changes.
(_pipe): Ditto.
* select.cc: Use individual device_specific types throughout rather than
indexing with obsolete device number.
(set_bits): Use is_socket call rather than checking device number.
* shared_info.h (CURR_MOUNT_MAGIC): Update.
(conv_to_win32_path): Reflect addition of device argument.
* syscalls.cc (mknod_worker): New function.
(open): Use build_fh_name to build fhandler.
(chown_worker): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(chmod_device): New function.
(chmod): Detect if this is an 'auto' device rather than an on-filesystem device
and handle appropriately. Use chmod_device to set mode of in-filesystem
devices.
(stat_worker): Eliminate path_conv argument. Call build_fh_name to construct
fhandler. Use fh->error() rather than pc->error to detect errors in fhandler
construction.
(access_worker): New function pulled from access. Accommodate in-filesystem
devices.
(access): Use access_worker.
(fpathconf): Detect if this is an 'auto' device rather than an on-filesystem
device and handle appropriately.
(mknod_worker): New function.
(mknod32): New function.
(chroot): Free normalized path -- assuming it was actually cmalloced.
* tty.cc (create_tty_master): Tweak for new device class.
(tty::common_init): Ditto.
* winsup.h (stat_worker): Remove.
(symlink_worker): Declare.
* exceptions.cc (set_process_mask): Just call sig_dispatch_pending and don't
worry about pending_signals since sig_dispatch_pending should always do the
right thing now.
(sig_handle): Reorganize SIGCONT handling to more closely conform to SUSv3.
* pinfo.h: Move __SIG enum to sigproc.h.
(PICOM_FIFO): New enum element.
(_pinfo): Remove 'thread2signal' stuff throughout class.
(_pinfo::commune_send): Make varargs.
(_pinfo::sigtodo): Eliminate.
(_pinfo::thread2signal): Ditto.
* signal.cc (kill_worker): Eliminate call to setthread2signal.
* sigproc.cc (local_sigtodo): Eliminate.
(getlocal_sigtodo): Ditto.
(sigelem): New class.
(pending_signals): New class.
(sigqueue): New variable, start of sigqueue linked list.
(sigcatch_nonmain): Eliminate.
(sigcatch_main): Eliminate.
(sigcatch_nosync): Eliminate.
(sigcomplete_nonmain): Eliminate.
(pending_signals): Eliminate.
(sig_clear): Call signal thread to clear pending signals, unless already in
signal thread.
(sigpending): Call signal thread to get pending signals.
(sig_dispatch_pending): Eliminate use of pending_signals and just check
sigqueue.
(sigproc_terminate): Eliminate all of the obsolete semaphore stuff. Close
signal pipe handle.
(sig_send): Eliminate all of the obsolete semaphore stuff and use pipe to send
signals.
(getevent): Eliminate.
(pending_signals::add): New function.
(pending_signals::del): New function.
(pending_signals::next): New function.
(wait_sig): Eliminate all of the obsolete semaphore stuff. Use pipe to
communicate and maintain a linked list of signals.
* sigproc.h: Move __SIG defines here. Add __SIGPENDING.
(sig_dispatch_pending): Remove "C" specifier.
(sig_handle): Accept a mask argument.
* thread.cc: Remove signal handling considerations throughout.
2003-09-25 02:37:18 +02:00
|
|
|
#include "fhandler.h"
|
2005-02-20 12:44:32 +01:00
|
|
|
#include "dtable.h"
|
2005-10-19 18:50:43 +02:00
|
|
|
#include "cygheap.h"
|
2000-08-22 07:10:20 +02:00
|
|
|
#include "pinfo.h"
|
2011-05-17 19:08:10 +02:00
|
|
|
#include "thread.h"
|
2003-12-23 17:26:31 +01:00
|
|
|
#include "cygtls.h"
|
2007-08-14 16:48:52 +02:00
|
|
|
#include "ntdll.h"
|
2000-03-19 05:14:07 +01:00
|
|
|
|
2012-03-26 11:05:50 +02:00
|
|
|
hires_ms NO_COPY gtod;
|
2010-05-26 16:48:17 +02:00
|
|
|
|
2010-08-09 18:47:48 +02:00
|
|
|
hires_ns NO_COPY ntod;
|
|
|
|
|
2013-06-17 10:33:41 +02:00
|
|
|
/* Temporary declare here until 32 bit w32api follows suit. */
|
2013-06-14 17:41:17 +02:00
|
|
|
extern "C" { void WINAPI GetSystemTimePreciseAsFileTime (LPFILETIME); }
|
|
|
|
|
|
|
|
static inline void __attribute__ ((always_inline))
|
|
|
|
get_system_time (PLARGE_INTEGER systime)
|
|
|
|
{
|
|
|
|
wincap.has_precise_system_time ()
|
|
|
|
? GetSystemTimePreciseAsFileTime ((LPFILETIME) systime)
|
|
|
|
: GetSystemTimeAsFileTime ((LPFILETIME) systime);
|
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Cygwin internal */
|
2013-06-14 11:09:41 +02:00
|
|
|
static uint64_t __stdcall
|
|
|
|
__to_clock_t (PLARGE_INTEGER src, int flag)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2013-06-14 11:09:41 +02:00
|
|
|
uint64_t total = src->QuadPart;
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Convert into clock ticks - the total is in 10ths of a usec. */
|
|
|
|
if (flag)
|
|
|
|
total -= FACTOR;
|
|
|
|
|
2013-06-14 11:09:41 +02:00
|
|
|
total /= NSPERSEC / CLOCKS_PER_SEC;
|
2000-02-17 20:38:33 +01:00
|
|
|
return total;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* times: POSIX 4.5.2.1 */
|
|
|
|
extern "C" clock_t
|
2002-10-21 03:00:58 +02:00
|
|
|
times (struct tms *buf)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2005-07-03 04:40:30 +02:00
|
|
|
myfault efault;
|
|
|
|
if (efault.faulted (EFAULT))
|
2001-09-16 16:26:11 +02:00
|
|
|
return ((clock_t) -1);
|
|
|
|
|
2013-06-14 11:09:41 +02:00
|
|
|
static SYSTEM_TIMEOFDAY_INFORMATION stodi;
|
|
|
|
KERNEL_USER_TIMES kut;
|
|
|
|
LARGE_INTEGER ticks;
|
2007-02-22 17:22:38 +01:00
|
|
|
|
2013-06-14 11:09:41 +02:00
|
|
|
/* Fetch boot time if we haven't already. */
|
|
|
|
if (!stodi.BootTime.QuadPart)
|
|
|
|
NtQuerySystemInformation (SystemTimeOfDayInformation,
|
|
|
|
&stodi, sizeof stodi, NULL);
|
|
|
|
|
|
|
|
NtQueryInformationProcess (NtCurrentProcess (), ProcessTimes,
|
|
|
|
&kut, sizeof kut, NULL);
|
2013-06-14 17:41:17 +02:00
|
|
|
get_system_time (&ticks);
|
2013-06-14 11:09:41 +02:00
|
|
|
|
|
|
|
/* uptime */
|
|
|
|
ticks.QuadPart -= stodi.BootTime.QuadPart;
|
|
|
|
/* ticks is in in 100ns, convert to clock ticks. */
|
|
|
|
clock_t tc = (clock_t) (ticks.QuadPart * CLOCKS_PER_SEC / NSPERSEC);
|
2007-02-22 17:22:38 +01:00
|
|
|
|
2013-06-14 11:09:41 +02:00
|
|
|
buf->tms_stime = __to_clock_t (&kut.KernelTime, 0);
|
|
|
|
buf->tms_utime = __to_clock_t (&kut.UserTime, 0);
|
|
|
|
timeval_to_filetime (&myself->rusage_children.ru_stime, &kut.KernelTime);
|
|
|
|
buf->tms_cstime = __to_clock_t (&kut.KernelTime, 1);
|
|
|
|
timeval_to_filetime (&myself->rusage_children.ru_utime, &kut.UserTime);
|
|
|
|
buf->tms_cutime = __to_clock_t (&kut.UserTime, 1);
|
2007-02-22 17:22:38 +01:00
|
|
|
|
2013-06-17 10:33:41 +02:00
|
|
|
syscall_printf ("%D = times(%p)", tc, buf);
|
2007-02-22 17:22:38 +01:00
|
|
|
return tc;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2004-09-10 10:30:51 +02:00
|
|
|
EXPORT_ALIAS (times, _times)
|
2002-10-21 03:00:58 +02:00
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* settimeofday: BSD */
|
|
|
|
extern "C" int
|
2001-02-26 23:36:09 +01:00
|
|
|
settimeofday (const struct timeval *tv, const struct timezone *tz)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2001-02-26 23:36:09 +01:00
|
|
|
SYSTEMTIME st;
|
|
|
|
struct tm *ptm;
|
|
|
|
int res;
|
|
|
|
|
2011-05-09 10:57:46 +02:00
|
|
|
myfault efault;
|
|
|
|
if (efault.faulted (EFAULT))
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (tv->tv_usec < 0 || tv->tv_usec >= 1000000)
|
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
2001-02-26 23:36:09 +01:00
|
|
|
|
2002-09-22 05:38:57 +02:00
|
|
|
ptm = gmtime (&tv->tv_sec);
|
2001-09-07 23:32:07 +02:00
|
|
|
st.wYear = ptm->tm_year + 1900;
|
|
|
|
st.wMonth = ptm->tm_mon + 1;
|
2001-02-26 23:36:09 +01:00
|
|
|
st.wDayOfWeek = ptm->tm_wday;
|
2001-09-07 23:32:07 +02:00
|
|
|
st.wDay = ptm->tm_mday;
|
|
|
|
st.wHour = ptm->tm_hour;
|
2001-02-26 23:36:09 +01:00
|
|
|
st.wMinute = ptm->tm_min;
|
|
|
|
st.wSecond = ptm->tm_sec;
|
|
|
|
st.wMilliseconds = tv->tv_usec / 1000;
|
|
|
|
|
2011-05-09 10:57:46 +02:00
|
|
|
res = -!SetSystemTime (&st);
|
2010-05-26 16:48:17 +02:00
|
|
|
gtod.reset ();
|
2001-02-26 23:36:09 +01:00
|
|
|
|
2011-12-03 22:43:27 +01:00
|
|
|
if (res)
|
2011-05-09 10:57:46 +02:00
|
|
|
set_errno (EPERM);
|
|
|
|
|
2013-04-23 11:44:36 +02:00
|
|
|
syscall_printf ("%R = settimeofday(%p, %p)", res, tv, tz);
|
2001-02-26 23:36:09 +01:00
|
|
|
return res;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* timezone: standards? */
|
|
|
|
extern "C" char *
|
2005-11-18 16:57:16 +01:00
|
|
|
timezone (void)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2003-12-23 17:26:31 +01:00
|
|
|
char *b = _my_tls.locals.timezone_buf;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2002-09-22 05:38:57 +02:00
|
|
|
tzset ();
|
|
|
|
__small_sprintf (b,"GMT%+d:%02d", (int) (-_timezone / 3600), (int) (abs (_timezone / 60) % 60));
|
2000-02-17 20:38:33 +01:00
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Cygwin internal */
|
|
|
|
void __stdcall
|
2013-06-14 11:09:41 +02:00
|
|
|
totimeval (struct timeval *dst, PLARGE_INTEGER src, int sub, int flag)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2013-06-14 11:09:41 +02:00
|
|
|
int64_t x = __to_clock_t (src, flag);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2013-06-14 11:09:41 +02:00
|
|
|
x *= (int64_t) 1000000 / CLOCKS_PER_SEC; /* Turn x into usecs */
|
|
|
|
x -= (int64_t) sub * 1000000;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2013-06-14 11:09:41 +02:00
|
|
|
dst->tv_usec = x % 1000000; /* And split */
|
|
|
|
dst->tv_sec = x / 1000000;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2002-02-15 08:05:05 +01:00
|
|
|
/* FIXME: Make thread safe */
|
2000-02-17 20:38:33 +01:00
|
|
|
extern "C" int
|
2013-11-25 12:38:08 +01:00
|
|
|
gettimeofday (struct timeval *__restrict tv, void *__restrict tzvp)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2007-07-06 22:09:23 +02:00
|
|
|
struct timezone *tz = (struct timezone *) tzvp;
|
2002-03-28 06:20:53 +01:00
|
|
|
static bool tzflag;
|
2005-11-11 17:42:15 +01:00
|
|
|
LONGLONG now = gtod.usecs ();
|
2005-11-03 03:41:51 +01:00
|
|
|
|
2002-02-15 08:05:05 +01:00
|
|
|
if (now == (LONGLONG) -1)
|
|
|
|
return -1;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2002-02-15 08:05:05 +01:00
|
|
|
tv->tv_sec = now / 1000000;
|
|
|
|
tv->tv_usec = now % 1000000;
|
2002-03-28 05:56:06 +01:00
|
|
|
|
|
|
|
if (tz != NULL)
|
|
|
|
{
|
2002-05-12 03:50:38 +02:00
|
|
|
if (!tzflag)
|
|
|
|
{
|
2002-09-22 05:38:57 +02:00
|
|
|
tzset ();
|
2002-05-12 03:50:38 +02:00
|
|
|
tzflag = true;
|
|
|
|
}
|
2002-03-28 05:56:06 +01:00
|
|
|
tz->tz_minuteswest = _timezone / 60;
|
|
|
|
tz->tz_dsttime = _daylight;
|
|
|
|
}
|
|
|
|
|
2002-02-15 08:05:05 +01:00
|
|
|
return 0;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2004-09-10 10:30:51 +02:00
|
|
|
EXPORT_ALIAS (gettimeofday, _gettimeofday)
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2008-04-24 11:59:54 +02:00
|
|
|
/* Cygwin internal */
|
|
|
|
void __stdcall
|
2013-06-14 11:09:41 +02:00
|
|
|
timespec_to_filetime (const struct timespec *time_in, PLARGE_INTEGER out)
|
2008-04-24 11:59:54 +02:00
|
|
|
{
|
|
|
|
if (time_in->tv_nsec == UTIME_OMIT)
|
2013-06-14 11:09:41 +02:00
|
|
|
out->QuadPart = 0;
|
2008-04-24 11:59:54 +02:00
|
|
|
else
|
2013-06-14 11:09:41 +02:00
|
|
|
out->QuadPart = time_in->tv_sec * NSPERSEC
|
|
|
|
+ time_in->tv_nsec / (1000000000/NSPERSEC) + FACTOR;
|
2008-04-24 11:59:54 +02:00
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Cygwin internal */
|
2005-02-20 12:44:32 +01:00
|
|
|
void __stdcall
|
2013-06-14 11:09:41 +02:00
|
|
|
timeval_to_filetime (const struct timeval *time_in, PLARGE_INTEGER out)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2013-06-14 11:09:41 +02:00
|
|
|
out->QuadPart = time_in->tv_sec * NSPERSEC
|
|
|
|
+ time_in->tv_usec * (NSPERSEC/1000000) + FACTOR;
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Cygwin internal */
|
|
|
|
static timeval __stdcall
|
|
|
|
time_t_to_timeval (time_t in)
|
|
|
|
{
|
|
|
|
timeval res;
|
|
|
|
res.tv_sec = in;
|
|
|
|
res.tv_usec = 0;
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2008-04-24 11:59:54 +02:00
|
|
|
/* Cygwin internal */
|
|
|
|
static const struct timespec *
|
|
|
|
timeval_to_timespec (const struct timeval *tvp, struct timespec *tmp)
|
|
|
|
{
|
|
|
|
if (!tvp)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
tmp[0].tv_sec = tvp[0].tv_sec;
|
|
|
|
tmp[0].tv_nsec = tvp[0].tv_usec * 1000;
|
|
|
|
if (tmp[0].tv_nsec < 0)
|
|
|
|
tmp[0].tv_nsec = 0;
|
|
|
|
else if (tmp[0].tv_nsec > 999999999)
|
|
|
|
tmp[0].tv_nsec = 999999999;
|
|
|
|
|
|
|
|
tmp[1].tv_sec = tvp[1].tv_sec;
|
|
|
|
tmp[1].tv_nsec = tvp[1].tv_usec * 1000;
|
|
|
|
if (tmp[1].tv_nsec < 0)
|
|
|
|
tmp[1].tv_nsec = 0;
|
|
|
|
else if (tmp[1].tv_nsec > 999999999)
|
|
|
|
tmp[1].tv_nsec = 999999999;
|
|
|
|
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Cygwin internal */
|
|
|
|
/* Convert a Win32 time to "UNIX" format. */
|
2013-06-14 11:09:41 +02:00
|
|
|
time_t __stdcall
|
|
|
|
to_time_t (PLARGE_INTEGER ptr)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
/* A file time is the number of 100ns since jan 1 1601
|
|
|
|
stuffed into two long words.
|
|
|
|
A time_t is the number of seconds since jan 1 1970. */
|
|
|
|
|
2013-06-14 11:09:41 +02:00
|
|
|
int64_t x = ptr->QuadPart;
|
2000-10-20 23:45:50 +02:00
|
|
|
|
|
|
|
/* pass "no time" as epoch */
|
|
|
|
if (x == 0)
|
|
|
|
return 0;
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
x -= FACTOR; /* number of 100ns between 1601 and 1970 */
|
2013-06-14 11:09:41 +02:00
|
|
|
x /= NSPERSEC; /* number of 100ns in a second */
|
2000-02-17 20:38:33 +01:00
|
|
|
return x;
|
|
|
|
}
|
|
|
|
|
2002-06-06 17:35:09 +02:00
|
|
|
/* Cygwin internal */
|
|
|
|
/* Convert a Win32 time to "UNIX" timestruc_t format. */
|
|
|
|
void __stdcall
|
2013-06-14 11:09:41 +02:00
|
|
|
to_timestruc_t (PLARGE_INTEGER ptr, timestruc_t *out)
|
2002-06-06 17:35:09 +02:00
|
|
|
{
|
|
|
|
/* A file time is the number of 100ns since jan 1 1601
|
|
|
|
stuffed into two long words.
|
|
|
|
A timestruc_t is the number of seconds and microseconds since jan 1 1970
|
|
|
|
stuffed into a time_t and a long. */
|
|
|
|
|
2013-06-14 11:09:41 +02:00
|
|
|
int64_t rem;
|
|
|
|
int64_t x = ptr->QuadPart;
|
2002-06-06 17:35:09 +02:00
|
|
|
|
|
|
|
/* pass "no time" as epoch */
|
|
|
|
if (x == 0)
|
|
|
|
{
|
|
|
|
out->tv_sec = 0;
|
|
|
|
out->tv_nsec = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
x -= FACTOR; /* number of 100ns between 1601 and 1970 */
|
2013-06-14 11:09:41 +02:00
|
|
|
rem = x % NSPERSEC;
|
|
|
|
x /= NSPERSEC; /* number of 100ns in a second */
|
2002-06-06 17:35:09 +02:00
|
|
|
out->tv_nsec = rem * 100; /* as tv_nsec is in nanoseconds */
|
|
|
|
out->tv_sec = x;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Cygwin internal */
|
|
|
|
/* Get the current time as a "UNIX" timestruc_t format. */
|
|
|
|
void __stdcall
|
|
|
|
time_as_timestruc_t (timestruc_t * out)
|
|
|
|
{
|
2013-06-14 11:09:41 +02:00
|
|
|
LARGE_INTEGER systime;
|
2002-06-06 17:35:09 +02:00
|
|
|
|
2013-06-14 17:41:17 +02:00
|
|
|
get_system_time (&systime);
|
2013-06-14 11:09:41 +02:00
|
|
|
to_timestruc_t (&systime, out);
|
2002-06-06 17:35:09 +02:00
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* time: POSIX 4.5.1.1, C 4.12.2.4 */
|
|
|
|
/* Return number of seconds since 00:00 UTC on jan 1, 1970 */
|
2002-10-21 03:00:58 +02:00
|
|
|
extern "C" time_t
|
2000-02-17 20:38:33 +01:00
|
|
|
time (time_t * ptr)
|
|
|
|
{
|
|
|
|
time_t res;
|
2013-06-14 11:09:41 +02:00
|
|
|
LARGE_INTEGER systime;
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2013-06-14 17:41:17 +02:00
|
|
|
get_system_time (&systime);
|
2013-06-14 11:09:41 +02:00
|
|
|
res = to_time_t (&systime);
|
2000-02-17 20:38:33 +01:00
|
|
|
if (ptr)
|
|
|
|
*ptr = res;
|
|
|
|
|
2013-04-23 11:44:36 +02:00
|
|
|
syscall_printf ("%d = time(%p)", res, ptr);
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2008-04-24 11:59:54 +02:00
|
|
|
int
|
|
|
|
utimens_worker (path_conv &win32, const struct timespec *tvp)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2005-02-20 12:44:32 +01:00
|
|
|
int res = -1;
|
2005-10-24 01:47:45 +02:00
|
|
|
|
|
|
|
if (win32.error)
|
|
|
|
set_errno (win32.error);
|
|
|
|
else
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2005-10-24 01:47:45 +02:00
|
|
|
fhandler_base *fh = NULL;
|
|
|
|
bool fromfd = false;
|
|
|
|
|
2005-10-24 17:09:07 +02:00
|
|
|
cygheap_fdenum cfd (true);
|
2005-10-24 01:47:45 +02:00
|
|
|
while (cfd.next () >= 0)
|
|
|
|
if (cfd->get_access () & (FILE_WRITE_ATTRIBUTES | GENERIC_WRITE)
|
2007-08-14 16:48:52 +02:00
|
|
|
&& RtlEqualUnicodeString (cfd->pc.get_nt_native_path (),
|
|
|
|
win32.get_nt_native_path (),
|
2008-07-16 22:20:45 +02:00
|
|
|
cfd->pc.objcaseinsensitive ()))
|
2005-10-24 01:47:45 +02:00
|
|
|
{
|
|
|
|
fh = cfd;
|
|
|
|
fromfd = true;
|
|
|
|
break;
|
|
|
|
}
|
2005-10-19 18:50:43 +02:00
|
|
|
|
2005-10-24 01:47:45 +02:00
|
|
|
if (!fh)
|
|
|
|
{
|
|
|
|
if (!(fh = build_fh_pc (win32)))
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
if (fh->error ())
|
|
|
|
{
|
2010-01-12 11:14:59 +01:00
|
|
|
debug_printf ("got %d error from build_fh_pc", fh->error ());
|
2005-10-24 01:47:45 +02:00
|
|
|
set_errno (fh->error ());
|
2007-08-14 16:48:52 +02:00
|
|
|
}
|
2005-10-24 01:47:45 +02:00
|
|
|
}
|
2005-10-19 18:50:43 +02:00
|
|
|
|
2008-04-24 11:59:54 +02:00
|
|
|
res = fh->utimens (tvp);
|
2005-10-24 01:47:45 +02:00
|
|
|
|
|
|
|
if (!fromfd)
|
|
|
|
delete fh;
|
|
|
|
}
|
2000-02-17 20:38:33 +01:00
|
|
|
|
2005-10-19 18:50:43 +02:00
|
|
|
error:
|
2011-12-03 22:43:27 +01:00
|
|
|
syscall_printf ("%R = utimes(%S, %p)", res, win32.get_nt_native_path (), tvp);
|
2000-02-17 20:38:33 +01:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2005-10-20 16:26:23 +02:00
|
|
|
/* utimes: POSIX/SUSv3 */
|
|
|
|
extern "C" int
|
|
|
|
utimes (const char *path, const struct timeval *tvp)
|
|
|
|
{
|
2007-08-14 16:48:52 +02:00
|
|
|
path_conv win32 (path, PC_POSIX | PC_SYM_FOLLOW, stat_suffixes);
|
2008-04-24 11:59:54 +02:00
|
|
|
struct timespec tmp[2];
|
|
|
|
return utimens_worker (win32, timeval_to_timespec (tvp, tmp));
|
2005-10-20 16:26:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* BSD */
|
|
|
|
extern "C" int
|
|
|
|
lutimes (const char *path, const struct timeval *tvp)
|
|
|
|
{
|
2007-08-14 16:48:52 +02:00
|
|
|
path_conv win32 (path, PC_POSIX | PC_SYM_NOFOLLOW, stat_suffixes);
|
2008-04-24 11:59:54 +02:00
|
|
|
struct timespec tmp[2];
|
|
|
|
return utimens_worker (win32, timeval_to_timespec (tvp, tmp));
|
2005-10-20 16:26:23 +02:00
|
|
|
}
|
|
|
|
|
2008-04-24 11:59:54 +02:00
|
|
|
/* futimens: POSIX/SUSv4 */
|
2005-10-20 16:26:23 +02:00
|
|
|
extern "C" int
|
2008-04-24 11:59:54 +02:00
|
|
|
futimens (int fd, const struct timespec *tvp)
|
2005-10-20 16:26:23 +02:00
|
|
|
{
|
|
|
|
int res;
|
|
|
|
|
|
|
|
cygheap_fdget cfd (fd);
|
|
|
|
if (cfd < 0)
|
|
|
|
res = -1;
|
2005-11-07 18:08:08 +01:00
|
|
|
else if (cfd->get_access () & (FILE_WRITE_ATTRIBUTES | GENERIC_WRITE))
|
2008-04-24 11:59:54 +02:00
|
|
|
res = cfd->utimens (tvp);
|
2005-11-07 18:08:08 +01:00
|
|
|
else
|
2008-04-24 11:59:54 +02:00
|
|
|
res = utimens_worker (cfd->pc, tvp);
|
2011-12-03 22:43:27 +01:00
|
|
|
syscall_printf ("%d = futimens(%d, %p)", res, fd, tvp);
|
2005-10-20 16:26:23 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2008-04-24 11:59:54 +02:00
|
|
|
/* BSD */
|
|
|
|
extern "C" int
|
|
|
|
futimes (int fd, const struct timeval *tvp)
|
|
|
|
{
|
|
|
|
struct timespec tmp[2];
|
|
|
|
return futimens (fd, timeval_to_timespec (tvp, tmp));
|
|
|
|
}
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* utime: POSIX 5.6.6.1 */
|
2002-10-21 03:00:58 +02:00
|
|
|
extern "C" int
|
2005-02-08 21:59:41 +01:00
|
|
|
utime (const char *path, const struct utimbuf *buf)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
struct timeval tmp[2];
|
|
|
|
|
|
|
|
if (buf == 0)
|
|
|
|
return utimes (path, 0);
|
|
|
|
|
2013-04-23 11:44:36 +02:00
|
|
|
debug_printf ("incoming utime act %lx", buf->actime);
|
2000-02-17 20:38:33 +01:00
|
|
|
tmp[0] = time_t_to_timeval (buf->actime);
|
|
|
|
tmp[1] = time_t_to_timeval (buf->modtime);
|
|
|
|
|
|
|
|
return utimes (path, tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ftime: standards? */
|
2002-10-21 03:00:58 +02:00
|
|
|
extern "C" int
|
2000-02-17 20:38:33 +01:00
|
|
|
ftime (struct timeb *tp)
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
struct timezone tz;
|
|
|
|
|
|
|
|
if (gettimeofday (&tv, &tz) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
tp->time = tv.tv_sec;
|
|
|
|
tp->millitm = tv.tv_usec / 1000;
|
|
|
|
tp->timezone = tz.tz_minuteswest;
|
|
|
|
tp->dstflag = tz.tz_dsttime;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-11-04 03:01:45 +01:00
|
|
|
#define stupid_printf if (cygwin_finished_initializing) debug_printf
|
2002-02-15 08:05:05 +01:00
|
|
|
void
|
2010-08-09 18:47:48 +02:00
|
|
|
hires_ns::prime ()
|
2002-02-15 08:05:05 +01:00
|
|
|
{
|
|
|
|
LARGE_INTEGER ifreq;
|
|
|
|
if (!QueryPerformanceFrequency (&ifreq))
|
|
|
|
{
|
|
|
|
inited = -1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int priority = GetThreadPriority (GetCurrentThread ());
|
2005-11-03 03:41:51 +01:00
|
|
|
|
2002-02-15 08:05:05 +01:00
|
|
|
SetThreadPriority (GetCurrentThread (), THREAD_PRIORITY_TIME_CRITICAL);
|
|
|
|
if (!QueryPerformanceCounter (&primed_pc))
|
|
|
|
{
|
2002-02-17 05:59:55 +01:00
|
|
|
SetThreadPriority (GetCurrentThread (), priority);
|
2002-02-15 08:05:05 +01:00
|
|
|
inited = -1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-08-09 18:47:48 +02:00
|
|
|
freq = (double) ((double) 1000000000. / (double) ifreq.QuadPart);
|
2005-12-07 23:28:49 +01:00
|
|
|
inited = true;
|
|
|
|
SetThreadPriority (GetCurrentThread (), priority);
|
2002-02-15 08:05:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
LONGLONG
|
2013-04-11 21:49:58 +02:00
|
|
|
hires_ns::nsecs (bool monotonic)
|
2002-02-15 08:05:05 +01:00
|
|
|
{
|
|
|
|
if (!inited)
|
|
|
|
prime ();
|
|
|
|
if (inited < 0)
|
|
|
|
{
|
|
|
|
set_errno (ENOSYS);
|
2013-06-14 11:09:41 +02:00
|
|
|
return (LONGLONG) -1;
|
2002-02-15 08:05:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
LARGE_INTEGER now;
|
|
|
|
if (!QueryPerformanceCounter (&now))
|
|
|
|
{
|
|
|
|
set_errno (ENOSYS);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Use round() here?
|
2013-04-11 21:49:58 +02:00
|
|
|
now.QuadPart = (LONGLONG) (freq * (double)
|
2013-04-23 11:44:36 +02:00
|
|
|
(now.QuadPart - (monotonic ? 0LL : primed_pc.QuadPart)));
|
2010-08-09 18:47:48 +02:00
|
|
|
return now.QuadPart;
|
2002-02-15 08:05:05 +01:00
|
|
|
}
|
2002-06-07 05:44:33 +02:00
|
|
|
|
|
|
|
LONGLONG
|
2009-10-13 04:26:33 +02:00
|
|
|
hires_ms::nsecs ()
|
2002-06-07 05:44:33 +02:00
|
|
|
{
|
2013-06-14 11:09:41 +02:00
|
|
|
LARGE_INTEGER systime;
|
2013-06-14 17:41:17 +02:00
|
|
|
get_system_time (&systime);
|
2013-06-14 11:09:41 +02:00
|
|
|
/* Add conversion factor for UNIX vs. Windows base time */
|
|
|
|
return systime.QuadPart - FACTOR;
|
2002-06-07 05:44:33 +02:00
|
|
|
}
|
2004-01-19 06:46:54 +01:00
|
|
|
|
|
|
|
extern "C" int
|
|
|
|
clock_gettime (clockid_t clk_id, struct timespec *tp)
|
|
|
|
{
|
2011-05-17 19:08:10 +02:00
|
|
|
if (CLOCKID_IS_PROCESS (clk_id))
|
|
|
|
{
|
|
|
|
pid_t pid = CLOCKID_TO_PID (clk_id);
|
|
|
|
HANDLE hProcess;
|
|
|
|
KERNEL_USER_TIMES kut;
|
2013-06-14 11:09:41 +02:00
|
|
|
int64_t x;
|
2011-05-17 19:08:10 +02:00
|
|
|
|
|
|
|
if (pid == 0)
|
2011-06-06 07:02:13 +02:00
|
|
|
pid = getpid ();
|
2011-05-17 19:08:10 +02:00
|
|
|
|
|
|
|
pinfo p (pid);
|
|
|
|
if (!p->exists ())
|
2011-06-06 07:02:13 +02:00
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
2011-05-17 19:08:10 +02:00
|
|
|
|
|
|
|
hProcess = OpenProcess (PROCESS_QUERY_INFORMATION, 0, p->dwProcessId);
|
2013-06-14 11:09:41 +02:00
|
|
|
NtQueryInformationProcess (hProcess, ProcessTimes,
|
|
|
|
&kut, sizeof kut, NULL);
|
2011-05-17 19:08:10 +02:00
|
|
|
|
|
|
|
x = kut.KernelTime.QuadPart + kut.UserTime.QuadPart;
|
2013-06-14 11:09:41 +02:00
|
|
|
tp->tv_sec = x / NSPERSEC;
|
|
|
|
tp->tv_nsec = (x % NSPERSEC) * 100LL;
|
2011-05-17 19:08:10 +02:00
|
|
|
|
|
|
|
CloseHandle (hProcess);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (CLOCKID_IS_THREAD (clk_id))
|
|
|
|
{
|
|
|
|
long thr_id = CLOCKID_TO_THREADID (clk_id);
|
|
|
|
HANDLE hThread;
|
|
|
|
KERNEL_USER_TIMES kut;
|
2013-06-14 11:09:41 +02:00
|
|
|
int64_t x;
|
2011-05-17 19:08:10 +02:00
|
|
|
|
|
|
|
if (thr_id == 0)
|
2011-06-06 07:02:13 +02:00
|
|
|
thr_id = pthread::self ()->getsequence_np ();
|
2011-05-17 19:08:10 +02:00
|
|
|
|
|
|
|
hThread = OpenThread (THREAD_QUERY_INFORMATION, 0, thr_id);
|
|
|
|
if (!hThread)
|
2011-06-06 07:02:13 +02:00
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
2011-05-17 19:08:10 +02:00
|
|
|
|
2013-06-14 11:09:41 +02:00
|
|
|
NtQueryInformationThread (hThread, ThreadTimes,
|
|
|
|
&kut, sizeof kut, NULL);
|
2011-05-17 19:08:10 +02:00
|
|
|
|
|
|
|
x = kut.KernelTime.QuadPart + kut.UserTime.QuadPart;
|
2013-06-14 11:09:41 +02:00
|
|
|
tp->tv_sec = x / NSPERSEC;
|
|
|
|
tp->tv_nsec = (x % NSPERSEC) * 100LL;
|
2011-05-17 19:08:10 +02:00
|
|
|
|
|
|
|
CloseHandle (hThread);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-08-09 18:47:48 +02:00
|
|
|
switch (clk_id)
|
2004-01-19 06:46:54 +01:00
|
|
|
{
|
2010-08-09 18:47:48 +02:00
|
|
|
case CLOCK_REALTIME:
|
2011-06-06 07:02:13 +02:00
|
|
|
{
|
|
|
|
LONGLONG now = gtod.nsecs ();
|
|
|
|
if (now == (LONGLONG) -1)
|
|
|
|
return -1;
|
|
|
|
tp->tv_sec = now / NSPERSEC;
|
|
|
|
tp->tv_nsec = (now % NSPERSEC) * (1000000000 / NSPERSEC);
|
|
|
|
break;
|
|
|
|
}
|
2010-08-09 18:47:48 +02:00
|
|
|
|
|
|
|
case CLOCK_MONOTONIC:
|
2011-06-06 07:02:13 +02:00
|
|
|
{
|
2013-04-11 21:49:58 +02:00
|
|
|
LONGLONG now = ntod.nsecs (true);
|
2011-06-06 07:02:13 +02:00
|
|
|
if (now == (LONGLONG) -1)
|
|
|
|
return -1;
|
2010-08-09 18:47:48 +02:00
|
|
|
|
2011-06-06 07:02:13 +02:00
|
|
|
tp->tv_sec = now / 1000000000;
|
|
|
|
tp->tv_nsec = (now % 1000000000);
|
|
|
|
break;
|
|
|
|
}
|
2010-08-09 18:47:48 +02:00
|
|
|
|
|
|
|
default:
|
2011-06-06 07:02:13 +02:00
|
|
|
set_errno (EINVAL);
|
|
|
|
return -1;
|
2004-01-19 06:46:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2005-11-11 17:42:15 +01:00
|
|
|
|
2011-05-09 10:57:46 +02:00
|
|
|
extern "C" int
|
|
|
|
clock_settime (clockid_t clk_id, const struct timespec *tp)
|
|
|
|
{
|
|
|
|
struct timeval tv;
|
|
|
|
|
2011-05-17 19:08:10 +02:00
|
|
|
if (CLOCKID_IS_PROCESS (clk_id) || CLOCKID_IS_THREAD (clk_id))
|
|
|
|
/* According to POSIX, the privileges to set a particular clock
|
|
|
|
* are implementation-defined. On Linux, CPU-time clocks are not
|
|
|
|
* settable; do the same here.
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
set_errno (EPERM);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-05-09 10:57:46 +02:00
|
|
|
if (clk_id != CLOCK_REALTIME)
|
|
|
|
{
|
|
|
|
set_errno (EINVAL);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
tv.tv_sec = tp->tv_sec;
|
|
|
|
tv.tv_usec = tp->tv_nsec / 1000;
|
|
|
|
|
|
|
|
return settimeofday (&tv, NULL);
|
|
|
|
}
|
|
|
|
|
2013-06-14 11:09:41 +02:00
|
|
|
static ULONG minperiod; // FIXME: Maintain period after a fork.
|
2005-11-11 17:42:15 +01:00
|
|
|
|
2010-08-09 18:47:48 +02:00
|
|
|
LONGLONG
|
2011-03-29 12:21:30 +02:00
|
|
|
hires_ns::resolution ()
|
2010-08-09 18:47:48 +02:00
|
|
|
{
|
|
|
|
if (!inited)
|
|
|
|
prime ();
|
|
|
|
if (inited < 0)
|
|
|
|
{
|
|
|
|
set_errno (ENOSYS);
|
2013-06-14 11:09:41 +02:00
|
|
|
return (LONGLONG) -1;
|
2010-08-09 18:47:48 +02:00
|
|
|
}
|
|
|
|
|
2011-12-13 12:38:12 +01:00
|
|
|
return (freq <= 1.0) ? 1LL : (LONGLONG) freq;
|
2010-08-09 18:47:48 +02:00
|
|
|
}
|
|
|
|
|
2005-11-11 17:42:15 +01:00
|
|
|
UINT
|
|
|
|
hires_ms::resolution ()
|
|
|
|
{
|
|
|
|
if (!minperiod)
|
|
|
|
{
|
2011-03-29 12:21:30 +02:00
|
|
|
ULONG coarsest, finest, actual;
|
|
|
|
|
2013-06-14 11:09:41 +02:00
|
|
|
NtQueryTimerResolution (&coarsest, &finest, &actual);
|
|
|
|
/* The actual resolution of the OS timer is a system-wide setting which
|
|
|
|
can be changed any time, by any process. The only fixed value we
|
|
|
|
can rely on is the coarsest value. */
|
|
|
|
minperiod = coarsest;
|
2005-11-11 17:42:15 +01:00
|
|
|
}
|
|
|
|
return minperiod;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" int
|
|
|
|
clock_getres (clockid_t clk_id, struct timespec *tp)
|
|
|
|
{
|
2011-05-17 19:08:10 +02:00
|
|
|
if (CLOCKID_IS_PROCESS (clk_id) || CLOCKID_IS_THREAD (clk_id))
|
|
|
|
{
|
|
|
|
ULONG coarsest, finest, actual;
|
|
|
|
|
|
|
|
NtQueryTimerResolution (&coarsest, &finest, &actual);
|
|
|
|
tp->tv_sec = coarsest / NSPERSEC;
|
|
|
|
tp->tv_nsec = (coarsest % NSPERSEC) * 100;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-08-09 18:47:48 +02:00
|
|
|
switch (clk_id)
|
2005-11-11 17:42:15 +01:00
|
|
|
{
|
2010-08-09 18:47:48 +02:00
|
|
|
case CLOCK_REALTIME:
|
2011-06-06 07:02:13 +02:00
|
|
|
{
|
|
|
|
DWORD period = gtod.resolution ();
|
2011-08-03 18:40:48 +02:00
|
|
|
tp->tv_sec = period / NSPERSEC;
|
|
|
|
tp->tv_nsec = (period % NSPERSEC) * 100;
|
2011-06-06 07:02:13 +02:00
|
|
|
break;
|
|
|
|
}
|
2010-08-09 18:47:48 +02:00
|
|
|
|
|
|
|
case CLOCK_MONOTONIC:
|
2011-06-06 07:02:13 +02:00
|
|
|
{
|
|
|
|
LONGLONG period = ntod.resolution ();
|
|
|
|
tp->tv_sec = period / 1000000000;
|
|
|
|
tp->tv_nsec = period % 1000000000;
|
|
|
|
break;
|
|
|
|
}
|
2010-08-09 18:47:48 +02:00
|
|
|
|
|
|
|
default:
|
2011-06-06 07:02:13 +02:00
|
|
|
set_errno (EINVAL);
|
|
|
|
return -1;
|
2005-11-11 17:42:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" int
|
|
|
|
clock_setres (clockid_t clk_id, struct timespec *tp)
|
|
|
|
{
|
|
|
|
static NO_COPY bool period_set;
|
2011-03-29 12:21:30 +02:00
|
|
|
int status;
|
|
|
|
|
2005-11-11 17:42:15 +01:00
|
|
|
if (clk_id != CLOCK_REALTIME)
|
|
|
|
{
|
2010-08-09 18:47:48 +02:00
|
|
|
set_errno (EINVAL);
|
2005-11-11 17:42:15 +01:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-03-29 12:21:30 +02:00
|
|
|
/* Convert to 100ns to match OS resolution. The OS uses ULONG values
|
|
|
|
to express resolution in 100ns units, so the coarsest timer resolution
|
|
|
|
is < 430 secs. Actually the coarsest timer resolution is only slightly
|
|
|
|
beyond 15ms, but this might change in future OS versions, so we play nice
|
|
|
|
here. */
|
|
|
|
ULONGLONG period = (tp->tv_sec * 10000000ULL) + ((tp->tv_nsec) / 100ULL);
|
|
|
|
|
|
|
|
/* clock_setres is non-POSIX/non-Linux. On QNX, the function always
|
|
|
|
rounds the incoming value to the nearest supported value. */
|
|
|
|
ULONG coarsest, finest, actual;
|
|
|
|
if (NT_SUCCESS (NtQueryTimerResolution (&coarsest, &finest, &actual)))
|
2005-11-11 17:42:15 +01:00
|
|
|
{
|
2011-03-29 12:21:30 +02:00
|
|
|
if (period > coarsest)
|
|
|
|
period = coarsest;
|
|
|
|
else if (finest > period)
|
|
|
|
period = finest;
|
2005-11-11 17:42:15 +01:00
|
|
|
}
|
2011-03-29 12:21:30 +02:00
|
|
|
|
|
|
|
if (period_set
|
2011-08-03 18:40:48 +02:00
|
|
|
&& NT_SUCCESS (NtSetTimerResolution (minperiod, FALSE, &actual)))
|
2011-03-29 12:21:30 +02:00
|
|
|
period_set = false;
|
|
|
|
|
|
|
|
status = NtSetTimerResolution (period, TRUE, &actual);
|
|
|
|
if (!NT_SUCCESS (status))
|
2005-11-11 17:42:15 +01:00
|
|
|
{
|
2011-03-29 12:21:30 +02:00
|
|
|
__seterrno_from_nt_status (status);
|
2005-11-11 17:42:15 +01:00
|
|
|
return -1;
|
|
|
|
}
|
2012-03-28 09:38:35 +02:00
|
|
|
minperiod = period;
|
2011-03-29 12:21:30 +02:00
|
|
|
period_set = true;
|
2005-11-11 17:42:15 +01:00
|
|
|
return 0;
|
|
|
|
}
|
2011-05-17 19:08:10 +02:00
|
|
|
|
|
|
|
extern "C" int
|
|
|
|
clock_getcpuclockid (pid_t pid, clockid_t *clk_id)
|
|
|
|
{
|
|
|
|
if (pid != 0 && !pinfo (pid)->exists ())
|
|
|
|
return (ESRCH);
|
|
|
|
*clk_id = (clockid_t) PID_TO_CLOCKID (pid);
|
|
|
|
return 0;
|
|
|
|
}
|