about summary refs log tree commit diff
Commit message (Collapse)AuthorAgeFilesLines
...
* | Add explicit declaration of gets in C++ codeUlrich Drepper2012-01-075-0/+13
| |
* | Fix problem with reuse of test-strcpy for wide char testingUlrich Drepper2012-01-072-2/+9
|/
* Fix assertion in gconv's loop.cUlrich Drepper2012-01-032-2/+6
|
* Typo in test for C11-capable compilerUlrich Drepper2012-01-032-4/+4
|
* Merge branch 'c11'Ulrich Drepper2012-01-0331-52/+825
|\
| * Add uchar.h support, part 1Ulrich Drepper2012-01-0114-18/+478
| | | | | | | | c16 support for locales other than the C locale is still missing.
| * More fallout from gets removalUlrich Drepper2012-01-011-0/+6
| |
| * Better gets prototype and fallout from removalUlrich Drepper2012-01-012-2/+7
| |
| * Fix aligned_alloc prototypeUlrich Drepper2012-01-011-1/+2
| |
| * Start of uchar.h workUlrich Drepper2012-01-012-1/+77
| |
| * Add missing restrict in mbrtowc declarationUlrich Drepper2012-01-012-1/+5
| |
| * Typo in CLUlrich Drepper2012-01-011-1/+1
| |
| * Implement timespec_getUlrich Drepper2012-01-018-16/+154
| |
| * Implement aligned_allocUlrich Drepper2012-01-016-2/+32
| |
| * Missed half the support for __USE_ISOC11Ulrich Drepper2012-01-011-0/+2
| |
| * Enable at_quick_exit and quick_exit for ISO C11Ulrich Drepper2012-01-013-7/+7
| |
| * Add __USE_ISOCXX11Ulrich Drepper2012-01-012-0/+13
| |
| * Remove gets declarationUlrich Drepper2012-01-013-1/+10
| |
| * Define static_assertUlrich Drepper2012-01-013-2/+12
| |
| * Start 2.16 developmentUlrich Drepper2012-01-012-2/+4
| |
| * Missing BZUlrich Drepper2012-01-012-0/+8
| |
| * Support C11 __STDC_SOURCE__ and _ISOC11_SOURCEUlrich Drepper2012-01-012-6/+15
| |
* | Optimize regex a bitUlrich Drepper2012-01-032-4/+36
|/
* Also update new programsUlrich Drepper2012-01-015-8/+12
|
* Update copyright yearUlrich Drepper2012-01-0117-32/+51
|
* Fix up regcomp/regexecJakub Jelinek2011-12-302-1/+6
| | | | | | | | | | | | | | | | | | | | | | The problem is that parse_bracket_symbol is miscompiled, and it turns out it is because of an incorrect attribute on re_string_fetch_byte_case. Unlike re_string_peek_byte_case, this one is really not pure, it modifies memory (increments pstr->cur_idx), and with the pure attribute GCC assumed it doesn't and it cached the presumed value of regexp->cur_idx in a variable across the for (;; ++i) { if (i >= BRACKET_NAME_BUF_SIZE) return REG_EBRACK; if (token->type == OP_OPEN_CHAR_CLASS) ch = re_string_fetch_byte_case (regexp); else ch = re_string_fetch_byte (regexp); if (re_string_eoi(regexp)) return REG_EBRACK; if (ch == delim && re_string_peek_byte (regexp, 0) == ']') break; elem->opr.name[i] = ch; }
* Preliminaries for 2.15 release glibc-2.15Ulrich Drepper2011-12-233-3/+6
|
* Fix typos in commentsMarek Polacek2011-12-232-4/+7
|
* Prevent warnings due to long long constantsUlrich Drepper2011-12-236-90/+124
|
* CLLiubov Dmitrieva2011-12-231-2/+2
|
* Fix overrun in destination bufferLiubov Dmitrieva2011-12-233-508/+331
|
* Add missing inline keywordMarek Polacek2011-12-236-6/+14
| | | | | According to http://gcc.gnu.org/ml/gcc-patches/2011-09/msg00608.html, a function without `inline' with an `always_inline' attribute is a bug.
* Add another BZUlrich Drepper2011-12-232-7/+8
|
* Modernize time format in Swedish localeUlrich Drepper2011-12-233-9/+12
|
* Fix wal_ET locale and build itUlrich Drepper2011-12-234-36/+41
|
* Various fixes to fi_FIUlrich Drepper2011-12-233-29/+42
|
* Optimize x86-32 feraiseexcept also for !__SSE_MATH__Ulrich Drepper2011-12-232-1/+16
|
* Fix wrong copying processing for last bytes in x86-32 wcscpyLiubov Dmitrieva2011-12-232-41/+26
| | | | | | | | | | | Wrong copy algorithm for last bytes, not thread safety. In some particular cases it uses the destination memory beyond the string end for 16-byte load, puts changes into that part that is relevant to destination string and writes whole 16-byte chunk into memory. I have a test case where the memory beyond the string end contains malloc/free data, that appear corrupted in case free() updates it in between the 16-byte read and 16-byte write.
* iconv mapping of 0xA8 0xEC in CP1258 is non-canonicalBruno Haible2011-12-233-8/+11
|
* iconv mapping of U+0385 in TCVN5712-1 is incorrectBruno Haible2011-12-233-11/+17
|
* Add ta_LK localeUlrich Drepper2011-12-235-35/+133
|
* Use __pthread_get_minstack in more placesUlrich Drepper2011-12-223-4/+10
|
* Create internal threads with sufficient stack sizeUlrich Drepper2011-12-226-9/+31
|
* Fix fi_FI collation reorderingUlrich Drepper2011-12-223-24/+32
|
* Fix error code for too small input buffer to getnameinfoUlrich Drepper2011-12-223-9/+14
|
* Add missing BZUlrich Drepper2011-12-222-1/+2
|
* Add feraiseexcept optimization for x86-32Ulrich Drepper2011-12-222-1/+42
|
* Also retrieve SSE exceptions in x86-32 fegetexceptflagUlrich Drepper2011-12-223-8/+28
|
* Build ur_IN localeUlrich Drepper2011-12-223-4/+8
|
* Merge branch 'master' of ssh://sourceware.org/git/glibcUlrich Drepper2011-12-226-32/+89
|\ | | | | | | | | Conflicts: ChangeLog