forked from lattera/glibc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
7214 lines (5677 loc) · 254 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2012-01-08 Ulrich Drepper <[email protected]>
* configure.in: static is always set to yes. Remove.
* config.make.in: Don't set build-static.
* Makeconfig: Remove use of build-static.
* dlfcn/Makefile: Likewise.
* elf/Makefile: Likewise.
* math/Makefile: Likewise.
* misc/Makefile: Likewise.
* nptl/Makefile: Likewise.
* sysdeps/mach/hurd/Makefile: Likewise.
* configure.in: PWD_P is not used anymore.
* config.make.in: Remove PWD_P entry.
* configure.in: Remove last remnants of RANLIB.
No need to check for signed size_t anymore.
Don't set libc_commonpagesize and libc_relro_required here for Alpha
and IA-64.
Remove __builtin_expect test because we require at least gcc 3.4.
* aclocal.m4: Likewise.
* wcsmbs/mbrtoc16.c: Implement using towc function.
* wcsmbs/wcsmbsload.h: No need for toc16 and fromc16 functions.
* wcsmbs/wcsmbsload.c: Likewise.
* iconv/gconv_simple.c: Likewise.
* iconv/gconv_int.h: Likewise.
* iconv/gconv_builtin.h: Likewise.
* iconv/iconv_prog.c: Remove CHAR16 handling.
* wcsmbs/c16rtomb.c: Remove #if 0'ed code.
* wcsmbs/mbrtowc.c: Better check for invalid inputs.
* configure.in: Remove --with-elf and --enable-bounded options.
Dont set base_machine for ia64. More non-ELF conditions removed.
Remove testing and setting of leading underscore information.
* config.make.in (build-bounded): Set to no.
* config.h.in: Remove NO_UNDERSCORES entry.
* include/libc-symbols.h: Don't define HAVE_WEAK_SYMBOLS. ELF has
them.
* csu/start.c: Remove !NO_UNDERSCORE code.
* locale/localeinfo.h: Likewise.
* sysdeps/generic/machine-gmon.h: Likewise.
* sysdeps/generic/sysdep.h: Likewise.
* sysdeps/i386/sysdep.h: Likewise.
* sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Likewise.
* sysdeps/mach/sysdep.h: Likewise.
* sysdeps/s390/s390-32/sysdep.h: Likewise.
* sysdeps/s390/s390-64/sysdep.h: Likewise.
* sysdeps/sh/sysdep.h: Likewise.
* sysdeps/sparc/sparc32/alloca.S: Likewise.
* sysdeps/unix/i386/sysdep.S: Likewise.
* sysdeps/unix/sparc/start.c: Likewise.
* sysdeps/unix/sparc/sysdep.S: Likewise.
* sysdeps/unix/sparc/sysdep.h: Likewise.
* sysdeps/unix/start.c: Likewise.
* sysdeps/unix/x86_64/sysdep.S: Likewise.
* sysdeps/x86_64/sysdep.h: Likewise.
2012-01-07 Ulrich Drepper <[email protected]>
[BZ #13553]
* misc/sys/cdefs.h: Remove __const, __signed, and __volatile definition
for non-gcc.
* argp/argp-fmtstream.h: Use const instead __const.
* argp/argp.h: Likewise.
* assert/assert.h: Likewise.
* bits/fenv.h: Likewise.
* bits/sched.h: Likewise.
* bits/sigset.h: Likewise.
* bits/sigthread.h: Likewise.
* catgets/nl_types.h: Likewise.
* conform/data/pthread.h-data: Likewise.
* crypt/crypt-private.h: Likewise.
* crypt/crypt.h: Likewise.
* crypt/crypt_util.c: Likewise.
* ctype/ctype.h: Likewise.
* debug/execinfo.h: Likewise.
* debug/mbsnrtowcs_chk.c: Likewise.
* debug/mbsrtowcs_chk.c: Likewise.
* debug/wcsnrtombs_chk.c: Likewise.
* debug/wcsrtombs_chk.c: Likewise.
* debug/wcstombs_chk.c: Likewise.
* dirent/dirent.h: Likewise.
* dlfcn/dlfcn.h: Likewise.
* elf/neededtest4.c: Likewise.
* grp/grp.h: Likewise.
* gshadow/gshadow.h: Likewise.
* iconv/gconv.h: Likewise.
* iconv/gconv_int.h: Likewise.
* iconv/gconv_simple.c: Likewise.
* iconv/iconv.h: Likewise.
* iconv/loop.c: Likewise.
* iconv/skeleton.c: Likewise.
* include/aio.h: Likewise.
* include/aliases.h: Likewise.
* include/argz.h: Likewise.
* include/arpa/inet.h: Likewise.
* include/assert.h: Likewise.
* include/dirent.h: Likewise.
* include/dlfcn.h: Likewise.
* include/execinfo.h: Likewise.
* include/fcntl.h: Likewise.
* include/fenv.h: Likewise.
* include/glob.h: Likewise.
* include/grp.h: Likewise.
* include/libintl.h: Likewise.
* include/mntent.h: Likewise.
* include/netdb.h: Likewise.
* include/pwd.h: Likewise.
* include/rpc/netdb.h: Likewise.
* include/sched.h: Likewise.
* include/search.h: Likewise.
* include/shadow.h: Likewise.
* include/signal.h: Likewise.
* include/stdio.h: Likewise.
* include/stdlib.h: Likewise.
* include/string.h: Likewise.
* include/sys/socket.h: Likewise.
* include/sys/stat.h: Likewise.
* include/sys/statfs.h: Likewise.
* include/sys/statvfs.h: Likewise.
* include/sys/syslog.h: Likewise.
* include/sys/time.h: Likewise.
* include/sys/uio.h: Likewise.
* include/time.h: Likewise.
* include/unistd.h: Likewise.
* include/utmp.h: Likewise.
* include/wchar.h: Likewise.
* include/wctype.h: Likewise.
* inet/aliases.h: Likewise.
* inet/arpa/inet.h: Likewise.
* inet/netinet/ether.h: Likewise.
* inet/netinet/in.h: Likewise.
* intl/libintl.h: Likewise.
* io/bits/fcntl2.h: Likewise.
* io/fcntl.h: Likewise.
* io/ftw.h: Likewise.
* io/sys/poll.h: Likewise.
* io/sys/stat.h: Likewise.
* io/sys/statfs.h: Likewise.
* io/sys/statvfs.h: Likewise.
* io/utime.h: Likewise.
* libio/bits/stdio.h: Likewise.
* libio/bits/stdio2.h: Likewise.
* libio/libio.h: Likewise.
* libio/libioP.h: Likewise.
* libio/stdio.h: Likewise.
* locale/lc-ctype.c: Likewise.
* locale/locale.h: Likewise.
* login/utmp.h: Likewise.
* malloc/arena.c: Likewise.
* malloc/malloc.c: Likewise.
* malloc/malloc.h: Likewise.
* malloc/mcheck.c: Likewise.
* malloc/mtrace.c: Likewise.
* math/bits/mathcalls.h: Likewise.
* math/fenv.h: Likewise.
* math/math_private.h: Likewise.
* misc/bits/error.h: Likewise.
* misc/bits/syslog.h: Likewise.
* misc/err.h: Likewise.
* misc/error.h: Likewise.
* misc/fstab.h: Likewise.
* misc/mntent.h: Likewise.
* misc/regexp.h: Likewise.
* misc/search.h: Likewise.
* misc/sgtty.h: Likewise.
* misc/sys/mman.h: Likewise.
* misc/sys/syslog.h: Likewise.
* misc/sys/uio.h: Likewise.
* misc/sys/xattr.h: Likewise.
* misc/ttyent.h: Likewise.
* nis/rpcsvc/ypclnt.h: Likewise.
* nss/nss.h: Likewise.
* posix/bits/unistd.h: Likewise.
* posix/fnmatch.h: Likewise.
* posix/glob.h: Likewise.
* posix/sched.h: Likewise.
* posix/spawn.h: Likewise.
* posix/sys/wait.h: Likewise.
* posix/unistd.h: Likewise.
* posix/wordexp.h: Likewise.
* pwd/pwd.h: Likewise.
* resolv/netdb.h: Likewise.
* resource/sys/resource.h: Likewise.
* rt/aio.h: Likewise.
* rt/bits/mqueue2.h: Likewise.
* rt/mqueue.h: Likewise.
* shadow/shadow.h: Likewise.
* signal/signal.h: Likewise.
* socket/send.c: Likewise.
* socket/sendto.c: Likewise.
* socket/sys/socket.h: Likewise.
* stdio-common/printf.h: Likewise.
* stdlib/bits/stdlib.h: Likewise.
* stdlib/fmtmsg.h: Likewise.
* stdlib/monetary.h: Likewise.
* stdlib/stdlib.h: Likewise.
* stdlib/ucontext.h: Likewise.
* streams/stropts.h: Likewise.
* string/argz.h: Likewise.
* string/bits/string2.h: Likewise.
* string/string.h: Likewise.
* string/strings.h: Likewise.
* sunrpc/rpc/auth.h: Likewise.
* sunrpc/rpc/auth_des.h: Likewise.
* sunrpc/rpc/clnt.h: Likewise.
* sunrpc/rpc/netdb.h: Likewise.
* sunrpc/rpc/pmap_clnt.h: Likewise.
* sunrpc/rpc/xdr.h: Likewise.
* sysdeps/generic/inttypes.h: Likewise.
* sysdeps/generic/net/if.h: Likewise.
* sysdeps/generic/sys/swap.h: Likewise.
* sysdeps/gnu/net/if.h: Likewise.
* sysdeps/gnu/utmpx.h: Likewise.
* sysdeps/i386/fpu/bits/fenv.h: Likewise.
* sysdeps/i386/i486/bits/string.h: Likewise.
* sysdeps/ieee754/ldbl-opt/nldbl-strtold_l.c: Likewise.
* sysdeps/s390/bits/string.h: Likewise.
* sysdeps/s390/fpu/bits/fenv.h: Likewise.
* sysdeps/sparc/fpu/bits/fenv.h: Likewise.
* sysdeps/sparc/fpu/bits/mathinline.h: Likewise.
* sysdeps/unix/sysv/linux/bits/resource.h: Likewise.
* sysdeps/unix/sysv/linux/bits/sched.h: Likewise.
* sysdeps/unix/sysv/linux/bits/sigset.h: Likewise.
* sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
* sysdeps/unix/sysv/linux/bits/sys_errlist.h: Likewise.
* sysdeps/unix/sysv/linux/bits/uio.h: Likewise.
* sysdeps/unix/sysv/linux/i386/glob64.c: Likewise.
* sysdeps/unix/sysv/linux/i386/olddirent.h: Likewise.
* sysdeps/unix/sysv/linux/preadv.c: Likewise.
* sysdeps/unix/sysv/linux/prlimit.c: Likewise.
* sysdeps/unix/sysv/linux/pwritev.c: Likewise.
* sysdeps/unix/sysv/linux/readv.c: Likewise.
* sysdeps/unix/sysv/linux/s390/s390-32/utmp-convert.h: Likewise.
* sysdeps/unix/sysv/linux/s390/s390-32/utmpx32.h: Likewise.
* sysdeps/unix/sysv/linux/sparc/bits/socket.h: Likewise.
* sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Likewise.
* sysdeps/unix/sysv/linux/sparc/sparc64/sigaction.c: Likewise.
* sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Likewise.
* sysdeps/unix/sysv/linux/sparc/sys/timerfd.h: Likewise.
* sysdeps/unix/sysv/linux/sys/acct.h: Likewise.
* sysdeps/unix/sysv/linux/sys/epoll.h: Likewise.
* sysdeps/unix/sysv/linux/sys/mount.h: Likewise.
* sysdeps/unix/sysv/linux/sys/swap.h: Likewise.
* sysdeps/unix/sysv/linux/sys/timerfd.h: Likewise.
* sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
* sysdeps/x86_64/fpu/bits/fenv.h: Likewise.
* sysdeps/x86_64/strcasecmp_l-nonascii.c: Likewise.
* sysdeps/x86_64/strncase_l-nonascii.c: Likewise.
* sysvipc/sys/ipc.h: Likewise.
* sysvipc/sys/msg.h: Likewise.
* sysvipc/sys/sem.h: Likewise.
* sysvipc/sys/shm.h: Likewise.
* termios/termios.h: Likewise.
* time/sys/time.h: Likewise.
* time/time.h: Likewise.
* wcsmbs/bits/wchar2.h: Likewise.
* wcsmbs/uchar.h: Likewise.
* wcsmbs/wchar.h: Likewise.
* wctype/wctype.h: Likewise.
[BZ #13551]
* Makeconfig: Remove all but ELF support including AIX support.
* Makerules: Likewise.
* config.h.in: Likewise.
* config.make.in: Likewise.
* configure: Likewise.
* configure.in: Likewise.
* csu/Makefile: Likewise.
* csu/version.c: Likewise.
* debug/Makefile: Likewise.
* dlfcn/Makefile: Likewise.
* elf/Makefile: Likewise.
* extra-lib.mk: Likewise.
* iconv/Makefile: Likewise.
* include/libc-symbols.h: Likewise.
* include/shlib-compat.h: Likewise.
* resolv/Makefile: Likewise.
* resolv/res_libc.c: Likewise.
* rt/Makefile: Likewise.
* sysdeps/i386/asm-syntax.h: Likewise.
* sysdeps/i386/sysdep.h: Likewise.
* sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h: Likewise.
* sysdeps/mach/sysdep.h: Likewise.
* sysdeps/powerpc/powerpc32/Makefile: Likewise.
* sysdeps/powerpc/powerpc64/Makefile: Likewise.
* sysdeps/s390/asm-syntax.h: Likewise.
* sysdeps/s390/s390-32/sysdep.h: Likewise.
* sysdeps/s390/s390-64/sysdep.h: Likewise.
* sysdeps/sh/sysdep.h: Likewise.
* sysdeps/unix/sparc/sysdep.h: Likewise.
* sysdeps/wordsize-32/divdi3.c: Likewise.
* sysdeps/x86_64/sysdep.h: Likewise.
* argp/Versions: Remove _argp_unlock_xxx.
[BZ #13559]
* abilist/ld.abilist: Update. Adjust for removal of tls option.
* abilist/libBrokenLocale.abilist: Likewise.
* abilist/libanl.abilist: Likewise.
* abilist/libc.abilist: Likewise.
* abilist/libcrypt.abilist: Likewise.
* abilist/libdl.abilist: Likewise.
* abilist/libm.abilist: Likewise.
* abilist/libnsl.abilist: Likewise.
* abilist/libpthread.abilist: Likewise.
* abilist/libresolv.abilist: Likewise.
* abilist/librt.abilist: Likewise.
* abilist/libthread_db.abilist: Likewise.
* abilist/libutil.abilist: Likewise.
* abilist/libnss_db.abilist: New file.
* scripts/abilist.awk: Add support for indirect functions.
* sysdeps/unix/sysv/linux/configure.in: Remove m68k support.
* sysdeps/generic/ldsodefs.h: Remove Alpha support.
* shlib-versions: Remove entries for ports architectures.
* elf/tls-macros.h: Remove support for Alpha and IA-64. Should be in
files in ports.
* elf/stackguard-macros.h: Remove support for IA-64.
* elf/tst-auditmod1.c: Likewise.
* sysdeps/generic/ldsodefs.h: Likewise.
* sysdeps/unix/sysv/linux/configure.in: Ports should define
libc_cv_gcc_unwind_find_fde and arch_minimum_kernel in their
configure files.
[BZ #13552]
* configure.in: Remove --enable-omitfp support.
* FAQ.in: Adjust.
* config.make.in: Likewise.
* Makeconfig: Likewise.
* manual/install.texi: Likewise.
In case anyone cares, the IA-64 architecture could move to ports.
* sysdeps/ia64/*: Removed.
* sysdeps/unix/sysv/linux/ia64/*: Removed.
* sysdeps/unix/sysv/linux/kernel-features.h: Remove IA-64 support.
[BZ #13555]
* configure.in: Remove entries for unsupported architectures.
[BZ #13533]
* iconv/gconv_builtin.h: Use CHAR16 for the char16_t conversions.
* iconv/gconv_simple.c: Rename char16_t routines. Add char16_t<->utf8
routines.
* iconv/gconv_int.h: Adjust prototypes for char16_t routines.
* iconv/iconv_prog.c: Recognize CHAR16 as internal name.
* wcsmbs/c16rtomb.c: Fix a few problems. Disable all the code and
fall back to using wcrtomb.
* wcsmbs/mbrtoc16.: Fix implementation to handle real conversions.
* wcsmbs/wcsmbsload.c: Make char16 routines optional. Adjust for
renaming.
* wcsmbs/Makefile (tests): Add tst-c16c32-1:
* wcsmbs/tst-c16c32-1.c: New file.
* wcsmbs/wcrtomb.c: Use MB_LEN_MAX instead of MB_CUR_MAX for sizing
local variable.
* libio/stdio.h: Do not declare gets at all for _GNU_SOURCE.
* elf/tst-unique3.cc: Add explicit declaration of gets.
* elf/tst-unique3lib.cc: Likewise.
* elf/tst-unique3lib2.cc: Likewise.
* elf/tst-unique4.cc: Likewise.
* string/test-strcpy.c (do_one_test): Fix format string for WIDE use.
2012-01-06 Joseph Myers <[email protected]>
[BZ #13566]
* assert/assert.h (static_assert): Don't define for C++.
* libio/stdio.h (gets): Do declare for C++ <= C++11.
* wcsmbs/uchar.h (char16_t, char32_t): Don't typedef for C++11.
2012-01-03 Ulrich Drepper <[email protected]>
* iconv/loop.c (single loop): Fix assertion in storing of
remaining bytes.
* posix/regcomp.c (init_word_char): Optimize a bit for sane encodings.
2012-01-01 Ulrich Drepper <[email protected]>
* posix/getconf.c: Update copyright year.
* nss/getent.c: Likewise.
* nss/makedb.c: Likewise.
* iconv/iconvconfig.c: Likewise.
* iconv/iconv_prog.c: Likewise.
* elf/ldconfig.c: Likewise.
* elf/pldd.c: Likewise.
* elf/sotruss.ksh: Likewise.
* catgets/gencat.c: Likewise.
* csu/version.c: Likewise.
* elf/ldd.bash.in: Likewise.
* elf/sprof.c (print_version): Likewise.
* locale/programs/locale.c: Likewise.
* locale/programs/localedef.c: Likewise.
* login/programs/pt_chown.c: Likewise.
* nscd/nscd.c (print_version): Likewise.
* debug/xtrace.sh: Likewise.
* malloc/memusage.sh: Likewise.
* malloc/mtrace.pl: Likewise.
* debug/catchsegv.sh: Likewise.
2011-12-30 Jakub Jelinek <[email protected]>
* posix/regex_internal.c (re_string_fetch_byte_case): Remove
pure attribute.
2011-12-24 Ulrich Drepper <[email protected]>
[BZ #13533]
* iconv/gconv_simple.c: Add ASCII<->UTF-16 transformations.
* iconv/gconv_builtin.h: Add entries for internal ASCII<->UTF-16
transformations.
* iconv/gconv_int.h: Likewise.
* wcsmbs/Makefile (routines): Add mbrtoc16 and c16rtomb.
* wcsmbs/Versions: Export mbrtoc16, c16rtomb, mbrtoc32, c32rtomb
from libc for GLIBC_2.16.
* wcsmbs/mbrtowc.c: Define mbrtoc32 alias.
* wcsmbs/wcrtomb.c: Define c32rtomb alias.
* wcsmbs/uchar.h: Really define mbstate_t.
* wcsmbs/wchar.h: Allow defining mbstate_t in uchar.h.
* wcsmbs/c16rtomb.c: New file.
* wcsmbs/mbrtoc16.c: New file.
* wcsmbs/wcsmbsload.c: Add static definitions for c16 conversions
for C/POSIX locale.
(__wcsmbs_load_conv): Do not fill in c16 routines yet.
* wcsmbs/wcsmbsload.h (gconv_fcts): Add entries for c16 routines.
* wcsmbs/wchar.h: Add missing __restrict.
2011-12-23 Ulrich Drepper <[email protected]>
[BZ #13532]
* time/Makefile (routines): Add timespec_get.
* time/Versions: Export timespec_get from libc for GLIBC_2.16.
* time/time.h: Define TIME_UTC and declare timespec_get. Define
timespec for ISO C11.
* time/timespec_get.c: New file.
* sysdeps/unix/sysv/linux/timespec_get.c: New file.
* sysdeps/unix/sysv/linux/x86_64/timespec_get.c: New file.
[BZ #13531]
* malloc/malloc.c: Define alias aligned_alloc for public_mEMALIGn.
* stdlib/stdlib.h: Declare aligned_alloc.
* Versions.def: Add GLIBC_2.16 for libc.
* malloc/Versions: Export aligned_alloc from libc for GLIBC_2.16.
[BZ 13527]
* stdlib/stdlib.h: Make at_quick_exit and quick_exit available for
ISO C11.
* include/features.h: Define __USE_ISOCXX11 when compiling ISO C++11
code.
[BZ #13528]
* libio/stdio.h: Do not declare gets for ISO C11 and _GNU_SOURCE.
[BZ #13529]
* assert/assert.h (static_assert): Define.
* version.h: Update for 2.16 development version.
[BZ #13526]
* include/features.h: Handle __STDC_VERSION__ >= 201112 and
_ISOC11_SOURCE.
* version.h (RELEASE): Bump for 2.15 release.
* include/features.h (__GLIBC_MINOR__): Bump to 15.
* sysdeps/x86_64/dl-machine.h: Fix typos in comments.
Patch by Marek Polacek <[email protected]>.
* bits/byteswap.h: Protect long long constants with __extension__.
* sysdeps/i386/bits/byteswap.h: Likewise.
* sysdeps/ia64/bits/byteswap.h: Likewise.
* sysdeps/s390/bits/byteswap.h: Likewise.
* sysdeps/x86_64/bits/byteswap.h: Likewise.
2011-12-23 Liubov Dmitrieva <[email protected]>
[BZ #13540]
* sysdeps/x86_64/multiarch/strcpy-ssse3.S: Fix overrun in
destination buffer.
* sysdeps/x86_64/multiarch/wcscpy-ssse3.S: Likewise.
2011-12-23 Marek Polacek <[email protected]>
* elf/dl-addr.c (determine_info): Add inline keyword.
* elf/tst-auditmod4b.c (check_avx): Likewise.
* elf/tst-auditmod6b.c (check_avx): Likewise.
* elf/tst-auditmod6c.c (check_avx): Likewise.
* elf/tst-auditmod7b.c (check_avx): Likewise.
2011-12-23 Ulrich Drepper <[email protected]>
* sysdeps/i386/fpu/bits/fenv.h (feraiseexcept): Also enable for
!__SSE_MATH__.
2011-12-23 Liubov Dmitrieva <[email protected]>
[BZ #13540]
* sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: Fix wrong copying
processing for last bytes.
2011-08-06 Bruno Haible <[email protected]>
[BZ #13061]
* iconvdata/cp1258.c (comp_table_data): Combine U+00A8 U+0301 to
U+0385, not to U+1FEE.
[BZ #13062]
* iconvdata/tcvn5712-1.c (comp_table_data): Remove useless and wrong
entry for U+00A5 U+0301.
2011-12-22 Ulrich Drepper <[email protected]>
[BZ #13166]
* inet/getnameinfo.c (getnameinfo): Return EAI_OVERFLOW if the
buffer for the output is too small.
* sysdeps/i386/fpu/bits/fenv.h [__SSE_MATH__]: Add feraiseexcept
optimization.
[BZ #13185]
* sysdeps/i386/fpu/fgetexcptflg.c (__fegetexceptflag): Also return
SSE flags if possible.
2011-12-22 Liubov Dmitrieva <[email protected]>
[BZ #13540]
* sysdeps/i386/i686/multiarch/strcpy-ssse3.S: Fix wrong copying
processing for last bytes.
2011-12-22 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/Makefile (syscall-list-variants)
(syscall-list-default-options, syscall-list-default-condition)
(syscall-list-includes): Define.
($(objpfx)syscall-%.h $(objpfx)syscall-%.d): Support arbitrary
list of ABIs and options and #if conditions for each ABI. Do not
handle common syscalls between ABIs specially.
* sysdeps/unix/sysv/linux/powerpc/Makefile (64bit-predefine):
Remove.
(syscall-list-variants, syscall-list-32bit-options)
(syscall-list-32bit-condition, syscall-list-64bit-options)
(syscall-list-64bit-condition): Define.
* sysdeps/unix/sysv/linux/s390/Makefile (64bit-predefine): Remove.
(syscall-list-variants, syscall-list-32bit-options)
(syscall-list-32bit-condition, syscall-list-64bit-options)
(syscall-list-64bit-condition): Define.
* sysdeps/unix/sysv/linux/sparc/Makefile (64bit-predefine):
Remove.
(syscall-list-variants, syscall-list-32bit-options)
(syscall-list-32bit-condition, syscall-list-64bit-options)
(syscall-list-64bit-condition): Define.
* sysdeps/unix/sysv/linux/x86_64/Makefile (64bit-predefine):
Remove.
(syscall-list-variants, syscall-list-32bit-options)
(syscall-list-32bit-condition, syscall-list-64bit-options)
(syscall-list-64bit-condition): Define.
2011-12-22 Ulrich Drepper <[email protected]>
* locale/iso-639.def: Add brx entry.
[BZ #13328]
* malloc/mtrace.c (tr_freehook): Avoid unnecessary unlock/lock.
Proposed by Mariusz_Cukr <[email protected]>.
* sysdeps/x86_64/fpu/bits/fenv.h: Use __REDIRECT_NTH for
__feraiseexcept_renamed.
2011-12-21 Ulrich Drepper <[email protected]>
[BZ #13538]
* sysdeps/unix/sysv/linux/sys/epoll.h: Initialize EPOLLONESHOT and
EPOLLET with unsigned values.
* sysdeps/unix/sysv/linux/x86_64/sys/epoll.h: Likewise.
* sysdeps/unix/sysv/linux/sparc/sys/epoll.h: Likewise.
* math/s_cacosh.c: Use Kahan's formula if the subtraction could lead
to large cancellation.
* math/s_cacoshf.c: Likewise.
* math/s_cacoshl.c: Likewise.
2011-11-18 Richard B. Kreckel <[email protected]>
[BZ #13305]
[BZ #12786]
* math/s_cacosh.c: Fix rare miscomputation in cacosh().
* math/s_cacoshf.c: Likewise.
* math/s_cacoshl.c: Likewise.
2011-12-21 Ulrich Drepper <[email protected]>
[BZ #13439]
* iconv/gconv.h: Define __GCONV_SWAP.
* iconvdata/unicode.c: The swap bit must be stored in __flags.
* iconvdata/utf-16.c: Likewise.
* iconvdata/utf-32.c: Likewise.
2011-12-21 Andreas Schwab <[email protected]>
[BZ #13524]
* stdlib/strtod_l.c (____STRTOF_INTERNAL): Clear lowest limb of
numerator after shifting it by one limb.
2011-12-19 Rafael Ávila de Espíndola <[email protected]>
* sysdeps/x86_64/fpu/bits/fenv.h (feraiseexcept): Define it only
under [__USE_EXTERN_INLINES].
2011-12-17 Ulrich Drepper <[email protected]>
[BZ #13446]
* stdio-common/vfprintf.c (vfprintf): Fix extension of specs array.
2011-11-22 Adhemerval Zanella <[email protected]>
* sysdeps/powerpc/Makefile: Added locale-defines.sym generation.
* sysdeps/powerpc/locale-defines.sym: Locale definitions for strcasecmp
optimized code.
* sysdeps/powerpc/powerpc32/power7/Makefile: New file.
* sysdeps/powerpc/powerpc32/power7/strcasecmp.S: New file.
* sysdeps/powerpc/powerpc32/power7/strcasecmp_l.S: New file.
* sysdeps/powerpc/powerpc64/power7/Makefile: Added unroll-loop option
for strncasecmp/strncasecmp_l compilation.
* sysdeps/powerpc/powerpc64/power7/strcasecmp.S: New file.
* sysdeps/powerpc/powerpc64/power7/strcasecmp_l.S: New file.
2011-12-08 Marek Polacek <[email protected]>
[BZ #13484]
* math/bits/math-finite.h: Use __REDIRECT_NTH and __NTH instead
of __asm__.
2011-12-17 Ulrich Drepper <[email protected]>
[BZ #13506]
* time/tzfile.c (__tzfile_read): Check values from file header.
2011-11-21 Will Schmidt <[email protected]>
* powerpc/powerpc32/sysdep.h: Define SETUP_GOT_ACCESS() macro.
* powerpc/powerpc32/a2/memcpy.S: Use SETUP_GOT_ACCESS() macro.
* powerpc/powerpc32/dl-start.S: Likewise.
* powerpc/powerpc32/elf/start.S: Likewise.
* powerpc/powerpc32/fpu/__longjmp-common.S: Likewise.
* powerpc/powerpc32/fpu/s_ceil.S: Likewise.
* powerpc/powerpc32/fpu/s_ceilf.S: Likewise.
* powerpc/powerpc32/fpu/s_floor.S: Likewise.
* powerpc/powerpc32/fpu/s_floorf.S: Likewise.
* powerpc/powerpc32/fpu/s_lround.S: Likewise.
* powerpc/powerpc32/fpu/s_rint.S: Likewise.
* powerpc/powerpc32/fpu/s_rintf.S: Likewise.
* powerpc/powerpc32/fpu/s_round.S: Likewise.
* powerpc/powerpc32/fpu/s_roundf.S: Likewise.
* powerpc/powerpc32/fpu/s_trunc.S: Likewise.
* powerpc/powerpc32/fpu/s_truncf.S: Likewise.
* powerpc/powerpc32/fpu/setjmp-common.S: Likewise.
* powerpc/powerpc32/memset.S: Likewise.
* powerpc/powerpc32/power4/fpu/s_llround.S: Likewise.
* powerpc/powerpc32/power4/fpu/w_sqrt.S: Likewise.
* powerpc/powerpc32/power4/fpu/w_sqrtf.S: Likewise.
* powerpc/powerpc32/power5/fpu/w_sqrt.S: Likewise.
* powerpc/powerpc32/power5/fpu/w_sqrtf.S: Likewise.
* powerpc/powerpc32/power7/fpu/s_finite.S: Likewise.
* powerpc/powerpc32/power7/fpu/s_isinf.S: Likewise.
* powerpc/powerpc32/power7/fpu/s_isnan.S: Likewise.
* unix/sysv/linux/powerpc/powerpc32/____longjmp_chk.S: Likewise.
* unix/sysv/linux/powerpc/powerpc32/brk.S: Likewise.
* unix/sysv/linux/powerpc/powerpc32/getcontext-common.S: Likewise.
* unix/sysv/linux/powerpc/powerpc32/setcontext-common.S: Likewise.
* unix/sysv/linux/powerpc/powerpc32/swapcontext-common.S: Likewise.
2011-11-18 Adhemerval Zanella <[email protected]>
* math/libm-test.inc: Added more nearbyint tests.
* sysdeps/powerpc/powerpc32/fpu/s_nearbyint.S: New file.
* sysdeps/powerpc/powerpc32/fpu/s_nearbyintf.S: New file.
* sysdeps/powerpc/powerpc64/fpu/s_nearbyint.S: New file.
* sysdeps/powerpc/powerpc64/fpu/s_nearbyintf.S: New file.
2011-11-21 Ross Lagerwall <[email protected]>
* resolv/res_init.c (__res_vinit): Open /etc/resolv.conf with
FD_CLOEXEC.
2011-11-14 Liubov Dmitrieva <[email protected]>
* sysdeps/x86_64/multiarch/Makefile [subdir=wcsmbs] (sysdep_routines):
Add wcscpy-ssse3 wcscpy-c.
* sysdeps/x86_64/multiarch/wcscpy-ssse3.S: New file.
* sysdeps/x86_64/multiarch/wcscpy-c.c: New file.
* sysdeps/x86_64/multiarch/wcscpy.S: New file.
* sysdeps/x86_64/wcschr.S: New file.
* sysdeps/x86_64/wcsrchr.S: New file.
* string/test-strcmp.c: Remove checking of wcscmp function for
wrong alignments.
* sysdeps/i386/i686/multiarch/Makefile [subdir=wcsmbs]
(sysdep_routines): Add wcscpy-ssse3 wcscpy-c wcschr-sse2 wcschr-c
wcsrchr-sse2 wcsrchr-c.
* sysdeps/i386/i686/multiarch/wcschr.S: New file.
* sysdeps/i386/i686/multiarch/wcschr-c.c: New file.
* sysdeps/i386/i686/multiarch/wcschr-sse2.S: New file.
* sysdeps/i386/i686/multiarch/wcsrchr.S: New file.
* sysdeps/i386/i686/multiarch/wcsrchr-c.c: New file.
* sysdeps/i386/i686/multiarch/wcsrchr-sse2.S: New file.
* sysdeps/i386/i686/multiarch/wcscpy.S: New file.
* sysdeps/i386/i686/multiarch/wcscpy-c.c: New file.
* sysdeps/i386/i686/multiarch/wcscpy-ssse3.S: New file.
* wcsmbc/wcschr.c (WCSCHR): New macro.
2011-11-17 Liubov Dmitrieva <[email protected]>
* wcsmbs/Makefile (strop-tests): Add wcsrchr wcscpy.
* wcsmbs/test-wcsrchr.c: New file.
* string/test-strrchr.c: Add wcsrchr support.
(WIDE): New macro.
* wcsmbs/test-wcscpy.c: New file.
* string/test-strcpy.c: Add wcscpy support.
(WIDE): New macro.
2011-12-10 Ulrich Drepper <[email protected]>
* sysdeps/generic/dl-hash.h (_dl_elf_hash): Lift one operation out of
the inner loop.
2011-12-06 Andreas Schwab <[email protected]>
[BZ #13472]
* sysdeps/powerpc/fpu/e_hypot.c (twoM600): Correct value.
2011-12-04 Ulrich Drepper <[email protected]>
* sysdeps/generic/dl-hash.h (_dl_elf_hash): Fix attribute.
Minor optimizations.
* sunrpc/clnt_unix.c (clntunix_control): Fix aliasing issues.
* sunrpc/clnt_tcp.c (clnttcp_control): Likewise.
* sunrpc/clnt_udp.c (clntudp_call): Likewise.
2011-12-03 Ulrich Drepper <[email protected]>
* inet/netinet/in.h: Provide versions of IN6_IS_ADDR_UNSPECIFIED,
IN6_IS_ADDR_LOOPBACK, IN6_IS_ADDR_LINKLOCAL, IN6_IS_ADDR_SITELOCAL,
IN6_IS_ADDR_V4MAPPED, IN6_IS_ADDR_V4COMPAT, and IN6_ARE_ADDR_EQUAL
for gcc to avoid warnings.
* inet/Makefile (tests): Add tst-checks.
* inet/tst-checks.c: New file.
* sysdeps/generic/dl-hash.h (_dl_elf_hash): Add attribute to avoid
warning.
* sysdeps/x86_64/multiarch/wmemcmp-c.c: Provide prototype for
__wmemcmp_sse2.
* sysdeps/x86_64/fpu/s_scalbln.c: Removed.
* sysdeps/x86_64/fpu/s_scalbn.c: Removed.
* malloc/mcheck.h: Fix use of incorrect encoding in comment.
2011-12-02 Ulrich Drepper <[email protected]>
* nis/nis_findserv.c (__nis_findfastest_with_timeout): Avoid aliasing
problem.
* nscd/aicache.c (addhstaiX): Avoid unused variable warning.
2011-11-29 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/sh/bits/atomic.h (rNOSP): Define
conditional on GCC version.
(__arch_compare_and_exchange_val_8_acq)
(__arch_compare_and_exchange_val_16_acq)
(__arch_compare_and_exchange_val_32_acq, atomic_exchange_and_add)
(atomic_add, atomic_add_negative, atomic_add_zero, atomic_bit_set)
(atomic_bit_test_set): Use rNOSP instead of "r" constraints.
2011-12-02 Joseph Myers <[email protected]>
* sysdeps/sh/backtrace.c: New file.
2011-12-02 Andreas Schwab <[email protected]>
* misc/bits/select2.h (__FD_ELT): Mark as extension. Add
parenthesis.
2011-12-01 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/futimes.c: Truncate time values when
falling back to utime.
2011-11-30 Andreas Schwab <[email protected]>
* sysdeps/s390/fpu/libm-test-ulps: Relax cpow (2 + 3 i, 4 + 0 i)
expectations for float.
2011-11-29 Andreas Schwab <[email protected]>
* locale/weight.h (findidx): Add parameter len.
* locale/weightwc.h (findidx): Likewise.
* posix/fnmatch_loop.c (FCT): Adjust caller.
* posix/regcomp.c (build_equiv_class): Likewise.
* posix/regex_internal.h (re_string_elem_size_at): Likewise.
* posix/regexec.c (check_node_accept_bytes): Likewise.
* string/strcoll_l.c (STRCOLL): Likewise.
* string/strxfrm_l.c (STRXFRM): Likewise.
2011-11-17 Ulrich Drepper <[email protected]>
* Makefile.in: Remove CVSOPT handling.
* configure.in: Remove use of AC_REVISION.
* iconvdata/Makefile (distribute): No need to filter out CVS.
* scripts/list-sources.sh: Remove CVS, subversion and monotone
handling.
2011-11-16 Andreas Schwab <[email protected]>
* sysdeps/i386/i686/multiarch/strcmp-ssse3.S
[USE_AS_STRCASECMP_L]: Fix argument offsets for non-PIC.
[USE_AS_STRNCASECMP_L]: Likewise.
(__strcasecmp_ssse3, __strncasecmp_ssse3): Handle
NO_TLS_DIRECT_SEG_REFS.
* sysdeps/i386/i686/multiarch/strcmp-sse4.S [USE_AS_STRCASECMP_L]:
Fix argument offsets for non-PIC.
[USE_AS_STRNCASECMP_L]: Likewise.
(__strcasecmp_sse4_2, __strncasecmp_sse4_2): Handle
NO_TLS_DIRECT_SEG_REFS.
2011-11-15 Ulrich Drepper <[email protected]>
* locale/loadarchive.c (_nl_load_locale_from_archive): Open files with
O_CLOEXEC.
* locale/loadlocale.c (_nl_load_locale): Likewise.
2011-11-15 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/clock_gettime.c (SYSDEP_GETTIME_CPU)
[__ASSUME_POSIX_CPU_TIMERS > 0]: Assign to retval and break.
* sysdeps/unix/sysv/linux/x86_64/clock_gettime.c
(SYSCALL_GETTIME): Set errno on error.
* sysdeps/unix/sysv/linux/check_pf.c (make_request): Properly
count references to noai6ai_cached.
2011-11-15 Ulrich Drepper <[email protected]>
* time/getdate.c (__getdate_r): Set FD_CLOEXEC for given file.
* sysdeps/unix/sysv/linux/readonly-area.c (__readonly_area): Set
FD_CLOEXEC for /proc/self/maps.
* sysdeps/unix/sysv/linux/getsysstats.c (phys_pages_info): Set
FD_CLOEXEC for /proc/meminfo.
* sysdeps/posix/getaddrinfo.c (gaiconf_init): Set FD_CLOEXEC for
gai.conf.
* resolv/res_query.c (res_hostalias): Don't allow cancellation and set
FD_CLOEXEC for given file.
* resolv/res_hconf.c (do_init): Set FD_CLOEXEC for host.conf.
* resolv/gethnamaddr.c (_sethtent): Don't allow cancellation and set
FD_CLOEXEC for /etc/hosts.
(_gethtent): Likewise.
* nss/nsswitch.c (nss_parse_file): Set FD_CLOEXEC.
* nss/nss_files/files-netgrp.c (_nss_files_setnetgrent): Don't allow
cancellation and set FD_CLOEXEC for /etc/netgroup.
* nss/nss_files/files-key.c (search): Don't allow cancellation when
reading /etc/publickey.
* nss/nss_files/files-initgroups.c (_nss_files_initgroups_dyn): Don't
allow cancellation when reading /etc/group.
* nss/nss_files/files-alias.c (internal_setent): Don't allow
cancellation.
(get_next_alias): Likewise for included file. Also set FD_CLOEXEC.
* nss/nss_files/files-XXX.c (internal_setent): Don't allow cancellation
when using data file.
* nis/nss-default.c (init): Set FD_CLOEXEC for /etc/default/nss.
* nis/nis_file.c (read_nis_obj): Set FD_CLOEXEC.
(write_nis_obj): Use "c" and "e" in fopen.
* misc/mntent_r.c (__setmntent): Also append e to fopen format.
* misc/getusershell.c (initshells): Set FD_CLOEXEC for /etc/shells.
* misc/getttyent.c (setttyent): Set FD_CLOEXEC.
* misc/getpass.c (getpass): Set FD_CLOEXEC for /dev/tty.
* intl/localealias.c (read_alias_file): Set FD_CLOEXEC for
locale.alias.
* inet/ruserpass.c (ruserpass): Set FD_CLOEXEC for .netrc.
* inet/rcmd.c (iruserfopen): Set FD_CLOEXEC for hosts.equiv.
* iconv/gconv_conf.c (read_conf_file): Set FD_CLOEXEC for config file.
* hesiod/hesiod.c (parse_config_file): Prevent cancellation in config
file parsing and set FD_CLOEXEC.
2011-11-14 Ulrich Drepper <[email protected]>
* time/tzfile.c (__tzfile_read): Use "e" in fopen call.
2011-11-14 Andreas Schwab <[email protected]>
* malloc/arena.c (arena_get2): Don't call reused_arena when
_int_new_arena failed.
2011-11-14 Ulrich Drepper <[email protected]>
* sysdeps/i386/i686/multiarch/Makefile [subdir=string]
(sysdep_routines): Add strcasecmp_l-sse4 and strncase_l-sse4.
* sysdeps/i386/i686/multiarch/strcasecmp.S: Re-enable SSE4.2 code.
* sysdeps/i386/i686/multiarch/strcmp.S: Likewise.
* sysdeps/i386/i686/multiarch/strncase.S: Likewise.
* sysdeps/i386/i686/multiarch/strcmp-sse4.S: Change to allow reuse
to compile strcasecmp and strncasecmp.
* sysdeps/i386/i686/multiarch/strcasecmp_l-sse4.S: New file.
* sysdeps/i386/i686/multiarch/strncase_l-sse4.S: New file.
* sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Use L macro consistently.
2011-11-13 Ulrich Drepper <[email protected]>
* sysdeps/i386/i686/multiarch/Makefile [subdir=string]: Add
locale-defines.sym to gen-as-const-headers.
(sysdep_routines): Add strcasecmp_l-c, strcasecmp-c,
strcasecmp_l-ssse3, strncase_l-c, strncase-c, and strncase_l-ssse3.
* sysdeps/i386/i686/multiarch/strcmp-ssse3.S: Change to allow reuse
to compile strcasecmp and strncasecmp.
* sysdeps/i386/i686/multiarch/strcmp.S: Allow to use for
strcasecmp_l and strncasecmp_l.
* sysdeps/i386/i686/multiarch/locale-defines.sym: New file.
* sysdeps/i386/i686/multiarch/strcasecmp-c.c: New file.
* sysdeps/i386/i686/multiarch/strcasecmp.S: New file.
* sysdeps/i386/i686/multiarch/strcasecmp_l-c.c: New file.
* sysdeps/i386/i686/multiarch/strcasecmp_l-ssse3.S: New file.
* sysdeps/i386/i686/multiarch/strcasecmp_l.S: New file.
* sysdeps/i386/i686/multiarch/strncase-c.c: New file.
* sysdeps/i386/i686/multiarch/strncase.S: New file.
* sysdeps/i386/i686/multiarch/strncase_l-c.c: New file.
* sysdeps/i386/i686/multiarch/strncase_l-ssse3.S: New file.
* sysdeps/i386/i686/multiarch/strncase_l.S: New file.
2011-11-12 Ulrich Drepper <[email protected]>
* sysdeps/unix/clock_gettime.c (clock_gettime): No need to assign
result of SYSDEP_GETTIME_CPU to retval.
* sysdeps/unix/sysv/linux/clock_gettime.c (SYSDEP_GETTIME_CPU): Add
parameter list to macro. Remove trailing semicolon. Adjust users.
* resolv/getaddrinfo_a.c (getaddrinfo_a): Avoid warning about unused
variable.
* sysdeps/ieee754/ldbl-96/e_j0l.c (__ieee754_j0l): Avoid storing
mantissa words.
* sysdeps/ieee754/ldbl-96/e_j1l.c (__ieee754_j1l): Likewise.
* sysdeps/ieee754/ldbl-96/e_hypotl.c (__ieee754_hypotl): Avoid warning
from unused variable.
* sysdeps/generic/sysdep.h: Clean up, pretty print, use dwarf2.h for
DWARF definitions.
* sysdeps/generic/dwarf2.h: Don't define enums when using the file
for assembling.
* elf/dl-iteratephdr.c [!SHARED] (__dl_iterate_phdr): Don't iterate
over namespaces.
* sunrpc/rpc_prot.c (rejected): Fix case value.
* sysdeps/unix/sysv/linux/internal_statvfs.c (INTERNAL_STATVFS): Use
unsigned long long int to avoid warnings in shift.
* posix/regex_internal.c (re_string_reconstruct): Actually use result
of use of trans.
* posix/regex_internal.h (re_string_wchar_at): Remove temporary
variable tmp.