Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | More char16_t and char32_t support | Ulrich Drepper | 2012-01-07 | 11 | -85/+607 |
| | | | | It works now for UTF-8 locales | ||||
* | Do not declare gets in _GNU_SOURCE mode at all | Ulrich Drepper | 2012-01-07 | 2 | -1/+3 |
| | |||||
* | Merge branch 'master' of ssh://sourceware.org/git/glibc | Ulrich Drepper | 2012-01-07 | 4 | -6/+16 |
|\ | | | | | | | | | Conflicts: ChangeLog | ||||
| * | Fix C11 header changes for C++. | Joseph Myers | 2012-01-06 | 4 | -6/+16 |
| | | |||||
* | | Add explicit declaration of gets in C++ code | Ulrich Drepper | 2012-01-07 | 5 | -0/+13 |
| | | |||||
* | | Fix problem with reuse of test-strcpy for wide char testing | Ulrich Drepper | 2012-01-07 | 2 | -2/+9 |
|/ | |||||
* | Fix assertion in gconv's loop.c | Ulrich Drepper | 2012-01-03 | 2 | -2/+6 |
| | |||||
* | Typo in test for C11-capable compiler | Ulrich Drepper | 2012-01-03 | 2 | -4/+4 |
| | |||||
* | Merge branch 'c11' | Ulrich Drepper | 2012-01-03 | 31 | -52/+825 |
|\ | |||||
| * | Add uchar.h support, part 1 | Ulrich Drepper | 2012-01-01 | 14 | -18/+478 |
| | | | | | | | | c16 support for locales other than the C locale is still missing. | ||||
| * | More fallout from gets removal | Ulrich Drepper | 2012-01-01 | 1 | -0/+6 |
| | | |||||
| * | Better gets prototype and fallout from removal | Ulrich Drepper | 2012-01-01 | 2 | -2/+7 |
| | | |||||
| * | Fix aligned_alloc prototype | Ulrich Drepper | 2012-01-01 | 1 | -1/+2 |
| | | |||||
| * | Start of uchar.h work | Ulrich Drepper | 2012-01-01 | 2 | -1/+77 |
| | | |||||
| * | Add missing restrict in mbrtowc declaration | Ulrich Drepper | 2012-01-01 | 2 | -1/+5 |
| | | |||||
| * | Typo in CL | Ulrich Drepper | 2012-01-01 | 1 | -1/+1 |
| | | |||||
| * | Implement timespec_get | Ulrich Drepper | 2012-01-01 | 8 | -16/+154 |
| | | |||||
| * | Implement aligned_alloc | Ulrich Drepper | 2012-01-01 | 6 | -2/+32 |
| | | |||||
| * | Missed half the support for __USE_ISOC11 | Ulrich Drepper | 2012-01-01 | 1 | -0/+2 |
| | | |||||
| * | Enable at_quick_exit and quick_exit for ISO C11 | Ulrich Drepper | 2012-01-01 | 3 | -7/+7 |
| | | |||||
| * | Add __USE_ISOCXX11 | Ulrich Drepper | 2012-01-01 | 2 | -0/+13 |
| | | |||||
| * | Remove gets declaration | Ulrich Drepper | 2012-01-01 | 3 | -1/+10 |
| | | |||||
| * | Define static_assert | Ulrich Drepper | 2012-01-01 | 3 | -2/+12 |
| | | |||||
| * | Start 2.16 development | Ulrich Drepper | 2012-01-01 | 2 | -2/+4 |
| | | |||||
| * | Missing BZ | Ulrich Drepper | 2012-01-01 | 2 | -0/+8 |
| | | |||||
| * | Support C11 __STDC_SOURCE__ and _ISOC11_SOURCE | Ulrich Drepper | 2012-01-01 | 2 | -6/+15 |
| | | |||||
* | | Optimize regex a bit | Ulrich Drepper | 2012-01-03 | 2 | -4/+36 |
|/ | |||||
* | Also update new programs | Ulrich Drepper | 2012-01-01 | 5 | -8/+12 |
| | |||||
* | Update copyright year | Ulrich Drepper | 2012-01-01 | 17 | -32/+51 |
| | |||||
* | Fix up regcomp/regexec | Jakub Jelinek | 2011-12-30 | 2 | -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.15 | Ulrich Drepper | 2011-12-23 | 3 | -3/+6 |
| | |||||
* | Fix typos in comments | Marek Polacek | 2011-12-23 | 2 | -4/+7 |
| | |||||
* | Prevent warnings due to long long constants | Ulrich Drepper | 2011-12-23 | 6 | -90/+124 |
| | |||||
* | CL | Liubov Dmitrieva | 2011-12-23 | 1 | -2/+2 |
| | |||||
* | Fix overrun in destination buffer | Liubov Dmitrieva | 2011-12-23 | 3 | -508/+331 |
| | |||||
* | Add missing inline keyword | Marek Polacek | 2011-12-23 | 6 | -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 BZ | Ulrich Drepper | 2011-12-23 | 2 | -7/+8 |
| | |||||
* | Modernize time format in Swedish locale | Ulrich Drepper | 2011-12-23 | 3 | -9/+12 |
| | |||||
* | Fix wal_ET locale and build it | Ulrich Drepper | 2011-12-23 | 4 | -36/+41 |
| | |||||
* | Various fixes to fi_FI | Ulrich Drepper | 2011-12-23 | 3 | -29/+42 |
| | |||||
* | Optimize x86-32 feraiseexcept also for !__SSE_MATH__ | Ulrich Drepper | 2011-12-23 | 2 | -1/+16 |
| | |||||
* | Fix wrong copying processing for last bytes in x86-32 wcscpy | Liubov Dmitrieva | 2011-12-23 | 2 | -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-canonical | Bruno Haible | 2011-12-23 | 3 | -8/+11 |
| | |||||
* | iconv mapping of U+0385 in TCVN5712-1 is incorrect | Bruno Haible | 2011-12-23 | 3 | -11/+17 |
| | |||||
* | Add ta_LK locale | Ulrich Drepper | 2011-12-23 | 5 | -35/+133 |
| | |||||
* | Use __pthread_get_minstack in more places | Ulrich Drepper | 2011-12-22 | 3 | -4/+10 |
| | |||||
* | Create internal threads with sufficient stack size | Ulrich Drepper | 2011-12-22 | 6 | -9/+31 |
| | |||||
* | Fix fi_FI collation reordering | Ulrich Drepper | 2011-12-22 | 3 | -24/+32 |
| | |||||
* | Fix error code for too small input buffer to getnameinfo | Ulrich Drepper | 2011-12-22 | 3 | -9/+14 |
| | |||||
* | Add missing BZ | Ulrich Drepper | 2011-12-22 | 2 | -1/+2 |
| |