* times.cc (timeval_to_filetime): Define first parameter const.
(utimes): Define second parameter to const according to SUSv3. (utime): Ditto. * include/sys/utime.h (utime) : Change declaration accordingly.
This commit is contained in:
parent
18d3a03bd4
commit
b6bddccad6
|
@ -1,3 +1,10 @@
|
||||||
|
2005-02-08 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
|
* times.cc (timeval_to_filetime): Define first parameter const.
|
||||||
|
(utimes): Define second parameter to const according to SUSv3.
|
||||||
|
(utime): Ditto.
|
||||||
|
* include/sys/utime.h (utime) : Change declaration accordingly.
|
||||||
|
|
||||||
2005-02-08 Corinna Vinschen <corinna@vinschen.de>
|
2005-02-08 Corinna Vinschen <corinna@vinschen.de>
|
||||||
|
|
||||||
* cygthread.cc (cygthread::detach): Just test thread handle after
|
* cygthread.cc (cygthread::detach): Just test thread handle after
|
||||||
|
|
|
@ -21,7 +21,7 @@ struct utimbuf
|
||||||
time_t modtime;
|
time_t modtime;
|
||||||
};
|
};
|
||||||
|
|
||||||
int _EXFUN(utime, (const char *__path, struct utimbuf *__buf));
|
int _EXFUN(utime, (const char *__path, const struct utimbuf *__buf));
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
};
|
};
|
||||||
|
|
|
@ -30,7 +30,7 @@ details. */
|
||||||
#define FACTOR (0x19db1ded53e8000LL)
|
#define FACTOR (0x19db1ded53e8000LL)
|
||||||
#define NSPERSEC 10000000LL
|
#define NSPERSEC 10000000LL
|
||||||
|
|
||||||
static void __stdcall timeval_to_filetime (timeval *time, FILETIME *out);
|
static void __stdcall timeval_to_filetime (const struct timeval *time, FILETIME *out);
|
||||||
|
|
||||||
/* Cygwin internal */
|
/* Cygwin internal */
|
||||||
static unsigned long long __stdcall
|
static unsigned long long __stdcall
|
||||||
|
@ -185,7 +185,7 @@ time_t_to_filetime (time_t time_in, FILETIME *out)
|
||||||
|
|
||||||
/* Cygwin internal */
|
/* Cygwin internal */
|
||||||
static void __stdcall
|
static void __stdcall
|
||||||
timeval_to_filetime (timeval *time_in, FILETIME *out)
|
timeval_to_filetime (const struct timeval *time_in, FILETIME *out)
|
||||||
{
|
{
|
||||||
long long x = time_in->tv_sec * NSPERSEC +
|
long long x = time_in->tv_sec * NSPERSEC +
|
||||||
time_in->tv_usec * (NSPERSEC/1000000) + FACTOR;
|
time_in->tv_usec * (NSPERSEC/1000000) + FACTOR;
|
||||||
|
@ -446,7 +446,7 @@ gmtime (const time_t *tim_p)
|
||||||
|
|
||||||
/* utimes: standards? */
|
/* utimes: standards? */
|
||||||
extern "C" int
|
extern "C" int
|
||||||
utimes (const char *path, struct timeval *tvp)
|
utimes (const char *path, const struct timeval *tvp)
|
||||||
{
|
{
|
||||||
int res = 0;
|
int res = 0;
|
||||||
struct timeval tmp[2];
|
struct timeval tmp[2];
|
||||||
|
@ -528,7 +528,7 @@ utimes (const char *path, struct timeval *tvp)
|
||||||
|
|
||||||
/* utime: POSIX 5.6.6.1 */
|
/* utime: POSIX 5.6.6.1 */
|
||||||
extern "C" int
|
extern "C" int
|
||||||
utime (const char *path, struct utimbuf *buf)
|
utime (const char *path, const struct utimbuf *buf)
|
||||||
{
|
{
|
||||||
struct timeval tmp[2];
|
struct timeval tmp[2];
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue