mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
Fix typos.
This commit is contained in:
parent
6b06ac56cd
commit
382466e04e
25
ChangeLog
25
ChangeLog
@ -1,3 +1,28 @@
|
|||||||
|
2013-08-30 Ondřej Bílka <neleai@seznam.cz>
|
||||||
|
|
||||||
|
* elf/dl-open.c: Fix typos.
|
||||||
|
* iconvdata/gbbig5.c: Likewise.
|
||||||
|
* iconvdata/iso-2022-jp.c: Likewise.
|
||||||
|
* iconv/gconv_int.h: Likewise.
|
||||||
|
* iconv/loop.c: Likewise.
|
||||||
|
* nis/rpcsvc/nis.h: Likewise.
|
||||||
|
* resolv/ns_name.c: Likewise.
|
||||||
|
* stdio-common/vfscanf.c: Likewise.
|
||||||
|
* streams/stropts.h: Likewise.
|
||||||
|
* sunrpc/rpc_thread.c: Likewise.
|
||||||
|
* sysdeps/i386/strpbrk.S: Likewise.
|
||||||
|
* sysdeps/ieee754/k_standard.c: Likewise.
|
||||||
|
* sysdeps/ieee754/ldbl-128/e_expl.c: Likewise.
|
||||||
|
* sysdeps/ieee754/ldbl-128ibm/e_expl.c: Likewise.
|
||||||
|
* sysdeps/mach/hurd/dl-sysdep.c: Likewise.
|
||||||
|
* sysdeps/mach/hurd/profil.c: Likewise.
|
||||||
|
* sysdeps/s390/dl-procinfo.h: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/i386/chown.c: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/s390/s390-32/chown.c: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/sparc/sparc32/makecontext.c: Likewise.
|
||||||
|
* sysdeps/x86_64/dl-trampoline.S: Likewise.
|
||||||
|
* sysdeps/x86_64/multiarch/strcmp-sse42.S: Likewise.
|
||||||
|
|
||||||
2013-08-30 Ondřej Bílka <neleai@seznam.cz>
|
2013-08-30 Ondřej Bílka <neleai@seznam.cz>
|
||||||
|
|
||||||
* sysdeps/x86_64/multiarch/rawmemchr.S: Delete.
|
* sysdeps/x86_64/multiarch/rawmemchr.S: Delete.
|
||||||
|
@ -158,7 +158,7 @@ add_to_global (struct link_map *new)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Search link maps in all namespaces for the DSO that containes the object at
|
/* Search link maps in all namespaces for the DSO that contains the object at
|
||||||
address ADDR. Returns the pointer to the link map of the matching DSO, or
|
address ADDR. Returns the pointer to the link map of the matching DSO, or
|
||||||
NULL if a match is not found. */
|
NULL if a match is not found. */
|
||||||
struct link_map *
|
struct link_map *
|
||||||
|
@ -49,7 +49,7 @@ struct gconv_alias
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
/* How many character should be conveted in one call? */
|
/* How many character should be converted in one call? */
|
||||||
#define GCONV_NCHAR_GOAL 8160
|
#define GCONV_NCHAR_GOAL 8160
|
||||||
|
|
||||||
|
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
BODY this is supposed to expand to the body of the loop.
|
BODY this is supposed to expand to the body of the loop.
|
||||||
The user must provide this.
|
The user must provide this.
|
||||||
|
|
||||||
EXTRA_LOOP_DECLS extra arguments passed from converion loop call.
|
EXTRA_LOOP_DECLS extra arguments passed from conversion loop call.
|
||||||
|
|
||||||
INIT_PARAMS code to define and initialize variables from params.
|
INIT_PARAMS code to define and initialize variables from params.
|
||||||
UPDATE_PARAMS code to store result in params.
|
UPDATE_PARAMS code to store result in params.
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* This module does convertions between gb2312 and big5 encodings.
|
* This module does conversions between gb2312 and big5 encodings.
|
||||||
* It is necessary because gb2312 encoding use simplified chinese,
|
* It is necessary because gb2312 encoding use simplified chinese,
|
||||||
* while big5 use traditional one. Often times both the simplified
|
* while big5 use traditional one. Often times both the simplified
|
||||||
* version of a chinese character and its traditional counterpart
|
* version of a chinese character and its traditional counterpart
|
||||||
|
@ -271,7 +271,7 @@ gconv_end (struct __gconv_step *data)
|
|||||||
if (__builtin_expect (ch, 0) == ESC) \
|
if (__builtin_expect (ch, 0) == ESC) \
|
||||||
{ \
|
{ \
|
||||||
/* We now must be prepared to read two to three more \
|
/* We now must be prepared to read two to three more \
|
||||||
chracters. If we have a match in the first character but \
|
characters. If we have a match in the first character but \
|
||||||
then the input buffer ends we terminate with an error since \
|
then the input buffer ends we terminate with an error since \
|
||||||
we must not risk missing an escape sequence just because it \
|
we must not risk missing an escape sequence just because it \
|
||||||
is not entirely in the current input buffer. */ \
|
is not entirely in the current input buffer. */ \
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2013-08-30 Ondřej Bílka <neleai@seznam.cz>
|
||||||
|
|
||||||
|
* tests-mbwc/dat_wcsncat.c: Fix typos.
|
||||||
|
* tests/test6.c: Likewise.
|
||||||
|
* tst-digits.c: Likewise.
|
||||||
|
|
||||||
2013-06-13 Johan Heikkila <johan.heikkila@gmail.com>
|
2013-06-13 Johan Heikkila <johan.heikkila@gmail.com>
|
||||||
|
|
||||||
[BZ#15432]
|
[BZ#15432]
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* Note:
|
* Note:
|
||||||
* A terminating null wide chararacter is always appended to
|
* A terminating null wide character is always appended to
|
||||||
* the result: ws1.
|
* the result: ws1.
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
@ -40,7 +40,7 @@ main (void)
|
|||||||
/* Test basic table handling (basic == not more than 256 characters).
|
/* Test basic table handling (basic == not more than 256 characters).
|
||||||
The charmaps swaps the normal lower-upper case meaning of the
|
The charmaps swaps the normal lower-upper case meaning of the
|
||||||
ASCII characters used in the source code while the Unicode mapping
|
ASCII characters used in the source code while the Unicode mapping
|
||||||
in the repertoire map has the normal correspondants. This test
|
in the repertoire map has the normal correspondents. This test
|
||||||
shows the independence of the tables for `char' and `wchar_t'
|
shows the independence of the tables for `char' and `wchar_t'
|
||||||
characters. */
|
characters. */
|
||||||
|
|
||||||
|
@ -178,7 +178,7 @@ main (void)
|
|||||||
printf ("%d failures in wprintf tests\n", failures);
|
printf ("%d failures in wprintf tests\n", failures);
|
||||||
status = failures != 0;
|
status = failures != 0;
|
||||||
|
|
||||||
/* ctype tests. This makes sure that the multibyte chracter digit
|
/* ctype tests. This makes sure that the multibyte character digit
|
||||||
representations are not handle in this table. */
|
representations are not handle in this table. */
|
||||||
failures = 0;
|
failures = 0;
|
||||||
for (cnt = 0; cnt < 256; ++cnt)
|
for (cnt = 0; cnt < 256; ++cnt)
|
||||||
|
@ -470,7 +470,7 @@ typedef struct fd_result fd_result;
|
|||||||
#define NIS_NOBODY(a, m) (((a) & ((m) << 24)) != 0)
|
#define NIS_NOBODY(a, m) (((a) & ((m) << 24)) != 0)
|
||||||
/*
|
/*
|
||||||
* EOL Alert - The following non-prefixed test macros are
|
* EOL Alert - The following non-prefixed test macros are
|
||||||
* here for backward compatability, and will be not be present
|
* here for backward compatibility, and will be not be present
|
||||||
* in future releases - use the NIS_*() macros above.
|
* in future releases - use the NIS_*() macros above.
|
||||||
*/
|
*/
|
||||||
#define WORLD(a, m) (((a) & (m)) != 0)
|
#define WORLD(a, m) (((a) & (m)) != 0)
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
2013-08-30 Ondřej Bílka <neleai@seznam.cz>
|
||||||
|
|
||||||
|
* sysdeps/pthread/pthread.h: Fix typos.
|
||||||
|
* sysdeps/unix/sysv/linux/internaltypes.h: Likewise.
|
||||||
|
* tst-cancel4.c: Likewise.
|
||||||
|
|
||||||
2013-08-21 Ondřej Bílka <neleai@seznam.cz>
|
2013-08-21 Ondřej Bílka <neleai@seznam.cz>
|
||||||
|
|
||||||
* pthread_getschedparam.c: Fix typos.
|
* pthread_getschedparam.c: Fix typos.
|
||||||
|
@ -1034,13 +1034,13 @@ extern int pthread_condattr_setpshared (pthread_condattr_t *__attr,
|
|||||||
int __pshared) __THROW __nonnull ((1));
|
int __pshared) __THROW __nonnull ((1));
|
||||||
|
|
||||||
#ifdef __USE_XOPEN2K
|
#ifdef __USE_XOPEN2K
|
||||||
/* Get the clock selected for the conditon variable attribute ATTR. */
|
/* Get the clock selected for the condition variable attribute ATTR. */
|
||||||
extern int pthread_condattr_getclock (const pthread_condattr_t *
|
extern int pthread_condattr_getclock (const pthread_condattr_t *
|
||||||
__restrict __attr,
|
__restrict __attr,
|
||||||
__clockid_t *__restrict __clock_id)
|
__clockid_t *__restrict __clock_id)
|
||||||
__THROW __nonnull ((1, 2));
|
__THROW __nonnull ((1, 2));
|
||||||
|
|
||||||
/* Set the clock selected for the conditon variable attribute ATTR. */
|
/* Set the clock selected for the condition variable attribute ATTR. */
|
||||||
extern int pthread_condattr_setclock (pthread_condattr_t *__attr,
|
extern int pthread_condattr_setclock (pthread_condattr_t *__attr,
|
||||||
__clockid_t __clock_id)
|
__clockid_t __clock_id)
|
||||||
__THROW __nonnull ((1));
|
__THROW __nonnull ((1));
|
||||||
|
@ -66,7 +66,7 @@ struct pthread_condattr
|
|||||||
{
|
{
|
||||||
/* Combination of values:
|
/* Combination of values:
|
||||||
|
|
||||||
Bit 0 : flag whether coditional variable will be shareable between
|
Bit 0 : flag whether conditional variable will be sharable between
|
||||||
processes.
|
processes.
|
||||||
|
|
||||||
Bit 1-7: clock ID. */
|
Bit 1-7: clock ID. */
|
||||||
|
@ -83,7 +83,7 @@ static pthread_barrier_t b2;
|
|||||||
# define IPC_ADDVAL 0
|
# define IPC_ADDVAL 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* The WRITE_BUFFER_SIZE value needs to be choosen such that if we set
|
/* The WRITE_BUFFER_SIZE value needs to be chosen such that if we set
|
||||||
the socket send buffer size to '1', a write of this size on that
|
the socket send buffer size to '1', a write of this size on that
|
||||||
socket will block.
|
socket will block.
|
||||||
|
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2013-08-30 Ondřej Bílka <neleai@seznam.cz>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/alpha/bits/netdb.h: Fix typos.
|
||||||
|
|
||||||
2013-07-02 Richard Henderson <rth@redhat.com>
|
2013-07-02 Richard Henderson <rth@redhat.com>
|
||||||
|
|
||||||
* sysdeps/alpha/fpu/libm-test-ulps: Update.
|
* sysdeps/alpha/fpu/libm-test-ulps: Update.
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
2013-08-30 Ondřej Bílka <neleai@seznam.cz>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/hppa/clone.S: Fix typos.
|
||||||
|
* sysdeps/unix/sysv/linux/hppa/nptl/pthread.h: Likewise.
|
||||||
|
|
||||||
2013-08-21 Ondřej Bílka <neleai@seznam.cz>
|
2013-08-21 Ondřej Bílka <neleai@seznam.cz>
|
||||||
|
|
||||||
* sysdeps/hppa/dl-lookupcfg.h: Fix typos.
|
* sysdeps/hppa/dl-lookupcfg.h: Fix typos.
|
||||||
|
@ -1,3 +1,11 @@
|
|||||||
|
2013-08-30 Ondřej Bílka <neleai@seznam.cz>
|
||||||
|
|
||||||
|
* sysdeps/ia64/fpu/libm_reduce.S: Fix typos.
|
||||||
|
* sysdeps/ia64/fpu/s_erfcf.S: Likewise.
|
||||||
|
* sysdeps/ia64/fpu/s_erfcl.S: Likewise.
|
||||||
|
* sysdeps/ia64/fpu/s_erfc.S: Likewise.
|
||||||
|
* sysdeps/unix/sysv/linux/ia64/nptl/__sigstack_longjmp.c: Likewise.
|
||||||
|
|
||||||
2013-08-29 Ondřej Bílka <neleai@seznam.cz>
|
2013-08-29 Ondřej Bílka <neleai@seznam.cz>
|
||||||
|
|
||||||
* sysdeps/ia64/fpu/e_acoshl.S: Fix typos.
|
* sysdeps/ia64/fpu/e_acoshl.S: Fix typos.
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2013-08-30 Ondřej Bílka <neleai@seznam.cz>
|
||||||
|
|
||||||
|
* sysdeps/mips/memcpy.S: Fix typos.
|
||||||
|
|
||||||
2013-08-29 Thomas Schwinge <thomas@codesourcery.com>
|
2013-08-29 Thomas Schwinge <thomas@codesourcery.com>
|
||||||
|
|
||||||
* sysdeps/unix/sysv/linux/mips/ldsodefs.h (VALID_ELF_ABIVERSION):
|
* sysdeps/unix/sysv/linux/mips/ldsodefs.h (VALID_ELF_ABIVERSION):
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
2013-08-30 Ondřej Bílka <neleai@seznam.cz>
|
||||||
|
|
||||||
|
* sysdeps/powerpc/powerpc32/405/memcpy.S: Fix typos.
|
||||||
|
|
||||||
2013-08-17 Alexandre Oliva <aoliva@redhat.com>
|
2013-08-17 Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
PR 15483
|
PR 15483
|
||||||
|
@ -838,7 +838,7 @@ GLOBAL_IEEE754_ENTRY(log10f)
|
|||||||
{ .mib
|
{ .mib
|
||||||
setf.exp FR_A2 = GR_05 // create A2
|
setf.exp FR_A2 = GR_05 // create A2
|
||||||
sub GR_de = GR_Exp,GR_05 // biased_exponent_of_x - 0xFFFE
|
sub GR_de = GR_Exp,GR_05 // biased_exponent_of_x - 0xFFFE
|
||||||
// needed to comparion with 0.5 and 2.0
|
// needed for comparison with 0.5 and 2.0
|
||||||
br.cond.sptk logf_log10f_common
|
br.cond.sptk logf_log10f_common
|
||||||
};;
|
};;
|
||||||
GLOBAL_IEEE754_END(log10f)
|
GLOBAL_IEEE754_END(log10f)
|
||||||
@ -873,7 +873,7 @@ GLOBAL_IEEE754_ENTRY(logf)
|
|||||||
setf.d FR_A3 = GR_A3 // create A3
|
setf.d FR_A3 = GR_A3 // create A3
|
||||||
fcmp.eq.s1 p13,p14 = f0,f0 // p13 - true for logf
|
fcmp.eq.s1 p13,p14 = f0,f0 // p13 - true for logf
|
||||||
sub GR_de = GR_Exp,GR_05 // biased_exponent_of_x - 0xFFFE
|
sub GR_de = GR_Exp,GR_05 // biased_exponent_of_x - 0xFFFE
|
||||||
// needed to comparion with 0.5 and 2.0
|
// needed for comparison with 0.5 and 2.0
|
||||||
}
|
}
|
||||||
{ .mlx
|
{ .mlx
|
||||||
setf.exp FR_A2 = GR_05 // create A2
|
setf.exp FR_A2 = GR_05 // create A2
|
||||||
|
@ -75,7 +75,7 @@
|
|||||||
//
|
//
|
||||||
// IEEE Special Conditions:
|
// IEEE Special Conditions:
|
||||||
//
|
//
|
||||||
// No condions should be raised.
|
// No conditions should be raised.
|
||||||
//
|
//
|
||||||
//*********************************************************************
|
//*********************************************************************
|
||||||
//
|
//
|
||||||
@ -288,7 +288,7 @@
|
|||||||
//
|
//
|
||||||
// Set sgn_x := sign(x); x := |x|; x_lo := 2 lsb of x.
|
// Set sgn_x := sign(x); x := |x|; x_lo := 2 lsb of x.
|
||||||
//
|
//
|
||||||
// In memory, 2/pi is stored contigously as
|
// In memory, 2/pi is stored contiguously as
|
||||||
//
|
//
|
||||||
// 0x00000000 0x00000000 0xA2F....
|
// 0x00000000 0x00000000 0xA2F....
|
||||||
// ^
|
// ^
|
||||||
@ -786,7 +786,7 @@ __libm_pi_by_2_reduce:
|
|||||||
// setf.sig FR_ScaleP3 = GR_x_lo
|
// setf.sig FR_ScaleP3 = GR_x_lo
|
||||||
// fmerge.se FR_X = FR_X,FR_ScaleP3
|
// fmerge.se FR_X = FR_X,FR_ScaleP3
|
||||||
// Set sgn_x := sign(x); x := |x|; x_lo := 2 lsb of x.
|
// Set sgn_x := sign(x); x := |x|; x_lo := 2 lsb of x.
|
||||||
// 2/pi is stored contigously as
|
// 2/pi is stored contiguously as
|
||||||
// 0x00000000 0x00000000.0xA2F....
|
// 0x00000000 0x00000000.0xA2F....
|
||||||
// M = EXP - BIAS ( M >= 63)
|
// M = EXP - BIAS ( M >= 63)
|
||||||
// Given x = 2^m * 1.xxxx...xxx; we calculate L := 62 - m.
|
// Given x = 2^m * 1.xxxx...xxx; we calculate L := 62 - m.
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
//
|
//
|
||||||
// Let P14(z) - polynomial approximation of degree 14 for function
|
// Let P14(z) - polynomial approximation of degree 14 for function
|
||||||
// erfc(z+x(i)) * exp( (z+x(i))^2) and 0 <= z <= x(i+1)-x(i).
|
// erfc(z+x(i)) * exp( (z+x(i))^2) and 0 <= z <= x(i+1)-x(i).
|
||||||
// Polynomial coeffitients we have in the table erfc_p_table.
|
// Polynomial coefficients we have in the table erfc_p_table.
|
||||||
//
|
//
|
||||||
// So we can find result for erfc(x) as above.
|
// So we can find result for erfc(x) as above.
|
||||||
// Algorithm description for exp function see below.
|
// Algorithm description for exp function see below.
|
||||||
|
@ -63,7 +63,7 @@
|
|||||||
//
|
//
|
||||||
// Let P15(x) - polynomial approximation of degree 15 for function
|
// Let P15(x) - polynomial approximation of degree 15 for function
|
||||||
// erfcf(x) * exp( x^2) and x(i) <= x <= x(i+1), i = 0,1,2,3
|
// erfcf(x) * exp( x^2) and x(i) <= x <= x(i+1), i = 0,1,2,3
|
||||||
// Polynomial coeffitients we have in the table erfc_p_table.
|
// Polynomial coefficients we have in the table erfc_p_table.
|
||||||
//
|
//
|
||||||
// So we can find result for erfcf(x) as above.
|
// So we can find result for erfcf(x) as above.
|
||||||
// Algorithm description for exp function see below.
|
// Algorithm description for exp function see below.
|
||||||
|
@ -71,7 +71,7 @@
|
|||||||
// -0.5*[x(i+1)-x(i)] <= z <= 0.5*[x(i+1)-x(i)].
|
// -0.5*[x(i+1)-x(i)] <= z <= 0.5*[x(i+1)-x(i)].
|
||||||
//
|
//
|
||||||
// Let Q(z)= (P(z)- S)/S, S = a0, rounded to 16 bits.
|
// Let Q(z)= (P(z)- S)/S, S = a0, rounded to 16 bits.
|
||||||
// Polynomial coeffitients for Q(z) we have in the table erfc_Q_table as
|
// Polynomial coefficients for Q(z) we have in the table erfc_Q_table as
|
||||||
// long double values
|
// long double values
|
||||||
//
|
//
|
||||||
// We use multi precision to calculate input argument -x^2 for expl and
|
// We use multi precision to calculate input argument -x^2 for expl and
|
||||||
|
@ -157,10 +157,10 @@
|
|||||||
/* MAX_PREFETCH_SIZE is the maximum size of a prefetch, it must not be less
|
/* MAX_PREFETCH_SIZE is the maximum size of a prefetch, it must not be less
|
||||||
* then PREFETCH_CHUNK, the assumed size of each prefetch. If the real size
|
* then PREFETCH_CHUNK, the assumed size of each prefetch. If the real size
|
||||||
* of a prefetch is greater then MAX_PREFETCH_SIZE and the PREPAREFORSTORE
|
* of a prefetch is greater then MAX_PREFETCH_SIZE and the PREPAREFORSTORE
|
||||||
* hint is used, the code will not work corrrectly. If PREPAREFORSTORE is not
|
* hint is used, the code will not work correctly. If PREPAREFORSTORE is not
|
||||||
* used then MAX_PREFETCH_SIZE does not matter. */
|
* used then MAX_PREFETCH_SIZE does not matter. */
|
||||||
#define MAX_PREFETCH_SIZE 128
|
#define MAX_PREFETCH_SIZE 128
|
||||||
/* PREFETCH_LIMIT is set based on the fact that we neve use an offset greater
|
/* PREFETCH_LIMIT is set based on the fact that we never use an offset greater
|
||||||
* then 5 on a STORE prefetch and that a single prefetch can never be larger
|
* then 5 on a STORE prefetch and that a single prefetch can never be larger
|
||||||
* then MAX_PREFETCH_SIZE. We add the extra 32 when USE_DOUBLE is set because
|
* then MAX_PREFETCH_SIZE. We add the extra 32 when USE_DOUBLE is set because
|
||||||
* we actually do two prefetches in that case, one 32 bytes after the other. */
|
* we actually do two prefetches in that case, one 32 bytes after the other. */
|
||||||
|
@ -98,7 +98,7 @@ L(string_count_loop): /* Copy odd 0-31 bytes */
|
|||||||
lswx r6,0,r4
|
lswx r6,0,r4
|
||||||
stswx r6,0,r3
|
stswx r6,0,r3
|
||||||
|
|
||||||
L(pre_string_copy): /* Check how many 32 byte chunck to copy */
|
L(pre_string_copy): /* Check how many 32 byte chunks to copy */
|
||||||
srwi. r7,r5,4
|
srwi. r7,r5,4
|
||||||
beq L(end_memcpy)
|
beq L(end_memcpy)
|
||||||
mtctr r7
|
mtctr r7
|
||||||
|
@ -29,6 +29,6 @@ struct netent
|
|||||||
char **n_aliases; /* Alias list. */
|
char **n_aliases; /* Alias list. */
|
||||||
int n_addrtype; /* Net address type. */
|
int n_addrtype; /* Net address type. */
|
||||||
/* XXX We should probably use uint32_t for the field and ensure
|
/* XXX We should probably use uint32_t for the field and ensure
|
||||||
compatiblity by adding appropriate padding. */
|
compatibility by adding appropriate padding. */
|
||||||
unsigned long int n_net; /* Network number. */
|
unsigned long int n_net; /* Network number. */
|
||||||
};
|
};
|
||||||
|
@ -155,7 +155,7 @@ ENTRY(__clone)
|
|||||||
ldw -60(%sp), %arg0
|
ldw -60(%sp), %arg0
|
||||||
ldw -64(%sp), %r22
|
ldw -64(%sp), %r22
|
||||||
|
|
||||||
/* $$dyncall fixes childs PIC register */
|
/* $$dyncall fixes child's PIC register */
|
||||||
|
|
||||||
/* Call the user's function */
|
/* Call the user's function */
|
||||||
#ifdef PIC
|
#ifdef PIC
|
||||||
|
@ -1014,13 +1014,13 @@ extern int pthread_condattr_setpshared (pthread_condattr_t *__attr,
|
|||||||
int __pshared) __THROW __nonnull ((1));
|
int __pshared) __THROW __nonnull ((1));
|
||||||
|
|
||||||
#ifdef __USE_XOPEN2K
|
#ifdef __USE_XOPEN2K
|
||||||
/* Get the clock selected for the conditon variable attribute ATTR. */
|
/* Get the clock selected for the condition variable attribute ATTR. */
|
||||||
extern int pthread_condattr_getclock (const pthread_condattr_t *
|
extern int pthread_condattr_getclock (const pthread_condattr_t *
|
||||||
__restrict __attr,
|
__restrict __attr,
|
||||||
__clockid_t *__restrict __clock_id)
|
__clockid_t *__restrict __clock_id)
|
||||||
__THROW __nonnull ((1, 2));
|
__THROW __nonnull ((1, 2));
|
||||||
|
|
||||||
/* Set the clock selected for the conditon variable attribute ATTR. */
|
/* Set the clock selected for the condition variable attribute ATTR. */
|
||||||
extern int pthread_condattr_setclock (pthread_condattr_t *__attr,
|
extern int pthread_condattr_setclock (pthread_condattr_t *__attr,
|
||||||
__clockid_t __clock_id)
|
__clockid_t __clock_id)
|
||||||
__THROW __nonnull ((1));
|
__THROW __nonnull ((1));
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
/* The public __longjmp() implementation is limited to jumping within
|
/* The public __longjmp() implementation is limited to jumping within
|
||||||
the same stack. That is, in general it is not possible to use this
|
the same stack. That is, in general it is not possible to use this
|
||||||
__longjmp() implementation to cross from one stack to another.
|
__longjmp() implementation to cross from one stack to another.
|
||||||
In constrast, the __sigstack_longjmp() implemented here allows
|
In contrast, the __sigstack_longjmp() implemented here allows
|
||||||
crossing from the alternate signal stack to the normal stack
|
crossing from the alternate signal stack to the normal stack
|
||||||
as a special case. */
|
as a special case. */
|
||||||
|
|
||||||
|
@ -681,7 +681,7 @@ libresolv_hidden_def (ns_name_skip)
|
|||||||
|
|
||||||
/*%
|
/*%
|
||||||
* Thinking in noninternationalized USASCII (per the DNS spec),
|
* Thinking in noninternationalized USASCII (per the DNS spec),
|
||||||
* is this characted special ("in need of quoting") ?
|
* is this character special ("in need of quoting") ?
|
||||||
*
|
*
|
||||||
* return:
|
* return:
|
||||||
*\li boolean.
|
*\li boolean.
|
||||||
|
@ -2185,7 +2185,7 @@ _IO_vfscanf_internal (_IO_FILE *s, const char *format, _IO_va_list argptr,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Start checking against localized digits, if
|
/* Start checking against localized digits, if
|
||||||
convertion is done correctly. */
|
conversion is done correctly. */
|
||||||
while (1)
|
while (1)
|
||||||
{
|
{
|
||||||
if (got_e && wp[wpsize - 1] == exp_char
|
if (got_e && wp[wpsize - 1] == exp_char
|
||||||
|
@ -35,7 +35,7 @@ typedef __uid_t uid_t;
|
|||||||
typedef __t_scalar_t t_scalar_t;
|
typedef __t_scalar_t t_scalar_t;
|
||||||
typedef __t_uscalar_t t_uscalar_t;
|
typedef __t_uscalar_t t_uscalar_t;
|
||||||
|
|
||||||
/* Get system specific contants. */
|
/* Get system specific constants. */
|
||||||
#include <bits/stropts.h>
|
#include <bits/stropts.h>
|
||||||
|
|
||||||
|
|
||||||
|
@ -80,7 +80,7 @@ __rpc_thread_variables (void)
|
|||||||
|
|
||||||
/* Global variables If we're single-threaded, or if this is the first
|
/* Global variables If we're single-threaded, or if this is the first
|
||||||
thread using the variable, use the existing global variable. This
|
thread using the variable, use the existing global variable. This
|
||||||
provides backwards compatability for existing applications which
|
provides backwards compatibility for existing applications which
|
||||||
dynamically link against this code. */
|
dynamically link against this code. */
|
||||||
#undef svc_fdset
|
#undef svc_fdset
|
||||||
#undef rpc_createerr
|
#undef rpc_createerr
|
||||||
|
@ -205,7 +205,7 @@ L(1): leal -4(%edx), %eax /* prepare loop */
|
|||||||
1. a character in the stopset was found
|
1. a character in the stopset was found
|
||||||
and
|
and
|
||||||
2. the end of the string was found
|
2. the end of the string was found
|
||||||
But as a sign that the chracter is in the stopset we store its
|
But as a sign that the character is in the stopset we store its
|
||||||
value in the table. But the value of NUL is NUL so the loop
|
value in the table. But the value of NUL is NUL so the loop
|
||||||
terminates for NUL in every case. */
|
terminates for NUL in every case. */
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ static char rcsid[] = "$NetBSD: k_standard.c,v 1.6 1995/05/10 20:46:35 jtc Exp $
|
|||||||
#endif /* !defined(_USE_WRITE) */
|
#endif /* !defined(_USE_WRITE) */
|
||||||
|
|
||||||
/* XXX gcc versions until now don't delay the 0.0/0.0 division until
|
/* XXX gcc versions until now don't delay the 0.0/0.0 division until
|
||||||
runtime but produce NaN at copile time. This is wrong since the
|
runtime but produce NaN at compile time. This is wrong since the
|
||||||
exceptions are not set correctly. */
|
exceptions are not set correctly. */
|
||||||
#if 0
|
#if 0
|
||||||
static const double zero = 0.0; /* used as const */
|
static const double zero = 0.0; /* used as const */
|
||||||
|
@ -117,7 +117,7 @@ static const long double C[] = {
|
|||||||
#define TWO15 C[11]
|
#define TWO15 C[11]
|
||||||
32768.0L,
|
32768.0L,
|
||||||
|
|
||||||
/* Chebyshev polynom coeficients for (exp(x)-1)/x */
|
/* Chebyshev polynom coefficients for (exp(x)-1)/x */
|
||||||
#define P1 C[12]
|
#define P1 C[12]
|
||||||
#define P2 C[13]
|
#define P2 C[13]
|
||||||
#define P3 C[14]
|
#define P3 C[14]
|
||||||
|
@ -116,7 +116,7 @@ static const long double C[] = {
|
|||||||
#define TWO15 C[11]
|
#define TWO15 C[11]
|
||||||
32768.0L,
|
32768.0L,
|
||||||
|
|
||||||
/* Chebyshev polynom coeficients for (exp(x)-1)/x */
|
/* Chebyshev polynom coefficients for (exp(x)-1)/x */
|
||||||
#define P1 C[12]
|
#define P1 C[12]
|
||||||
#define P2 C[13]
|
#define P2 C[13]
|
||||||
#define P3 C[14]
|
#define P3 C[14]
|
||||||
|
@ -54,7 +54,7 @@ int __libc_enable_secure = 0;
|
|||||||
INTVARDEF(__libc_enable_secure)
|
INTVARDEF(__libc_enable_secure)
|
||||||
int __libc_multiple_libcs = 0; /* Defining this here avoids the inclusion
|
int __libc_multiple_libcs = 0; /* Defining this here avoids the inclusion
|
||||||
of init-first. */
|
of init-first. */
|
||||||
/* This variable containts the lowest stack address ever used. */
|
/* This variable contains the lowest stack address ever used. */
|
||||||
void *__libc_stack_end;
|
void *__libc_stack_end;
|
||||||
|
|
||||||
#if HP_TIMING_AVAIL
|
#if HP_TIMING_AVAIL
|
||||||
|
@ -216,7 +216,7 @@ fork_profil_parent (void)
|
|||||||
}
|
}
|
||||||
text_set_element (_hurd_fork_parent_hook, fork_profil_parent);
|
text_set_element (_hurd_fork_parent_hook, fork_profil_parent);
|
||||||
|
|
||||||
/* In the childs, unlock the interlock, and start a profiling thread up
|
/* In the child, unlock the interlock, and start a profiling thread up
|
||||||
if necessary. */
|
if necessary. */
|
||||||
static void
|
static void
|
||||||
fork_profil_child (void)
|
fork_profil_child (void)
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
#define _DL_HWCAP_PLATFORM (((1ULL << _DL_PLATFORMS_COUNT) - 1) \
|
#define _DL_HWCAP_PLATFORM (((1ULL << _DL_PLATFORMS_COUNT) - 1) \
|
||||||
<< _DL_FIRST_PLATFORM)
|
<< _DL_FIRST_PLATFORM)
|
||||||
|
|
||||||
/* Hardware capablity bit numbers are derived directly from the
|
/* Hardware capability bit numbers are derived directly from the
|
||||||
facility indications as stored by the "store facility list" (STFL)
|
facility indications as stored by the "store facility list" (STFL)
|
||||||
instruction.
|
instruction.
|
||||||
highgprs is an alien in that list. It describes a *kernel*
|
highgprs is an alien in that list. It describes a *kernel*
|
||||||
|
@ -49,7 +49,7 @@ __real_chown (const char *file, uid_t owner, gid_t group)
|
|||||||
|
|
||||||
|
|
||||||
#if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1)
|
#if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1)
|
||||||
/* Compiling for compatibiity. */
|
/* Compiling for compatibility. */
|
||||||
int
|
int
|
||||||
attribute_compat_text_section
|
attribute_compat_text_section
|
||||||
__chown_is_lchown (const char *file, uid_t owner, gid_t group)
|
__chown_is_lchown (const char *file, uid_t owner, gid_t group)
|
||||||
|
@ -46,7 +46,7 @@ __real_chown (const char *file, uid_t owner, gid_t group)
|
|||||||
|
|
||||||
|
|
||||||
#if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1)
|
#if SHLIB_COMPAT (libc, GLIBC_2_0, GLIBC_2_1)
|
||||||
/* Compiling for compatibiity. */
|
/* Compiling for compatibility. */
|
||||||
int
|
int
|
||||||
attribute_compat_text_section
|
attribute_compat_text_section
|
||||||
__chown_is_lchown (const char *file, uid_t owner, gid_t group)
|
__chown_is_lchown (const char *file, uid_t owner, gid_t group)
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
Returning to the correct parent context is pretty simple on
|
Returning to the correct parent context is pretty simple on
|
||||||
Sparc. We only need to link up the register windows correctly.
|
Sparc. We only need to link up the register windows correctly.
|
||||||
Since global registers are clobbered by calls, we need not be
|
Since global registers are clobbered by calls, we need not be
|
||||||
concernred about those, and thus is all could be worked out without
|
concerned about those, and thus is all could be worked out without
|
||||||
using a trampoline.
|
using a trampoline.
|
||||||
|
|
||||||
Except that we must deal with the signal mask, thus a trampoline
|
Except that we must deal with the signal mask, thus a trampoline
|
||||||
|
@ -119,7 +119,7 @@ _dl_runtime_profile:
|
|||||||
movq %rax, LR_RSP_OFFSET(%rsp)
|
movq %rax, LR_RSP_OFFSET(%rsp)
|
||||||
|
|
||||||
/* We always store the XMM registers even if AVX is available.
|
/* We always store the XMM registers even if AVX is available.
|
||||||
This is to provide backward binary compatility for existing
|
This is to provide backward binary compatibility for existing
|
||||||
audit modules. */
|
audit modules. */
|
||||||
movaps %xmm0, (LR_XMM_OFFSET)(%rsp)
|
movaps %xmm0, (LR_XMM_OFFSET)(%rsp)
|
||||||
movaps %xmm1, (LR_XMM_OFFSET + XMM_SIZE)(%rsp)
|
movaps %xmm1, (LR_XMM_OFFSET + XMM_SIZE)(%rsp)
|
||||||
|
@ -206,7 +206,7 @@ LABEL(touppermask):
|
|||||||
jnz LABEL(less16bytes)/* If not, find different value or null char */
|
jnz LABEL(less16bytes)/* If not, find different value or null char */
|
||||||
#if defined USE_AS_STRNCMP || defined USE_AS_STRNCASECMP_L
|
#if defined USE_AS_STRNCMP || defined USE_AS_STRNCASECMP_L
|
||||||
sub $16, %r11
|
sub $16, %r11
|
||||||
jbe LABEL(strcmp_exitz)/* finish comparision */
|
jbe LABEL(strcmp_exitz)/* finish comparison */
|
||||||
#endif
|
#endif
|
||||||
add $16, %rsi /* prepare to search next 16 bytes */
|
add $16, %rsi /* prepare to search next 16 bytes */
|
||||||
add $16, %rdi /* prepare to search next 16 bytes */
|
add $16, %rdi /* prepare to search next 16 bytes */
|
||||||
|
Loading…
Reference in New Issue
Block a user