mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Update.
2003-09-17 Ulrich Drepper <drepper@redhat.com> * sysdeps/posix/utimes.c (__utimes): Truncate instead of round. * sysdeps/unix/sysv/linux/utimes.c (__utimes): Likewise.
This commit is contained in:
@ -1,3 +1,8 @@
|
||||
2003-09-17 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* sysdeps/posix/utimes.c (__utimes): Truncate instead of round.
|
||||
* sysdeps/unix/sysv/linux/utimes.c (__utimes): Likewise.
|
||||
|
||||
2003-09-15 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* sysdeps/i386/Makefile (sysdep-CFLAGS): If not in math or csu
|
||||
|
@ -1,3 +1,9 @@
|
||||
2003-09-15 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* sysdeps/i386/Makefile (CFLAGS-cancel.c, CFLAGS-manager.c,
|
||||
CFLAGS-pthread.c, CFLAGS-sighandler.c): Add
|
||||
-mpreferred-stack-boundary=4.
|
||||
|
||||
2003-09-16 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* attr.c (pthread_getattr_np): Correctly fill in the stack-related
|
||||
|
@ -6,15 +6,15 @@ CFLAGS-pt-initfini.s += -march=i386 -mcpu=i386
|
||||
# Most files must not be compiled without frame pointer since we need
|
||||
# the frame base address which is stored in %ebp unless the frame pointer
|
||||
# is optimized out.
|
||||
CFLAGS-cancel.c += -fno-omit-frame-pointer
|
||||
CFLAGS-cancel.c += -fno-omit-frame-pointer -mpreferred-stack-boundary=4
|
||||
CFLAGS-condvar.c += -fno-omit-frame-pointer
|
||||
CFLAGS-join.c += -fno-omit-frame-pointer
|
||||
CFLAGS-manager.c += -fno-omit-frame-pointer
|
||||
CFLAGS-manager.c += -fno-omit-frame-pointer -mpreferred-stack-boundary=4
|
||||
CFLAGS-oldsemaphore.c += -fno-omit-frame-pointer
|
||||
CFLAGS-pthread.c += -fno-omit-frame-pointer
|
||||
CFLAGS-pthread.c += -fno-omit-frame-pointer -mpreferred-stack-boundary=4
|
||||
CFLAGS-ptlongjmp.c += -fno-omit-frame-pointer
|
||||
CFLAGS-semaphore.c += -fno-omit-frame-pointer
|
||||
CFLAGS-sighandler.c += -fno-omit-frame-pointer
|
||||
CFLAGS-sighandler.c += -fno-omit-frame-pointer -mpreferred-stack-boundary=4
|
||||
endif
|
||||
|
||||
ifeq ($(subdir),csu)
|
||||
|
@ -11,8 +11,8 @@ comment_char %
|
||||
% Language: Lao
|
||||
% Territory: Laos
|
||||
% Charset: UTF-8
|
||||
% Revision: 1.1
|
||||
% Date: 2003-02-06
|
||||
% Revision: 1.2
|
||||
% Date: 2003-15-09
|
||||
%
|
||||
|
||||
%
|
||||
@ -283,7 +283,6 @@ UNDEFINED IGNORE;IGNORE;IGNORE;IGNORE
|
||||
<U002F> IGNORE;IGNORE;<U002F>;IGNORE % SOLIDUS
|
||||
<U002E> IGNORE;IGNORE;<U002E>;IGNORE % FULL STOP
|
||||
<U0EAF> IGNORE;IGNORE;<U0EAF>;IGNORE % Lao CHARACTER Lao Ellipse
|
||||
<U0EC6> IGNORE;IGNORE;<U0EC6>;IGNORE % Lao CHARACTER mAI ko La
|
||||
<U0060> IGNORE;IGNORE;<U0060>;IGNORE % GRAVE ACCENT
|
||||
<U005E> IGNORE;IGNORE;<U005E>;IGNORE % CIRCUMFLEX
|
||||
<U007E> IGNORE;IGNORE;<U007E>;IGNORE % TILDE
|
||||
@ -607,8 +606,6 @@ UNDEFINED IGNORE;IGNORE;IGNORE;IGNORE
|
||||
<mor-ai-maimuan> "<U0EDD><U0EC3>";<BLANK>;<BLANK>;<BLANK>
|
||||
<mor-ai-maimalai> "<U0EDD><U0EC4>";<BLANK>;<BLANK>;<BLANK>
|
||||
|
||||
<U0EAF> <U0EAF>;<BLANK>;<BLANK>;<BLANK> % Lao CHARACTER Ellipsis
|
||||
|
||||
|
||||
% order of Lao vowels
|
||||
<U0EB0> <U0EB0>;<BLANK>;<BLANK>;<BLANK> % Lao CHARACTER SAlA A
|
||||
@ -783,5 +780,3 @@ lang_ab "<U006C><U006F>"
|
||||
lang_term "<U006c><U0061><U006F>"
|
||||
lang_lib "<U006C><U0061><U006F>"
|
||||
END LC_ADDRESS
|
||||
|
||||
|
||||
|
@ -1,3 +1,8 @@
|
||||
2003-09-15 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* sysdeps/i386/Makefile (CFLAGS-pthread_create.c,
|
||||
CFLAGS-tst-align.c): Add -mpreferred-stack-boundary=4.
|
||||
|
||||
2003-09-17 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* Makefile (CFLAGS-tst-align.c): Add $(stack-align-test-flags).
|
||||
|
@ -22,4 +22,6 @@ endif
|
||||
|
||||
ifeq ($(subdir),nptl)
|
||||
CFLAGS-tst-align.c += -malign-double
|
||||
CFLAGS-pthread_create.c += -mpreferred-stack-boundary=4
|
||||
CFLAGS-tst-align.c += -mpreferred-stack-boundary=4
|
||||
endif
|
||||
|
@ -31,8 +31,8 @@ __utimes (const char *file, const struct timeval tvp[2])
|
||||
if (tvp)
|
||||
{
|
||||
times = &buf;
|
||||
buf.actime = tvp[0].tv_sec + (tvp[0].tv_usec + 500000) / 1000000;
|
||||
buf.modtime = tvp[1].tv_sec + (tvp[1].tv_usec + 500000) / 1000000;
|
||||
buf.actime = tvp[0].tv_sec + tvp[0].tv_usec / 1000000;
|
||||
buf.modtime = tvp[1].tv_sec + tvp[1].tv_usec / 1000000;
|
||||
}
|
||||
else
|
||||
times = NULL;
|
||||
|
@ -47,8 +47,8 @@ __utimes (const char *file, const struct timeval tvp[2])
|
||||
if (tvp != NULL)
|
||||
{
|
||||
times = &buf;
|
||||
buf.actime = tvp[0].tv_sec + (tvp[0].tv_usec + 500000) / 1000000;
|
||||
buf.modtime = tvp[1].tv_sec + (tvp[1].tv_usec + 500000) / 1000000;
|
||||
buf.actime = tvp[0].tv_sec + tvp[0].tv_usec / 1000000;
|
||||
buf.modtime = tvp[1].tv_sec + tvp[1].tv_usec / 1000000;
|
||||
}
|
||||
else
|
||||
times = NULL;
|
||||
|
Reference in New Issue
Block a user