-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathChangeLog
23307 lines (19160 loc) · 843 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-12-21 David S. Miller <[email protected]>
* po/hr.po: Update from translation team.
2012-12-21 Andreas Krebbel <[email protected]>
* sysdeps/s390/fpu/libm-test-ulps: Refreshed.
2012-12-19 Steve Ellcey <[email protected]>
* NEWS: Mention new memcpy for MIPS.
2012-12-18 Marcus Shawcroft <[email protected]>
* manual/contrib.texi (Contributors): Spelling correction.
2012-12-15 David S. Miller <[email protected]>
* po/ru.po: Update from translation team.
2012-12-13 David S. Miller <[email protected]>
* NEWS: Mention IFUNC testsuite enhancements.
* po/pl.po: Update from translation team.
* po/bg.po: Likewise.
* manual/contrib.texi (Contributors): Update entries for Hongjiu
Lu and Joseph S. Myers. Add entry for Marcus Shawcroft.
2012-12-11 David S. Miller <[email protected]>
* po/sv.po: Update from translation team.
* po/vi.po: Update from translation team.
* po/cs.po: Update from translation team.
* po/de.po: Update from translation team.
* po/eo.po: Likewise.
* po/nl.po: Likewise.
2012-12-11 Siddhesh Poyarekar <[email protected]>
[BZ #14246]
* manual/argp.texi (Argp Helper Functions): Move node to follow
Argp Parsing State.
[BZ #14872]
* manual/conf.texi (Limits on File System Capacity): Mention if
terminating null is included in the max size.
2012-12-10 Andreas Jaeger <[email protected]>
* po/cs.po: Update from translation team.
2012-12-08 Siddhesh Poyarekar <[email protected]>
* sysdeps/s390/jmpbuf-unwind.h (_jmpbuf_sp): Declare SP as
void pointer and cast to uintptr_t.
* sysdeps/s390/s390-64/memcmp.S: Pick sysdep.h from include
path.
* sysdeps/s390/s390-64/memcpy.S: Likewise.
* sysdeps/s390/s390-64/memset.S: Likewise.
2012-12-08 Benno Schulenberg <[email protected]>
[BZ #14833]
* menual/message.texi (Message Translation): Fix typos.
(Helper programs for gettext): Likewise.
2012-12-07 Andreas Schwab <[email protected]>
[BZ #14898]
* include/link.h (FORCED_DYNAMIC_TLS_OFFSET) [NO_TLS_OFFSET == 0]:
Change to -1.
2012-12-07 David S. Miller <[email protected]>
* po/libc.pot: Update.
2012-12-07 Richard Henderson <[email protected]>
[BZ #10114]
* soft-fp/op-common.h (_FP_MUL): Pull computation of R_e from the
normal/normal case to before the switch.
(_FP_DIV): Likewise.
2012-12-06 Carlos O'Donell <[email protected]>
Mike Frysinger <[email protected]>
* sysdeps/unix/sysv/linux/posix_fadvise.c (posix_fadvise): Also
check for __NR_fadvise64_64.
2012-12-06 Chris Metcalf <[email protected]>
* sysdeps/generic/fpu_control.h (_FPU_GETCW): Define to set cw to
0, not just to plain "0" as a statement.
(_FPU_SETCW): Define to (void) (cw), rather than doing nothing
with cw.
2012-12-06 Joseph Myers <[email protected]>
* NEWS: Use sourceware.org in Bugzilla URL.
2012-12-06 Siddhesh Poyarekar <[email protected]>
* sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
(INTERNAL_SYSCALL_DECL): Use __attribute__ ((unused)).
* stdio-common/tst-put-error.c (do_test): Add newline to the
padded test to ensure flush.
2012-12-05 Jeff Law <[email protected]>
* sunrpc/etc.rpc (fedfs_admin): Add entry.
2012-12-05 Joseph Myers <[email protected]>
* README: Don't refer to ports add-on as distributed separately.
Mention AArch64 in list of systems supported in the ports add-on.
* LICENSES: Add more non-FSF copyright and license notices.
* soft-fp/op-common.h (_FP_DECL): Declare X##_s with __attribute__
((unused)).
* sysdeps/ieee754/ldbl-128ibm/x2y2m1l.c: Include <stdlib.h>.
* stdio-common/tst-put-error.c (do_test): Use 10000000 instead of
10000 as width of padded output.
2012-12-04 Joseph Myers <[email protected]>
* sysdeps/powerpc/sysdep.h (_SYS_AUXV_H): Define to 1 not empty.
* sysdeps/ieee754/ldbl-128ibm/e_atanhl.c (__ieee754_atanhl): Mark
variable LX with __attribute__ ((unused)).
* sysdeps/ieee754/ldbl-128ibm/e_rem_pio2l.c (__ieee754_rem_pio2l):
Likewise.
* sysdeps/ieee754/ldbl-128ibm/s_isnanl.c (___isnanl): Likewise.
* sysdeps/ieee754/ldbl-128ibm/s_logbl.c (__logbl): Likewise.
* sysdeps/ieee754/ldbl-128ibm/s_nextafterl.c: Mark variable LY
with __attribute__ ((unused)).
2012-12-04 David S. Miller <[email protected]>
* sysdeps/generic/memcopy.h: Add multiple inclusion protection.
2012-12-04 Joseph Myers <[email protected]>
* sysdeps/ieee754/ldbl-opt/Makefile [$(subdir) = math]
(CFLAGS-nldbl-acos.c): New variable.
[$(subdir) = math] (CFLAGS-nldbl-acosh.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-asin.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-asinh.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-atan.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-atan2.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-atanh.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-cabs.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-cacos.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-cacosh.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-carg.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-casin.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-casinh.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-catan.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-catanh.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-cbrt.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-ccos.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-ccosh.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-ceil.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-cexp.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-cimag.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-clog.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-clog10.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-conj.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-copysign.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-cos.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-cosh.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-cpow.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-cproj.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-creal.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-csin.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-csinh.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-csqrt.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-ctan.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-ctanh.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-drem.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-erf.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-erfc.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-exp.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-exp10.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-exp2.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-expm1.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-fabs.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-fdim.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-finite.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-floor.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-fma.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-fmax.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-fmin.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-fmod.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-frexp.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-gamma.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-hypot.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-ilogb.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-isinf.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-isnan.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-j0.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-j1.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-jn.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-ldexp.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-lgamma.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-lgamma_r.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-llrint.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-llround.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-log.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-log10.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-log1p.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-log2.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-logb.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-lrint.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-lround.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-modf.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-nan.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-nearbyint.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-nextafter.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-nexttoward.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-nexttowardf.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-pow.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-pow10.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-remainder.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-remquo.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-rint.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-round.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-scalb.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-scalbln.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-scalbn.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-significand.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-sin.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-sincos.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-sinh.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-sqrt.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-tan.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-tanh.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-tgamma.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-trunc.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-y0.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-y1.c): Likewise.
[$(subdir) = math] (CFLAGS-nldbl-yn.c): Likewise.
* sysdeps/unix/sysv/linux/powerpc/powerpc32/sysdep.h
(INTERNAL_SYSCALL_DECL): Use __attribute__ ((unused)).
[BZ #14914]
* sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Clear
whole low double instead of just low 47 bits when splitting values
into two parts.
2012-12-03 Allan McRae <[email protected]>
* manual/stdio.texi (Predefined Printf Handlers): Remove
@hsep and @vsep usage.
2012-12-03 Mike Frysinger <[email protected]>
* bits/byteswap.h [__GNUC__]: Change __GNUC_PREREQ from 4.2 to 4.3.
* sysdeps/x86/bits/byteswap.h [__GNUC__]: Likewise.
2012-12-03 Jeff Law <[email protected]>
* time/sys/time.h (settimeofday): Do not mark TV argument
as __nonnull.
2012-12-01 Mike Frysinger <[email protected]>
* libio/fileops.c (_IO_new_file_close_it): Do not always flush
when currently writing and seek to current position when not.
* libio/Makefile (tests): Remove bug-fclose1.
* libio/bug-fclose1.c: Delete.
2012-12-01 Joseph Myers <[email protected]>
* manual/arith.texi (feenableexcept): Fix typo.
(fedisableexcept): Likewise.
2012-11-30 Roland McGrath <[email protected]>
* sysdeps/powerpc/powerpc64/entry.h (TEXT_START): Define using a
second, differently-typed declaration, rather than a cast.
2012-11-30 Siddhesh Poyarekar <[email protected]>
* sunrpc/rpc/svc.h (__svc_accept_failed): Move declaration...
* include/rpc/svc.h: ... here.
2012-11-30 Aurelien Jarno <[email protected]>
[BZ #13013]
* resolv/res_query.c(__libc_res_nquery): Assign hp and hp2
depending n and resplen2 to catch cases where answer
equals answerp2.
2012-11-29 Carlos O'Donell <[email protected]>
* elf/get-dynamic-info.h (elf_get_dynamic_info): Warn
for unsupported DF_1_* bits when DL_DEBUG_FILES is set.
2012-11-29 Mike Frysinger <[email protected]>
* sysdeps/unix/sysv/linux/clock_getcpuclockid.c (HAS_CPUCLOCK): Delete.
2012-11-29 Roland McGrath <[email protected]>
* inet/tst-inet6_rth.c (do_test): Use a union rather than type punning.
2012-11-28 Jeff Law <[email protected]>
[BZ #13761]
* nscd/grpcache.c (cache_addgr): Rename alloca_used to
dataset_temporary. Track alloca usage into alloca_used.
If dataset is large allocate and release it via malloc/free.
2012-06-04 Florian Weimer <[email protected]>
[BZ #14197]
* debug/test-strcpy_chk.c: Mention __chk_fail ABI test.
2012-11-28 David S. Miller <[email protected]>
* sysdeps/sparc/fpu/libm-test-ulps: Update.
2012-11-28 Joseph Myers <[email protected]>
[BZ #14803]
* sysdeps/ieee754/ldbl-96/e_asinl.c (pio2_hi): Use hex float value
of pi/2 rounded to nearest to 64 bits.
(pio2_lo): Use hex float value of pi/2 - pio2_hi rounded to
nearest to 64 bits.
(pio4_hi): Use hex float value of pi/4 rounded to nearest to 64
bits.
2012-11-28 Jeff Law <[email protected]>
Martin Osvald <[email protected]>
[BZ #14889]
* sunrpc/rpc/svc.h (__svc_accept_failed): New prototype.
* sunrpc/svc.c: Include time.h.
(__svc_accept_failed): New function.
* sunrpc/svc_tcp.c (rendezvous_request): If the accept fails for
any reason other than EINTR, call __svc_accept_failed.
* sunrpc/svc_udp.c (svcudp_recv): Similarly.
* sunrpc/svc_unix.c (rendezvous_request): Similarly.
2012-11-28 Andreas Schwab <[email protected]>
* scripts/abilist.awk: Also handle indirect functions in .opd
section.
2012-11-28 Joseph Myers <[email protected]>
[BZ #13881]
* sysdeps/x86/fpu/powl_helper.c: New file.
* sysdeps/x86/fpu/Makefile: Likewise.
* sysdeps/i386/fpu/e_powl.S (limit): Remove object.
(p3): New object.
(__ieee754_powl): Use __powl_helper for finite arguments except
integer exponents below 8.
* sysdeps/x86_64/fpu/e_powl.S (limit): Remove object.
(p3): New object.
(__ieee754_powl): Use __powl_helper for finite arguments except
integer exponents below 8.
* math/libm-test.inc (pow_test): Add more tests and enable some
previously disabled tests.
* sysdeps/i386/fpu/libm-test-ulps: Update.
* sysdeps/x86_64/fpu/libm-test-ulps: Likewise.
2012-11-28 Siddhesh Poyarekar <[email protected]>
Carlos O'Donell <[email protected]>
* nss/makedb.c (is_prime): Assert that input is odd and greater
than 4. Note that fact in a comment too.
(next_prime): Add 4 to input.
2012-11-27 Siddhesh Poyarekar <[email protected]>
[BZ #11741]
* libio/Makefile (tests): Add test case tst-fwrite-error.
* libio/iofwrite.c (_IO_fwrite): Return 0 on EOF.
* libio/iofwrite_u.c (fwrite_unlocked): Likewise.
* libio/tst-fwrite-error.c: New test case.
2012-11-26 H.J. Lu <[email protected]>
* elf/dl-load.c (_dl_map_object_from_fd): Cast to uintptr_t
before casting to void *.
* include/libc-internal.h (__pointer_type): New macro.
(__integer_if_pointer_type_sub): Likewise.
(__integer_if_pointer_type): Likewise.
(cast_to_integer): Likewise.
* sysdeps/x86_64/bits/atomic.h: Include <libc-internal.h>.
(__arch_c_compare_and_exchange_val_64_acq): Use cast_to_integer
before casting to atomic64_t.
(atomic_exchange_acq): Likewise.
(__arch_exchange_and_add_body): Likewise.
(__arch_add_body): Likewise.
(atomic_add_negative): Likewise.
(atomic_add_zero): Likewise.
2012-11-26 Joseph Myers <[email protected]>
* sysdeps/generic/unwind-dw2-fde.c (get_pc_begin): New function.
(fde_unencoded_compare): Use get_pc_begin instead of type-punning.
(add_fdes): Likewise.
(linear_search_fdes): Likewise.
(binary_search_unencoded_fdes): Likewise.
2012-11-26 Andreas Schwab <[email protected]>
* elf/sotruss.ksh: Correctly locate argument of -F and -T options.
2012-11-24 Adam Conrad <[email protected]>
* configure.in: Autodetect C++ header directories.
* configure: Regenerated.
2012-11-23 Mike Frysinger <[email protected]>
* elf/Makefile ($(objpfx)ld.so): Change readelf to $(READELF).
2012-11-23 Andreas Schwab <[email protected]>
* sysdeps/powerpc/fpu/libm-test-ulps: Update.
2012-11-22 Joseph Myers <[email protected]>
* math/libm-test.inc (fma_test_towardzero) [TEST_LDOUBLE &&
LDBL_MANT_DIG == 106]: Disable some tests.
(fma_test_downward) [TEST_LDOUBLE && LDBL_MANT_DIG == 106]:
Likewise.
(fma_test_upward) [TEST_LDOUBLE && LDBL_MANT_DIG == 106]:
Likewise.
[BZ #14871]
* sysdeps/ieee754/ldbl-128ibm/s_atanl.c (__atanl): Return the
input for small inputs. Return +/- pi/2 for large inputs.
* math/libm-test.inc (atan_test): Add more tests.
* sysdeps/generic/unwind-dw2-fde-glibc.c
(_Unwind_IteratePhdrCallback): Declare P_DYNAMIC with
__attribute__ ((unused)).
[BZ #14645]
* sysdeps/ieee754/ldbl-128ibm/s_fmal.c (__fmal): Compute result as
x * y if x and y are nonzero and z is zero.
[BZ #14811]
* sysdeps/ieee754/ldbl-128ibm/e_powl.c (__ieee754_powl): Saturate
nonzero exponents with absolute value below 0x1p-117 to +/-
0x1p-117.
[BZ #14869]
* sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl): Scale
up arguments below 2**-450, not just those below 2**-500.
* math/libm-test.inc (hypot_test): Add another test.
[BZ #14868]
* sysdeps/ieee754/ldbl-128ibm/e_hypotl.c (__ieee754_hypotl):
Return a+b for ratio over 2**120, not 2**60.
* math/libm-test.inc (hypot_test): Add another test.
* math/libm-test.inc (clog_test): Use
UNDERFLOW_EXCEPTION_LDOUBLE_IBM on two tests.
(clog10_test): Likewise.
[BZ #6778]
* sysdeps/ieee754/ldbl-128ibm/s_expm1l.c (big): Change to 1e290L.
2012-11-22 Andreas Schwab <[email protected]>
* sysdeps/i386/fpu/libm-test-ulps: Update.
2012-11-22 Pino Toscano <[email protected]>
* sysdeps/x86_64/multiarch/test-multiarch.c (get_cpuinfo): Terminate
printf output with newline.
2012-11-21 H.J. Lu <[email protected]>
[BZ #14865]
* aclocal.m4 (LIBC_LINKER_FEATURE): New macro.
* configure.in: Use LIBC_LINKER_FEATURE to check -z nodelete,
-z nodlopen, -z initfirst and -z execstack support.
* configure: Regenerated.
* elf/elf.h (DF_1_NODIRECT): New macro.
(DF_1_IGNMULDEF): Likewise.
(DF_1_NOKSYMS): Likewise.
(DF_1_NOHDR): Likewise.
(DF_1_EDITED): Likewise.
(DF_1_NORELOC): Likewise.
(DF_1_SYMINTPOSE): Likewise.
(DF_1_GLOBAUDIT): Likewise.
(DF_1_SINGLETON): Likewise.
* elf/get-dynamic-info.h (elf_get_dynamic_info): Assert
DT_1_SUPPORTED_MASK bits.
* include/elf.h (DT_1_SUPPORTED_MASK): New macro.
2012-11-20 Carlos O'Donell <[email protected]>
* sysdeps/unix/make-syscalls.sh: Document prefixes.
2012-11-20 Thomas Schwinge <[email protected]>
* sysdeps/sh/dl-machine.h (ELF_MACHINE_RUNTIME_FIXUP_PARAMS): New
macro.
* sysdeps/unix/sysv/linux/bits/socket.h (struct mmsghdr, recvmmsg)
(sendmmsg): Move declarations...
* socket/sys/socket.h: ... here.
* sysdeps/unix/sysv/linux/recvmmsg.c [!defined __NR_recvmmsg &&
!defined __NR_socketcall] (recvmmsg): Move ENOSYS stub into and
include it from...
* socket/recvmmsg.c: ... this new file.
* sysdeps/unix/sysv/linux/internal_sendmmsg.S [__ASSUME_SENDMMSG]
(sendmmsg): Rename to __sendmmsg, create weak alias and make
definition of __sendmmsg hidden.
* sysdeps/unix/sysv/linux/sendmmsg.c (sendmmsg): Likewise.
[!defined __NR_sendmmsg && !defined __NR_socketcall] (sendmmsg):
Move ENOSYS stub into and include it from...
* socket/sendmmsg.c: ... this new file.
* sysdeps/unix/sysv/linux/Makefile [subdir=socket]
(sysdep_routines): Move recvmmsg and sendmmsg...
* socket/Makefile (routines): ... here.
* socket/Versions (GLIBC_2.17): Add recvmmsg and sendmmsg.
(GLIBC_PRIVATE): Add __sendmmsg.
* include/sys/socket.h (__sendmmsg): Add declarations.
* resolv/res_send.c (send_dg): Invoke __sendmmsg instead of
sendmmsg.
2012-11-20 Joseph Myers <[email protected]>
* sysdeps/ieee754/ldbl-128/s_nearbyintl.c (__nearbyintl): Mark
variable I1 with __attribute__ ((unused)).
* sysdeps/ieee754/ldbl-128/s_rintl.c (__rintl): Likewise.
2012-11-19 Joseph Myers <[email protected]>
* stdio-common/_itowa.c (_itowa) [BITS_PER_MP_LIMB == 64]: Declare
DUMMY variables with __attribute__ ((unused)).
* bits/byteswap.h: Include <bits/types.h>.
(__bswap_64): Use __uint64_t instead of unsigned long long int.
2012-11-19 Pino Toscano <[email protected]>
* sysdeps/mach/hurd/ptsname.c (ptsname): Change the type of PEERNAME to
string_t. Do not manually set errno.
(__ptsname_r): Change the type of PEERNAME to string_t, and check its
length with __strnlen. Make sure to both set errno and return it on
failure.
2012-11-19 David S. Miller <[email protected]>
With help from Joseph Myers.
* sysdeps/ieee754/ldbl-128/s_atanl.c (__atanl): Handle tiny and
very large arguments properly.
* math/libm-test.inc (atan_test): New tests.
(atan2_test): New tests.
* sysdeps/sparc/fpu/libm-test-ulps: Update.
* sysdeps/x86_64/fpu/libm-test-ulps: Update.
2012-11-19 Joseph Myers <[email protected]>
[BZ #14856]
* posix/bits/posix1_lim.h [!__USE_XOPEN2K] (_POSIX_TZNAME_MAX):
Define to 3.
* conform/data/errno.h-data [POSIX] (EADDRINUSE): Do not expect.
[POSIX] (EADDRNOTAVAIL): Likewise.
[POSIX] (EAFNOSUPPORT): Likewise.
[POSIX] (EALREADY): Likewise.
[POSIX] (ECONNABORTED): Likewise.
[POSIX] (ECONNREFUSED): Likewise.
[POSIX] (ECONNRESET): Likewise.
[POSIX] (EDESTADDRREQ): Likewise.
[POSIX] (EDQUOT): Likewise.
[POSIX] (EHOSTUNREACH): Likewise.
[POSIX] (EIDRM): Likewise.
[POSIX] (EISCONN): Likewise.
[POSIX] (ELOOP): Likewise.
[POSIX] (EMULTIHOP): Likewise.
[POSIX] (ENETDOWN): Likewise.
[POSIX] (ENETUNREACH): Likewise.
[POSIX] (ENOBUFS): Likewise.
[POSIX] (ENODATA): Likewise.
[POSIX] (ENOLINK): Likewise.
[POSIX] (ENOMSG): Likewise.
[POSIX] (ENOPROTOOPT): Likewise.
[POSIX] (ENOSR): Likewise.
[POSIX] (ENOSTR): Likewise.
[POSIX] (ENOTCONN): Likewise.
[POSIX] (ENOTSOCK): Likewise.
[POSIX] (EOPNOTSUPP): Likewise.
[POSIX] (EOVERFLOW): Likewise.
[POSIX] (EPROTO): Likewise.
[POSIX] (EPROTONOSUPPORT): Likewise.
[POSIX] (EPROTOTYPE): Likewise.
[POSIX] (ESTALE): Likewise.
[POSIX] (ETIME): Likewise.
[POSIX] (ETXTBSY): Likewise.
[POSIX] (EWOULDBLOCK): Likewise.
[!ISO && !ISO99 && !ISO11] (E*): Do not allow.
* conform/data/fcntl.h-data [POSIX] (SEEK_SET): Allow.
[POSIX] (SEEK_CUR): Likewise.
[POSIX] (SEEK_END): Likewise.
[POSIX || UNIX98] (mode_t): Do not require.
[POSIX] (off_t): Likewise.
[POSIX] (pid_t): Likewise.
[POSIX] (sys/stat.h): Do not allow header.
[POSIX] (unistd.h): Likewise.
[!ISO && !ISO99 && !ISO11] (timespec): Do not allow.
[!ISO && !ISO99 && !ISO11] (tv_nsec): Likewise.
[!ISO && !ISO99 && !ISO11] (tv_sec): Likewise.
* conform/data/locale.h-data [POSIX] (LC_MESSAGES): Do not
require.
* conform/data/mqueue.h-data [!ISO && !ISO99 && !ISO11] (struct
sigevent): Specify elements.
[XOPEN2K8 || POSIX2008] (struct sigevent): Remove duplicate type
entry.
[!ISO && !ISO99 && !ISO11] (mq_*): Allow.
[!ISO && !ISO99 && !ISO11] (MQ_*): Likewise.
* conform/data/cpio.h-data [POSIX]: Disable whole file.
* conform/data/glob.h-data [POSIX] (GLOB_NOSYS): Do not expect.
* conform/data/limits.h-data [!ISO && !ISO99 && !ISO11]
(AIO_LIST_MAX): Change to AIO_LISTIO_MAX.
[!ISO && !ISO99 && !ISO11] (ATEXT_MAX): Remove.
[!ISO && !ISO99 && !ISO11 && !POSIX && !XPG3] (ATEXIT_MAX): Allow.
[POSIX || POSIX2008 || XPG3] (IOV_MAX): Do not allow.
[POSIX || POSIX2008 || XPG3] (_XOPEN_IOV_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (MQ_PRIO_MAX): Allow.
[!ISO && !ISO99 && !ISO11] (RE_DUP_MAX): Remove duplicate entry.
[POSIX || XPG3 || XPG4 || UNIX98] (SS_REPL_MAX): Do not allow.
[POSIX || XPG3 || XPG4 || UNIX98] (SYMLOOP_MAX): Likewise.
[POSIX || XPG3 || XPG4] (FILESIZEBITS): Likewise.
[POSIX || XPG3 || XPG4 || UNIX98] (POSIX_ALLOC_SIZE_MIN):
Likewise.
[POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_INCR_XFER_SIZE):
Likewise.
[POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_MAX_XFER_SIZE):
Likewise.
[POSIX || XPG3 || XPG4 || UNIX98] (POSIX_REC_XFER_ALIGN):
Likewise.
[POSIX || XPG3 || XPG4 || UNIX98] (SYMLINK_MAX): Likewise.
[POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SS_REPL_MAX): Likewise.
[POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SYMLINK_MAX): Likewise.
[POSIX || XPG3 || XPG4 || UNIX98] (_POSIX_SYMLOOP_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (BC_BASE_MAX): Use macro-constant.
Specify lower bound on value.
[!ISO && !ISO99 && !ISO11] (BC_DIM_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (BC_SCALE_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (BC_STRING_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (COLL_WEIGHTS_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (EXPR_NEST_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (RE_DUP_MAX): Likewise
[POSIX || XPG3 || XPG4] (CHARCLASS_NAME_MAX): Do not allow.
[!ISO && !ISO99 && !ISO11] (_POSIX_CLOCKRES_MIN): Specify exact
value.
[!ISO && !ISO99 && !ISO11] (_POSIX_AIO_LISTIO_MAX): Do not specify
as optional.
[!ISO && !ISO99 && !ISO11] (_POSIX_AIO_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_ARG_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_CHILD_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_DELAYTIMER_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_LINK_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_LOGIN_NAME_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_MAX_CANON): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_MAX_INPUT): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_MQ_OPEN_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_MQ_PRIO_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_NAME_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_NGROUPS_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_OPEN_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_PATH_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_PIPE_BUF): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX2_RE_DUP_MAX): Remove duplicate
entry.
[!ISO && !ISO99 && !ISO11] (_POSIX_RTSIG_MAX): Do not specify as
optional.
[!ISO && !ISO99 && !ISO11] (_POSIX_SEM_NSEMS_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_SEM_VALUE_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_SIGQUEUE_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_SSIZE_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_STREAM_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_DESTRUCTOR_ITERATIONS):
Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_KEYS_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_THREAD_THREADS_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_TIMER_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_TTY_NAME_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX_TZNAME_MAX): Likewise. Give
value as 3 for [POSIX || XPG3 || XPG4 || UNIX98].
[!ISO && !ISO99 && !ISO11] (_POSIX2_BC_BASE_MAX): Do not specify
as optional.
[!ISO && !ISO99 && !ISO11] (_POSIX2_BC_DIM_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX2_BC_SCALE_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX2_BC_STRING_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX2_CHARCLASS_NAME_MAX):
Likewise. Do not allow for [POSIX || XPG3 || XPG4 || UNIX98].
[!ISO && !ISO99 && !ISO11] (_POSIX2_COLL_WEIGHTS_MAX): Do not
specify as optional.
[!ISO && !ISO99 && !ISO11] (_POSIX2_EXPR_NEST_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX2_LINE_MAX): Likewise.
[!ISO && !ISO99 && !ISO11] (_POSIX2_RE_DUP_MAX): Likewise.
[POSIX || POSIX2008 || XPG3] (_XOPEN_IOV_MAX): Do not allow.
[POSIX || XPG3] (NL_ARGMAX): Do not allow.
[XPG3] (NL_LANGMAX): Likewise.
[POSIX || XPG3] (NL_MSGMAX): Likewise.
[POSIX || XPG3] (NL_NMAX): Likewise.
[POSIX || XPG3] (NL_SETMAX): Likewise.
[POSIX || XPG3] (NL_TEXTMAX): Likewise.
[XPG3] (NZERO): Likewise.
[XPG4 || UNIX98] (TMP_MAX): Only enable for these conditions.
[POSIX || XPG3 || XPG4 || UNIX98] (*_MIN): Do not allow.
[!ISO && !ISO99 && !ISO11] (*_t): Allow.
* conform/data/regex.h-data [!ISO && !ISO99 && !ISO11]
(REG_ERANGE): Expect.
* conform/data/stdio.h-data [POSIX] (L_cuserid): Use
optional-constant.
[POSIX || XOPEN2K || XOPEN2K8 || POSIX2008] (getchar_unlocked):
Use (void) in prototype.
[POSIX] (*_t): Allow.
* conform/data/sys/times.h-data [POSIX]: Enable whole file.
* conform/data/wordexp.h-data [!ISO && !ISO99 && !ISO11]
(WRDE_BADVAL): Expect.
* conform/data/fcntl.h-data [XPG3 || XPG4] (O_DSYNC): Do not
expect.
[XPG3 || XPG4] (O_RSYNC): Likewise.
* conform/data/signal.h-data [XPG3 || XPG4] (pthread_kill):
Likewise.
[XPG3 || XPG4] (pthread_sigmask): Likewise.
[XPG3 || XPG4] (sigqueue): Likewise.
[XPG3 || XPG4] (sigtimedwait): Likewise.
[XPG3 || XPG4] (sigwaitinfo): Likewise.
* conform/data/stdio.h-data [XPG3 || XPG4] (snprintf): Likewise.
[XPG3 || XPG4] (vsnprintf): Likewise.
* conform/data/sys/stat.h-data [XPG3 || XPG4] (blkcnt_t):
Likewise.
[XPG3 || XPG4] (blksize_t): Likewise.
* conform/data/time.h-data [XPG3 || XPG4] (struct timespec):
Likewise.
[XPG3 || XPG4] (CLOCK_PROCESS_CPUTIME_ID): Likewise.
[XPG3 || XPG4] (CLOCK_THREAD_CPUTIME_ID): Likewise.
[XPG3 || XPG4] (struct itimerspec): Likewise.
[XPG3 || XPG4] (CLOCK_REALTIME): Likewise.
[XPG3 || XPG4] (TIMER_ABSTIME): Likewise.
[XPG3 || XPG4] (CLOCK_MONOTONIC): Likewise.
[XPG3 || XPG4] (clockid_t): Likewise.
[XPG3 || XPG4] (timer_t): Likewise.
[XPG3 || XPG4] (clock_getres): Likewise.
[XPG3 || XPG4] (clock_gettime): Likewise.
[XPG3 || XPG4] (clock_settime): Likewise.
[XPG3 || XPG4] (nanosleep): Likewise.
[XPG3 || XPG4] (timer_create): Likewise.
[XPG3 || XPG4] (timer_delete): Likewise.
[XPG3 || XPG4] (timer_gettime): Likewise.
[XPG3 || XPG4] (timer_getoverrun): Likewise.
[XPG3 || XPG4] (timer_settime): Likewise.
* conform/data/unistd.h-data [XPG3 || XPG4] (fdatasync): Likewise.
[XPG3 || XPG4] (getlogin_r): Likewise.
[XPG3 || XPG4] (pread): Likewise.
[XPG3 || XPG4] (pthread_atfork): Likewise.
[XPG3 || XPG4] (pwrite): Likewise.
[BZ #14835]
* signal/signal.h [__USE_XOPEN_EXTENDED]: Include
<bits/siginfo.h>.
2012-11-19 Pino Toscano <[email protected]>
* malloc/mtrace.c (muntrace): Reset MALLSTREAM and the hooks before
finalizing MALLSTREAM.
* sysdeps/mach/hurd/syncfs.c: New file.
2012-11-19 Siddhesh Poyarekar <[email protected]>
[BZ #14719]
* nss/getXXbyYY_r.c (INTERNAL (REENTRANT_NAME)): Set h_errno to
NETDB_INTERNAL when NSS_STATUS_UNAVAIL.
* resolv/nss_dns/dns-host.c (_nss_dns_gethostbyname3_r): Set
h_errno to NETDB_INTERNAL when errno is EMFILE or ENFILE.
(_nss_dns_gethostbyname4_r): Likewise.
* sysdeps/posix/getaddrinfo.c (gaih_inet): Set result to
EAI_SYSTEM if NSS_STATUS_UNAVAIL.
2012-11-19 Peng Haitao <[email protected]>
[BZ #13763]
* sunrpc/bindrsvprt.c: Add lock to protect static variable.
2012-11-19 Steve McIntyre <[email protected]>
* sysdeps/generic/ldconfig.h (FLAG_AARCH64_LIB64): New macro.
* elf/cache.c (print_entry): Print ",AArch64" for
FLAG_AARCH64_LIB64
* sysdeps/generic/ldconfig.h (FLAG_ARM_LIBHF): New macro.
* elf/cache.c (print_entry): Print ",hard-float" for
FLAG_ARM_LIBHF.
2012-11-18 David S. Miller <[email protected]>
With help from Joseph Myers.
* sysdeps/ieee754/flt-32/e_j0f.c (__ieee754_y0f): Adjust tinyness
cutoff to 2**-13.
* sysdeps/ieee754/flt-32/e_j1f.c (__ieee754_y1f): Adjust tinyness
cutoff to 2**-25.
* sysdeps/ieee754/ldbl-128/e_j0l.c (U0): New constant.
( __ieee754_y0l): Avoid arithmetic underflow when 'x' is very
small.
* sysdeps/ieee754/ldbl-128/e_j1l.c (__ieee754_y1l): Likewise.
* math/libm-test.inc (y0_test): New tests.
(y1_test): New tests.
* sysdeps/i386/fpu/libm-test-ulps: Update.
* sysdeps/x86_64/fpu/libm-test-ulps: Update.
* sysdeps/sparc/fpu/libm-test-ulps: Update.
2012-11-18 Andreas Schwab <[email protected]>
* configure.in (libc_cv_ld_gnu_indirect_function): Use .quad on
64-bit targets.
* configure: Regenerated.
2012-11-17 David S. Miller <[email protected]>
[BZ #14811]
* sysdeps/ieee754/ldbl-128/e_powl.c (__ieee754_powl): Saturate
nonzero exponents with absolute value below 0x1p-128 to +/-
0x1p-128.
2012-11-17 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/fxstatat.c: Include <string.h>.
* elf/dl-runtime.c [!ELF_MACHINE_NO_PLT]: Make code unconditional.
* posix/getconf-speclist.c: New file.
* posix/posix-envs.def: Likewise.
* posix/confstr.c (START_ENV_GROUP): New macro.
(END_ENV_GROUP): Likewise.
(KNOWN_ABSENT_ENVIRONMENT): Likewise.
(KNOWN_PRESENT_ENV_STRING): Likewise.
(KNOWN_PRESENT_ENVIRONMENT): Likewise.
(UNKNOWN_ENVIRONMENT): Likewise.
(confstr): Include posix-envs.def instead of handling
_CS_V7_WIDTH_RESTRICTED_ENVS, _CS_V6_WIDTH_RESTRICTED_ENVS and
_CS_V5_WIDTH_RESTRICTED_ENVS directly here.
* sysdeps/posix/sysconf.c (START_ENV_GROUP): New macro.
(END_ENV_GROUP): Likewise.
(KNOWN_ABSENT_ENVIRONMENT): Likewise.
(KNOWN_PRESENT_ENVIRONMENT): Likewise.
(UNKNOWN_ENVIRONMENT): Likewise.
(__sysconf): Include posix-envs.def instead of handling associated
cases directly here.
* posix/Makefile ($(objpfx)getconf.speclist): Generate by
preprocessing getconf-speclist.c rather than running getconf or
generating empty file.
2012-11-16 Pino Toscano <[email protected]>
* scripts/check-local-headers.sh: Ignore 'mach' headers.
2012-11-16 Andrej Lajovic <[email protected]>
[BZ #14672]
* iconv/iconv_prog.c (main): Fix -c handling of '/'.
2012-11-16 David S. Miller <[email protected]>
* sysdeps/ieee754/ldbl-128/s_log1pl.c (__log1pl): If xm1 is
smaller than LDBL_EPSILON/2.0L, just return xm1.
2012-11-16 H.J. Lu <[email protected]>
* elf/tst-array1.c (init): Set constructor priority to 1000.
(fini): Set destructor priority to 1000.
* elf/tst-array2dep.c: Likewise.
2012-11-16 Siddhesh Poyarekar <[email protected]>
[BZ #11741]
* libio/fileops.c (_IO_new_file_write): Correctly return error.
(_IO_new_file_xsputn): Also return EOF if none of the input
data was written when overflow failed.
* libio/iopadn.c (_IO_padn): Likewise.
* libio/iowpadn.c (_IO_wpadn): Likewise.
* stdio-common/tst-put-error.c: Add copyright notice.
(do_test): Add case for printing padded string.
* stdio-common/vfprintf [!COMPILE_WPRINTF] (PAD): Flag error if
_IO_padn returned error.
[COMPILE_WPRINTF] (PAD): Flag error if _IO_wpadn returned error.
* libio/libioP.h (_IO_xsputn_t): Note in comment that xsputn can
return EOF.
2012-11-16 Siddhesh Poyarekar <[email protected]>
* libio/libioP.h: Add comment note that the references to C++
bits are now obsolete.
2012-11-15 Marcus Shawcroft <[email protected]>
* math/libm-test.inc (check_complex): Use asprintf.
2012-11-14 Joseph Myers <[email protected]>
* debug/pcprofiledump.c (print_version): Update copyright year.
* malloc/memusagestat.c (print_version): Likewise.
2012-11-14 H.J. Lu <[email protected]>
[BZ #14831]
* elf/Makefile (tests): Add tst-audit8.
($(objpfx)tst-audit8): Also depend on $(common-objpfx)math/libm.so.
($(objpfx)tst-audit8.out): New target.
(tst-audit8-ENV): New variable.
* elf/dl-runtime.c (_dl_profile_fixup): Call _dl_fixup to skip
audit if l_reloc_result is NULL.
(ELF_MACHINE_RUNTIME_FIXUP_PARAMS): Issue an error if it isn't
defined and ELF_MACHINE_RUNTIME_FIXUP_ARGS is defined.
* elf/tst-audit8.c: New file.
2012-11-14 Marcus Shawcroft <[email protected]>
* io/Makefile (CFLAGS-open.c, CFLAGS-open64.c): Define.
* misc/Makefile (CFLAGS-select.c): Define.
* posix/Makefile (CFLAGS-pause.c): Define.
2012-11-13 David S. Miller <[email protected]>
* crypt/Makefile: Move test targets after toplevel Rules
inclusion. Grab any necessary sysdep routines when linking.
* crypt/md5.c (md5_process_block): Remove define, we will always
name it __md5_process_block.
(md5_finish_ctx): Update md5_process_block call.
(md5_stream): Likewise.
(md5_process_bytes): Likewise.
(md5_process_block): Rename to __md5_process_block and move to ...
* crypt/md5-block.c: ... here.
* crypt/sha256.c (sha256_process_block): Move to ...
* crypt/sha256-block.c: ... here.
* crypt/sha512.c (sha512_process_block): Move to ...
* crypt/sha512-block.c: ... here.
* locale/Makefile (CFLAGS-md5.c): Define to add crypt/ to include
path.
* sysdeps/sparc/sparc-ifunc.c (sparc_libc_ifunc): Define.
* sysdeps/sparc/sparc64/multiarch/Makefile
(libcrypt-sysdep_routines): Add crypto assembler sysdeps when in
crypt subdir.
(localedef-aux): Add md5 crypto assembler when in locale subdir.
* sysdeps/sparc/sparc32/sparcv9/multiarch/Makefile: Mirror sparc64
multiarch changes.
* sysdeps/sparc/sparc64/multiarch/md5-block.c: New file.
* sysdeps/sparc/sparc64/multiarch/md5-crop.S: New file.
* sysdeps/sparc/sparc64/multiarch/sha256-block.c: New file.
* sysdeps/sparc/sparc64/multiarch/sha256-crop.S: New file.
* sysdeps/sparc/sparc64/multiarch/sha512-block.c: New file.
* sysdeps/sparc/sparc64/multiarch/sha512-crop.S: New file.
* sysdeps/sparc/sparc32/sparcv9/multiarch/md5-block.c: New file.
* sysdeps/sparc/sparc32/sparcv9/multiarch/md5-crop.S: New file.
* sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-block.c: New
file.
* sysdeps/sparc/sparc32/sparcv9/multiarch/sha256-crop.S: New file.
* sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-block.c: New
file.
* sysdeps/sparc/sparc32/sparcv9/multiarch/sha512-crop.S: New file.
2012-11-13 Joseph Myers <[email protected]>
* timezone/tzselect.ksh: Update from tzcode git revision
a435f9f0ecafa56d9e0263835836bd0c64cd7307.
* timezone/zdump.c: Likewise.
* timezone/zic.c: Likewise.
* timezone/Makefile ($(objpfx)version.h): Only include $(version)
in TZVERSION setting, not $(PKGVERSION).
($(objpfx)tzselect): Likewise. Also substitute PKGVERSION and
REPORT_BUGS_TO settings.
[BZ #14838]
* resolv/netdb.h [__USE_XOPEN_EXTENDED] (IPPORT_RESERVED): Define
macro.
2012-11-13 Marcus Shawcroft <[email protected]>
* soft-fp/op-common.h (_FP_PACK_SEMIRAW): Move underflow
detection to immediately after _FP_ROUND().
* soft-fp/soft-fp.h (_FP_ROUND): Don't round if working
bits are 0.