| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Resolves BZ #14719.
|
|
|
|
|
|
|
|
|
|
|
| |
protected. It is not safe when in multithread circumstance.
bindresvport() select a port number from the range 512 to 1023, when in
multithread circumstance, the port may be 1024. So the static variables will be
protected.
Signed-off-by: Peng Haitao <penght@cn.fujitsu.com>
Reviewed-by: Carlos O'Donell <carlos@systemhalted.org>
|
|
|
|
|
|
|
| |
2012-11-16 Andrej Lajovic <natrij@gmail.com>
[BZ #14672]
* iconv/iconv_prog.c (main): Fix -c handling of '/'.
|
|
|
|
|
|
|
| |
[BZ #14368]
* locales/szl_PL: New Silesian Language Locale for Poland.
Contributed by Przemyslaw Buczkowski <przemub@yahoo.pl>.
* localedata/SUPPORTED (SUPPORTED-LOCALES): Add szl_PL.
|
|
|
|
|
|
| |
[BZ #11741]
Fixed bug where printf and family may return a spurious success when
printing padded formats.
|
|
|
|
|
|
|
|
| |
[BZ # 14828]
* locales/ayc_PE: Add Aymara locale for Peru
contributed by Chris Leonard <cjl@sugarlabs.org> and
Amos Batto <amosbatto@yahoo.com>.
* SUPPORTED (SUPPORTED-LOCALES): Add ayc_PE.
|
|
|
|
|
|
|
| |
[BZ # 14501]
* locales/nhn_MX: Add Central Nahuatl locale for Mexico,
contributed by Jorge Becerril <jrbecster@gmail.com>.
* SUPPORTED (SUPPORTED-LOCALES): Add nhn_MX.
|
|
|
|
|
| |
[BZ #13952]
* locales/km_KH: Correct country-name and lang-name.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
[BZ #13603]
[BZ #13604]
[BZ #13698]
* locales/doi_IN: New file, contributed by Pravin Satpute
<psatpute@redhat.com> and Sushil Badyal <badyalsk@gmail.com>.
* locales/mni_IN: New file, contributed by Pravin Satpute
<psatpute@redhat.com> and Rebika Devi <rebika_srd@rediffmail.com>.
* locales/sat_IN: New file, contributed by Pravin Satpute
<psatpute@redhat.com> and Thakur Prasad Murmu <tp_murmu@yahoo.com>.
* SUPPORTED (SUPPORTED-LOCALES): Add doi_IN, mni_IN, sat_IN.
|
|
|
|
|
|
|
| |
[BZ #13950]
* locales/bo_CN (LC_NAME, LC_ADDRESS): Remove some FIXMEs with
proper content, disable others.
* locales/bo_IN (LC_NAME, LC_ADDRESS): Likewise.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
[BZ #14809]
* sysdeps/unix/sysv/linux/sys/sysctl.h (_UAPI_LINUX_KERNEL_H)
(_UAPI_LINUX_TYPES_H): Starting with Linux 3.7, the include header
guards are changed. Only define if not yet defined, #undef back
after including linux/sysctl.h if defined here.
|
| |
|
|
|
|
|
|
| |
[BZ#14807]
* locales/ru_RU (abmon): Change back from genitive to nominative,
apply fixed three-letter abbreviation form, remove trailing dots.
|
|
|
|
|
| |
[BZ#10873]
* locales/ru_RU (abday): Remove trailing dots.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
In commit bea9b19322c77265033a068ac60c95a37e798a80 already.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
This patch also creates a version of memset.S for the ppc476 processor
which uses a 128-byte cacheline size for dcbz insns.
|
|
|
|
| |
14152, 14783).
|
| |
|
|
|
|
|
|
|
|
| |
* elf/Makefile (tests): Remove conditional for have-initfini-array
since this is now always required and the variable does not exist
anymore.
(tests-static): Likewise.
(modules-names): Likewise.
|
| |
|
| |
|
|
|
|
|
|
|
| |
[BZ #13601]
A read operation could return less than requested data for a number of
reasons.
|
|
|
|
|
|
| |
[BZ #14694]
Fix Wednesday in DAY and August, September and October in ABMON and
MON.
|
|
|
|
| |
Fixes BZ #12140.
|
| |
|
|
|
|
| |
McGrath.
|
|
|
|
|
|
|
|
|
|
| |
[BZ #14652]
When a thread waiting in pthread_cond_wait with a PI mutex is
cancelled after it has returned successfully from the futex syscall
but just before async cancellation is disabled, it enters its
cancellation handler with the mutex held and simply calling a
mutex_lock again will result in a deadlock. Hence, it is necessary to
see if the thread owns the lock and try to lock it only if it doesn't.
|
| |
|
| |
|
|
|
|
|
|
|
| |
[BZ #14568]
* sysdeps/sparc/tls.h (DB_THREAD_SELF_INCLUDE): Delete.
(DB_THREAD_SELF): Use constants for the register offsets. Correct
the case of a 64-bit debugger with a 32-bit inferior.
|
| |
|
|
|
|
|
|
|
|
|
|
| |
[BZ #14417]
A futex call with FUTEX_WAIT_REQUEUE_PI returns with the mutex locked
on success. If such a successful thread is pipped to the cond_lock by
another spuriously woken waiter, it could be sent back to wait on the
futex with the mutex lock held, thus causing a deadlock. So it is
necessary that the thread relinquishes the mutex before going back to
sleep.
|
|
|
|
| |
Fixes BZ #14251.
|