mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Update.
* libio/libio.h (_IO_flockfile, _IO_funlockfile): Fix typo in last patch (_mode -> _flags).
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
2000-09-01 Ulrich Drepper <drepper@redhat.com>
|
2000-09-01 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* libio/libio.h (_IO_flockfile, _IO_funlockfile): Fix typo in last
|
||||||
|
patch (_mode -> _flags).
|
||||||
|
|
||||||
* libio/Makefile (headers): Add stdio_ext.h.
|
* libio/Makefile (headers): Add stdio_ext.h.
|
||||||
(routines): Add __fbufsize, __freading, __fwriting, __freadable,
|
(routines): Add __fbufsize, __freading, __fwriting, __freadable,
|
||||||
__fwritable, __flbf, __fpurge, __fpending, and __fsetlocking.
|
__fwritable, __flbf, __fpurge, __fpending, and __fsetlocking.
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
General Public License. */
|
General Public License. */
|
||||||
|
|
||||||
#include <stdio_ext.h>
|
#include <stdio_ext.h>
|
||||||
|
#include "libioP.h"
|
||||||
|
|
||||||
void
|
void
|
||||||
__fpurge (FILE *fp)
|
__fpurge (FILE *fp)
|
||||||
@ -31,7 +32,7 @@ __fpurge (FILE *fp)
|
|||||||
if (fp->_mode > 0)
|
if (fp->_mode > 0)
|
||||||
{
|
{
|
||||||
/* Wide-char stream. */
|
/* Wide-char stream. */
|
||||||
if (_IO_in_wbackup (fp))
|
if (_IO_in_backup (fp))
|
||||||
_IO_free_wbackup_area (fp);
|
_IO_free_wbackup_area (fp);
|
||||||
|
|
||||||
fp->_wide_data->_IO_read_end = fp->_wide_data->_IO_read_ptr;
|
fp->_wide_data->_IO_read_end = fp->_wide_data->_IO_read_ptr;
|
||||||
|
@ -443,9 +443,9 @@ extern int _IO_ftrylockfile (_IO_FILE *) __THROW;
|
|||||||
#ifdef _IO_MTSAFE_IO
|
#ifdef _IO_MTSAFE_IO
|
||||||
# define _IO_peekc(_fp) _IO_peekc_locked (_fp)
|
# define _IO_peekc(_fp) _IO_peekc_locked (_fp)
|
||||||
# define _IO_flockfile(_fp) \
|
# define _IO_flockfile(_fp) \
|
||||||
if (((_fp)->_mode & _IO_USER_LOCK) == 0) _IO_flockfile (_fp)
|
if (((_fp)->_flags & _IO_USER_LOCK) == 0) _IO_flockfile (_fp)
|
||||||
# define _IO_funlockfile(_fp) \
|
# define _IO_funlockfile(_fp) \
|
||||||
if (((_fp)->_mode & _IO_USER_LOCK) == 0) _IO_funlockfile (_fp)
|
if (((_fp)->_flags & _IO_USER_LOCK) == 0) _IO_funlockfile (_fp)
|
||||||
#else
|
#else
|
||||||
# define _IO_peekc(_fp) _IO_peekc_unlocked (_fp)
|
# define _IO_peekc(_fp) _IO_peekc_unlocked (_fp)
|
||||||
# define _IO_flockfile(_fp) /**/
|
# define _IO_flockfile(_fp) /**/
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
2000-09-01 Ulrich Drepper <drepper@redhat.com>
|
2000-09-01 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/pthread/bits/stdio-lock.h (_IO_cleanup_region_start):
|
||||||
|
Fix typo in last patch (_mode -> _flags).
|
||||||
|
|
||||||
* sysdeps/pthread/bits/stdio-lock.h (_IO_cleanup_region_start):
|
* sysdeps/pthread/bits/stdio-lock.h (_IO_cleanup_region_start):
|
||||||
Provide definition which respects _IO_USER_LOCK flag.
|
Provide definition which respects _IO_USER_LOCK flag.
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ typedef pthread_mutex_t _IO_lock_t;
|
|||||||
|
|
||||||
#define _IO_cleanup_region_start(_fct, _fp) \
|
#define _IO_cleanup_region_start(_fct, _fp) \
|
||||||
{ struct _pthread_cleanup_buffer _buffer; \
|
{ struct _pthread_cleanup_buffer _buffer; \
|
||||||
int _avail = (((_fp)->_mode & _IO_USER_LOCK) == 0 \
|
int _avail = (((_fp)->_flags & _IO_USER_LOCK) == 0 \
|
||||||
&& _pthread_cleanup_push_defer != NULL); \
|
&& _pthread_cleanup_push_defer != NULL); \
|
||||||
if (_avail) { \
|
if (_avail) { \
|
||||||
_pthread_cleanup_push_defer (&_buffer, (_fct), (_fp)); \
|
_pthread_cleanup_push_defer (&_buffer, (_fct), (_fp)); \
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2000-09-01 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* Makefile (test-input): Add sv_SE.ISO-8859-1.
|
||||||
|
(LOCALES): Likewise.
|
||||||
|
* sv_SE.ISO-8859-1: New file.
|
||||||
|
|
||||||
2000-08-31 Ulrich Drepper <drepper@redhat.com>
|
2000-08-31 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* locales/zh_HK: Correct d_t_fmt and t_fmt_ampm.
|
* locales/zh_HK: Correct d_t_fmt and t_fmt_ampm.
|
||||||
|
@ -45,7 +45,7 @@ test-srcs := collate-test xfrm-test tst-fmon tst-rpmatch tst-trans \
|
|||||||
tst-mbswcs1 tst-mbswcs2 tst-mbswcs3 tst-mbswcs4 tst-mbswcs5 \
|
tst-mbswcs1 tst-mbswcs2 tst-mbswcs3 tst-mbswcs4 tst-mbswcs5 \
|
||||||
tst-ctype tst-wctype tst-langinfo
|
tst-ctype tst-wctype tst-langinfo
|
||||||
test-input := de_DE.ISO-8859-1 en_US.ISO-8859-1 da_DK.ISO-8859-1 \
|
test-input := de_DE.ISO-8859-1 en_US.ISO-8859-1 da_DK.ISO-8859-1 \
|
||||||
hr_HR.ISO-8859-2
|
hr_HR.ISO-8859-2 sv_SE.ISO-8859-1
|
||||||
test-input-data = $(addsuffix .in, $(basename $(test-input)))
|
test-input-data = $(addsuffix .in, $(basename $(test-input)))
|
||||||
test-output := $(foreach s, .out .xout, \
|
test-output := $(foreach s, .out .xout, \
|
||||||
$(addsuffix $s, $(basename $(test-input))))
|
$(addsuffix $s, $(basename $(test-input))))
|
||||||
@ -120,7 +120,7 @@ ifeq (no,$(cross-compiling))
|
|||||||
# We have to generate locales
|
# We have to generate locales
|
||||||
LOCALES := de_DE.ISO-8859-1 de_DE.UTF-8 en_US.ANSI_X3.4-1968 \
|
LOCALES := de_DE.ISO-8859-1 de_DE.UTF-8 en_US.ANSI_X3.4-1968 \
|
||||||
en_US.ISO-8859-1 ja_JP.EUC-JP da_DK.ISO-8859-1 \
|
en_US.ISO-8859-1 ja_JP.EUC-JP da_DK.ISO-8859-1 \
|
||||||
hr_HR.ISO-8859-2
|
hr_HR.ISO-8859-2 sv_SE.ISO-8859-1
|
||||||
LOCALE_SRCS := $(shell echo "$(LOCALES)"|sed 's/\([^ .]*\)[^ ]*/\1/g')
|
LOCALE_SRCS := $(shell echo "$(LOCALES)"|sed 's/\([^ .]*\)[^ ]*/\1/g')
|
||||||
CHARMAPS := $(shell echo "$(LOCALES)"|sed 's/[^ .]*[.]\([^ ]*\)/\1/g')
|
CHARMAPS := $(shell echo "$(LOCALES)"|sed 's/[^ .]*[.]\([^ ]*\)/\1/g')
|
||||||
CTYPE_FILES = $(addsuffix /LC_CTYPE,$(LOCALES))
|
CTYPE_FILES = $(addsuffix /LC_CTYPE,$(LOCALES))
|
||||||
|
64
localedata/sv_SE.in
Normal file
64
localedata/sv_SE.in
Normal file
@ -0,0 +1,64 @@
|
|||||||
|
a
|
||||||
|
A
|
||||||
|
b
|
||||||
|
B
|
||||||
|
c
|
||||||
|
C
|
||||||
|
d
|
||||||
|
D
|
||||||
|
e
|
||||||
|
E
|
||||||
|
f
|
||||||
|
F
|
||||||
|
g
|
||||||
|
G
|
||||||
|
h
|
||||||
|
H
|
||||||
|
i
|
||||||
|
I
|
||||||
|
j
|
||||||
|
J
|
||||||
|
k
|
||||||
|
K
|
||||||
|
l
|
||||||
|
L
|
||||||
|
m
|
||||||
|
M
|
||||||
|
n
|
||||||
|
N
|
||||||
|
o
|
||||||
|
O
|
||||||
|
p
|
||||||
|
P
|
||||||
|
q
|
||||||
|
Q
|
||||||
|
r
|
||||||
|
R
|
||||||
|
s
|
||||||
|
S
|
||||||
|
t
|
||||||
|
T
|
||||||
|
u
|
||||||
|
U
|
||||||
|
v
|
||||||
|
w
|
||||||
|
V
|
||||||
|
W
|
||||||
|
x
|
||||||
|
X
|
||||||
|
y
|
||||||
|
Y
|
||||||
|
<EFBFBD>
|
||||||
|
<EFBFBD>
|
||||||
|
z
|
||||||
|
Z
|
||||||
|
<EFBFBD>
|
||||||
|
<EFBFBD>
|
||||||
|
<EFBFBD>
|
||||||
|
<EFBFBD>
|
||||||
|
<EFBFBD>
|
||||||
|
<EFBFBD>
|
||||||
|
<EFBFBD>
|
||||||
|
<EFBFBD>
|
||||||
|
<EFBFBD>
|
||||||
|
<EFBFBD>
|
Reference in New Issue
Block a user