-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog.old-ports-m68k
1451 lines (1104 loc) · 51.1 KB
/
ChangeLog.old-ports-m68k
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
This file describes changes to the M68K port while it was in the ports
add-on directory. This port is no longer part of an add-on and so
future changes to it should be listed in the top-level ChangeLog file,
not here.
2014-02-10 Andreas Schwab <[email protected]>
* sysdeps/m68k: Move directory to ../sysdeps/m68k.
* sysdeps/unix/sysv/linux/m68k: Move directory to
../sysdeps/unix/sysv/linux/m68k.
2014-01-27 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Regenerate.
2013-12-10 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/s_nextafterl.c (__nextafterl): Use
math_force_eval.
* sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h
(FUTEX_WAIT_REQEUE_PI, FUTEX_CMP_REQEUE_PI)
(lll_futex_wait_requeue_pi, lll_futex_timed_wait_requeue_pi)
(lll_futex_cmp_requeue_pi): Define.
* sysdeps/unix/sysv/linux/m68k/kernel-features.h
(__ASSUME_REQUEUE_PI, __ASSUME_SET_ROBUST_LIST): Undefine before
3.10.
2013-11-28 Joseph Myers <[email protected]>
* sysdeps/m68k/fpu/fegetround.c (fegetround): Use libm_hidden_def.
2013-11-26 Ondřej Bílka <[email protected]>
* sysdeps/unix/sysv/linux/m68k/bits/stat.h: Use __glibc_reserved
instead of __unused.
2013-10-30 Mike Frysinger <[email protected]>
* sysdeps/unix/sysv/linux/m68k/configure.in: Moved to ...
* sysdeps/unix/sysv/linux/m68k/configure.ac: ... here.
* sysdeps/unix/sysv/linux/m68k/configure: Regenerated.
2013-10-08 Andreas Schwab <[email protected]>
* sysdeps/m68k/start.S [SHARED]: Use PIC.
2013-09-20 Andreas Schwab <[email protected]>
* sysdeps/m68k/ffs.c (__ffs): Define as hidden.
2013-09-04 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/m68k/mmap64.c: New file.
2013-08-21 Ondřej Bílka <[email protected]>
* sysdeps/m68k/m680x0/fpu/fraiseexcpt.c: Fix typos.
2013-07-20 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/dl-static.c: New file.
* sysdeps/unix/sysv/linux/m68k/ldsodefs.h: New file.
* sysdeps/unix/sysv/linux/m68k/Makefile (sysdep-dl-routines)
(sysdep_routines, sysdep-rtld-routines) [$(subdir) = elf]: Add
dl-static.
* sysdeps/unix/sysv/linux/m68k/Versions (ld: GLIBC_PRIVATE): Add
_dl_var_init.
2013-07-03 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
2013-06-30 Joseph Myers <[email protected]>
* sysdeps/m68k/dl-trampoline.S (FMOVE): Define conditional on
[__mcoldfire__] and [__mcffpu__].
(FPSPACE): Likewise.
(_dl_runtime_profile): Save and restore %fp0 with FMOVE, only if
[FMOVE]. Use FPSPACE in stack offsets.
2013-06-28 Joseph Myers <[email protected]>
* sysdeps/m68k/fpu_control.h: Fix preprocessor indentation.
2013-06-28 Nathan Sidwell <[email protected]>
* sysdeps/m68k/fpu_control.h [__mcoldfire__ && !__mcffpu__]
(_FPU_RESERVED): Provide alternative definition.
[__mcoldfire__ && !__mcffpu__] (_FPU_DEFAULT): Likewise.
[__mcoldfire__ && !__mcffpu__] (_FPU_GETCW): Likewise.
[__mcoldfire__ && !__mcffpu__] (_FPU_SETCW): Likewise.
[!(__mcoldfire__ && !__mcffpu__)]: Make existing macro definitions
conditional.
2013-06-25 Andreas Schwab <[email protected]>
* sysdeps/m68k/sysdep.h (CALL_MCOUNT) [PROF]: Use %a6 instead of
%fp in cfi insns.
2013-06-15 Siddhesh Poyarekar <[email protected]>
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libpthread.abilist:
Update.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libpthread.abilist:
Likewise.
2013-06-08 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/m68k/getpagesize.c (__getpagesize): Use
(void) in function definition.
2013-06-05 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/m68k/socket.S: Remove trailing
whitespace.
2013-05-29 Siddhesh Poyarekar <[email protected]>
[BZ #15465]
* sysdeps/m68k/dl-machine.h (elf_machine_rela): Use
RTLD_PROGNAME.
2013-05-22 Joseph Myers <[email protected]>
* sysdeps/m68k/coldfire/fpu/libm-test-ulps: Update test names.
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Likewise.
2013-05-19 Joseph Myers <[email protected]>
* sysdeps/m68k/coldfire/fpu/libm-test-ulps: Update names of sincos
tests.
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Likewise.
2013-04-11 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update
2013-03-11 Andreas Schwab <[email protected]>
[BZ #15234]
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libpthread.abilist
(GLIBC_2.4): Remove pthread_atfork.
2013-03-06 Andreas Jaeger <[email protected]>
* sysdeps/unix/sysv/linux/m68k/bits/mman.h: Remove all defines
provided by bits/mman-linux.h and include <bits/mman-linux.h>.
2013-02-18 Siddhesh Poyarekar <[email protected]>
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libc.abilist: Add
__cxa_thread_atexit_impl.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libc.abilist:
Likewise.
2013-02-08 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/kernel-features.h
(__ASSUME_O_CLOEXEC): Define for 2.6.23 or later.
(__ASSUME_SOCK_CLOEXEC, __ASSUME_IN_NONBLOCK, __ASSUME_PIPE2)
(__ASSUME_EVENTFD2, __ASSUME_SIGNALFD4, __ASSUME_DUP3): Define for
2.6.27 or later.
(__ASSUME_ACCEPT4): Define for 2.6.28 or later.
2013-02-04 Joseph Myers <[email protected]>
[BZ #13550]
* sysdeps/m68k/memchr.S [!__BOUNDED_POINTERS__] (__ubp_memchr):
Remove alias.
2013-01-20 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
* sysdeps/m68k/Makefile (CFLAGS-backtrace.c): Add -funwind-tables.
2013-01-19 Andreas Schwab <[email protected]>
* sysdeps/m68k/backtrace.c: New file.
* sysdeps/unix/sysv/linux/m68k/nptl/not-cancel.h: New file.
* sysdeps/unix/sysv/linux/m68k/syscalls.list: Add waitpid.
2013-01-10 Joseph Myers <[email protected]>
* sysdeps/m68k/bits/byteswap.h (__bswap_64): Use __extension__
with long long.
2013-01-04 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
2013-01-02 Joseph Myers <[email protected]>
* sysdeps/m68k/m680x0/fpu/mathimpl.h: Fix copyright notice
formatting.
* All files with FSF copyright notices: Update copyright dates
using scripts/update-copyrights.
2012-11-30 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
2012-11-23 Andreas Schwab <[email protected]>
* sysdeps/m68k/dl-trampoline.S (_dl_runtime_profile)
[__mcoldfire__]: Fix copying loop.
* sysdeps/m68k/sotruss-lib.c: New file.
2012-11-21 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h
(lll_futex_timed_wait_bitset): Remove use of
INTERNAL_SYSCALL_ERROR_P.
2012-11-20 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/s_atan.c (weak_aliasx): Remove
macro and use weak_alias directly.
* sysdeps/m68k/m680x0/fpu/s_ccosh.c (weak_aliasx): Likewise.
* sysdeps/m68k/m680x0/fpu/s_cexp.c (weak_aliasx): Likewise.
* sysdeps/m68k/m680x0/fpu/s_csin.c (weak_aliasx): Likewise.
* sysdeps/m68k/m680x0/fpu/s_csinh.c (weak_aliasx): Likewise.
* sysdeps/m68k/m680x0/fpu/s_expm1.c (weak_aliasx): Likewise.
* sysdeps/m68k/m680x0/fpu/s_frexp.c (weak_aliasx): Likewise.
* sysdeps/m68k/m680x0/fpu/s_lrint.c (weak_aliasx): Likewise.
* sysdeps/m68k/m680x0/fpu/s_modf.c (weak_aliasx): Likewise.
* sysdeps/m68k/m680x0/fpu/s_isinf.c (weak_aliasx): Likewise.
* sysdeps/m68k/m680x0/fpu/s_remquo.c (weak_aliasx): Likewise.
* sysdeps/m68k/m680x0/fpu/s_scalbn.c (strong_aliasx, weak_aliasx):
Likewise.
* sysdeps/m68k/m680x0/fpu/s_sin.c (weak_aliasx): Likewise.
* sysdeps/m68k/m680x0/fpu/s_sincos.c (weak_aliasx): Likewise.
2012-11-18 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/nptl/sysdep-cancel.h (_DOCARGS_5)
(UNDOCARGS_5): Save %d5 on stack instead of in %a1.
2012-11-15 Andreas Schwab <[email protected]>
* sysdeps/m68k/dl-machine.h (ELF_MACHINE_RUNTIME_FIXUP_PARAMS):
Define.
2012-11-06 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
* sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h
(lll_futex_timed_wait_bitset): Define.
2012-11-03 Joseph Myers <[email protected]>
* sysdeps/m68k/fpu/fclrexcpt.c (feclearexcept): Add
libm_hidden_ver.
[BZ #3439]
* sysdeps/m68k/fpu/bits/fenv.h (FE_INEXACT): Define macro to
integer constant usable in #if and use that to give value to enum
constant.
(FE_DIVBYZERO): Likewise.
(FE_UNDERFLOW): Likewise.
(FE_OVERFLOW): Likewise.
(FE_INVALID): Likewise.
(FE_TONEAREST): Likewise.
(FE_TOWARDZERO): Likewise.
(FE_DOWNWARD): Likewise.
(FE_UPWARD): Likewise.
2012-10-25 Andreas Jaeger <[email protected]>
* sysdeps/unix/sysv/linux/m68k/bits/fcntl.h: Remove all
definitions and declarations that are provided by
<bits/fcntl-linux.h> and include <bits/fcntl-linux.h>.
2012-10-19 Roland McGrath <[email protected]>
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libc.abilist:
(GLIBC_2.17): Add clock_* symbols.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libc.abilist: Likewise.
2012-10-02 Siddhesh Poyarekar <[email protected]>
* sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h: Fix clone
flag name in comment to CLONE_CHILD_CLEARTID.
2012-09-28 Roland McGrath <[email protected]>
* sysdeps/unix/sysv/linux/m68k/init-first.c: Include main file from
csu/ rather than sysdeps/unix/sysv/linux/.
2012-08-27 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/m68k/kernel-features.h
(__ASSUME_STAT64_SYSCALL): Remove.
2012-08-21 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/m68k/kernel-features.h
(__ASSUME_FADVISE64_64_SYSCALL): Remove.
2012-08-20 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/m68k/kernel-features.h
(__ASSUME_MMAP2_SYSCALL): Remove.
2012-08-15 Maxim Kuvyrkov <[email protected]>
* sysdeps/m68k/nptl/pthread_spin_lock.c: Use generic code.
* sysdeps/m68k/nptl/pthread_spin_trylock.c: Remove, use generic version.
2012-08-10 Andreas Schwab <[email protected]>
* sysdeps/m68k/ldsodefs.h (m68k_gnu_pltenter): Remove const on
fifth parameter.
2012-08-08 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/m68k/kernel-features.h
(__ASSUME_TGKILL): Remove.
2012-08-08 Andreas Schwab <[email protected]>
* sysdeps/m68k/coldfire/fpu/bits/mathinline.h: New file.
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/bits/atomic.h
(atomic_compare_and_exchange_val_acq) [!SHARED]: Add cast to avoid
warning.
2012-08-07 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/m68k/configure.in (arch_minimum_kernel):
Remove.
* sysdeps/unix/sysv/linux/m68k/configure: Regenerated.
* sysdeps/unix/sysv/linux/m68k/kernel-features.h
(__ASSUME_TGKILL): Define unconditionally.
(__ASSUME_UTIMES): Likewise.
(__ASSUME_FADVISE64_64_SYSCALL): Likewise.
2012-08-03 Andreas Schwab <[email protected]>
* sysdeps/m68k/sysdep.h (ALIGNARG, ASM_TYPE_DIRECTIVE)
(ASM_SIZE_DIRECTIVE): Remove.
(ENTRY, END): Use .p2align. Use .type and .size instead of
ASM_TYPE_DIRECTIVE and ASM_SIZE_DIRECTIVE.
* sysdeps/m68k/asm-syntax.h (ALIGNARG, PROLOG, EPILOG, ALIGN)
(GLOBL): Remove unused macros.
2012-08-01 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/m68k/kernel-features.h
(__ASSUME_FCNTL64): Remove.
* sysdeps/unix/sysv/linux/m68k/kernel-features.h
(__ASSUME_VFORK_SYSCALL): Remove.
* sysdeps/unix/sysv/linux/m68k/vfork.S (__vfork) [__NR_vfork]:
Make code unconditional.
(__vfork) [__ASSUME_VFORK_SYSCALL]: Likewise.
(__vfork) [!__ASSUME_VFORK_SYSCALL]: Remove conditional code.
2012-08-01 Roland McGrath <[email protected]>
[BZ #14138]
* sysdeps/unix/sysv/linux/m68k/getrlimit.c: File removed.
2012-08-01 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
2012-07-26 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
2012-07-25 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/m68k/kernel-features.h
(__ASSUME_MMAP2_SYSCALL): Define unconditionally.
(__ASSUME_STAT64_SYSCALL): Likewise.
(__ASSUME_FCNTL64): Likewise.
(__ASSUME_VFORK_SYSCALL): Likewise.
2012-07-25 Florian Weimer <[email protected]>
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libc.abilist:
Add secure_getenv.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libc.abilist:
Likewise.
2012-07-20 Joseph Myers <[email protected]>
* data/localplt-m68k-linux-gnu.data: Move to ...
* sysdeps/unix/sysv/linux/m68k/nptl/localplt.data: ... here.
2012-07-17 Joseph Myers <[email protected]>
* data/c++-types-m68k-linux-gnu.data: Move to ...
* sysdeps/unix/sysv/linux/m68k/nptl/c++-types.data: ... here.
2012-07-16 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/m680x0/Makefile: New file.
* sysdeps/unix/sysv/linux/m68k/m680x0/getcontext.S: New file.
* sysdeps/unix/sysv/linux/m68k/m680x0/makecontext.S: New file.
* sysdeps/unix/sysv/linux/m68k/m680x0/setcontext.S: New file.
* sysdeps/unix/sysv/linux/m68k/m680x0/swapcontext.S: New file.
* sysdeps/unix/sysv/linux/m68k/m680x0/ucontext_i.sym: New file.
2012-07-09 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
2012-05-30 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/kernel-features.h
(__ASSUME_TRUNCATE64_SYSCALL): Remove.
* sysdeps/unix/sysv/linux/m68k/nptl/pthread_once.c: Use
hidden_def instead of adding _internal alias.
2012-05-26 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/kernel-features.h
(__ASSUME_NEW_GETRLIMIT_SYSCALL): Remove.
* sysdeps/unix/sysv/linux/m68k/syscalls.list: Add chown.
* sysdeps/unix/sysv/linux/m68k/chown.c: Remove file.
2012-05-23 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/bits/mman.h (MADV_DONTDUMP)
(MADV_DODUMP): Define.
2012-05-21 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/s_logbl.c: New file.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libc.abilist: Update.
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libc.abilist: Update.
2012-05-14 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/configure.in (arch_minimum_kernel)
[$machine != m68k/coldfire]: Don't set.
2012-05-10 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
2012-04-28 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/ld.abilist: New file.
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libBrokenLocale.abilist:
New file.
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libanl.abilist: New
file.
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libc.abilist: New
file.
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libcrypt.abilist: New
file.
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libdl.abilist: New
file.
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libm.abilist: New
file.
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libnsl.abilist: New
file.
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libpthread.abilist:
New file.
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libresolv.abilist:
New file.
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/librt.abilist: New
file.
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libthread_db.abilist:
New file.
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/libutil.abilist: New
file.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/ld.abilist: New file.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libBrokenLocale.abilist:
New file.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libanl.abilist: New
file.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libc.abilist: New file.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libcrypt.abilist: New
file.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libdl.abilist: New
file.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libm.abilist: New file.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libnsl.abilist: New
file.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libpthread.abilist: New
file.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libresolv.abilist: New
file.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/librt.abilist: New
file.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libthread_db.abilist:
New file.
* sysdeps/unix/sysv/linux/m68k/m680x0/nptl/libutil.abilist: New
file.
2012-04-26 Siddhesh Poyarekar <[email protected]>
* sysdeps/m68k/libgcc_s.h: Remove.
* sysdeps/m68k/shlib-versions: Add libgcc_s.
2012-04-18 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
2012-04-17 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/e_ilogb.c: Renamed from s_ilogb.c.
Define __ieee754_ilogb instead of __ilogb.
* sysdeps/m68k/m680x0/fpu/e_ilogbf.c: Renamed from s_ilogbf.c and
adjusted.
* sysdeps/m68k/m680x0/fpu/e_ilogbl.c: Renamed from s_ilogbl.c and
adjusted.
2012-03-28 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/bits/mman.h (MAP_STACK)
(MAP_HUGETLB): Define.
2012-03-27 Andreas Schwab <[email protected]>
* sysdeps/m68k/elf/start.S: Move to ...
* sysdeps/m68k/start.S: ... here.
2012-03-23 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
* sysdeps/m68k/m680x0/fpu/s_cexp.c: Avoid undue overflow.
* sysdeps/m68k/m680x0/fpu/bits/mathinline.h (__inline_mathop1):
Mark asm as volatile.
(__scalbn): Likewise.
(__lrint): Likewise.
(__sincos): Likewise.
2012-03-22 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
2012-03-21 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/register-dump.h: Include <_itoa.h>
instead of <stdio-common/_itoa.h>.
2012-03-20 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
2012-03-15 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
2012-03-13 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/kernel-features.h
(__ASSUME_NEW_GETRLIMIT_SYSCALL, __ASSUME_VFORK_SYSCALL): Define
for 2.4.12 or later.
(__ASSUME_PSELECT, __ASSUME_PPOLL): Only undefine before 3.0.
2012-03-09 Richard Henderson <[email protected]>
* sysdeps/m68k/m680x0/fpu/math_private.h: Use include_next to
chain math_private.h.
* m68k/m680x0/fpu/e_acos.c: Use <> to include math_private.h.
* m68k/m680x0/fpu/e_atan2.c, m68k/m680x0/fpu/e_fmod.c: Likewise.
* m68k/m680x0/fpu/e_pow.c, m68k/m680x0/fpu/e_scalb.c: Likewise.
* m68k/m680x0/fpu/s_fpclassifyl.c, m68k/m680x0/fpu/s_llrint.c: Likewise.
* m68k/m680x0/fpu/s_llrintf.c, m68k/m680x0/fpu/s_llrintl.c: Likewise.
* m68k/m680x0/fpu/s_nextafterl.c: Likewise.
2012-03-09 Paul Eggert <[email protected]>
[BZ #13673]
Replace FSF snail mail address with URLs, as per GNU coding standards.
2012-03-05 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update.
2012-03-02 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update ULPs.
2012-02-27 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h
(pthread_attr_t): Fix name of union. Only define if not already
defined.
2012-02-26 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h: Name
pthread_attr_t union.
* sysdeps/m68k/m680x0/fpu/Makefile: Remove.
* sysdeps/m68k/m680x0/fpu/switch: Remove directory.
* sysdeps/m68k/m680x0/fpu/k_sinl.c: Replace by empty file.
* sysdeps/m68k/m680x0/fpu/k_cosl.c: Likewise.
* sysdeps/m68k/m680x0/fpu/k_tanf.c: Likewise.
* sysdeps/m68k/m680x0/fpu/k_tanl.c: Likewise.
* sysdeps/m68k/m680x0/fpu/k_sin.c: Remove.
* sysdeps/m68k/m680x0/fpu/k_sinf.c: Remove.
* sysdeps/m68k/m680x0/fpu/k_cos.c: Remove.
* sysdeps/m68k/m680x0/fpu/k_cosf.c: Remove.
* sysdeps/m68k/m680x0/fpu/k_tan.c: Remove.
2012-02-25 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/s_ccosh.c: Avoid raising invalid
exception for NaN+iNaN.
2012-02-24 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/libm-test-ulps: Update ULPs.
* sysdeps/m68k/m680x0/fpu/s_expm1.c: Set errno to ERANGE if
argument causes overflow.
* sysdeps/m68k/m680x0/fpu/s_expm1f.c: Include <s_expm1.c>.
(float_type, o_threshold): Define.
* sysdeps/m68k/m680x0/fpu/s_expm1l.c: Likewise.
* sysdeps/m68k/m680x0/fpu/bits/mathinline.h [__OPTIMIZE__]: Don't
define expm1 as inline.
* sysdeps/m68k/m680x0/fpu/s_sin.c: Set errno to EDOM if argument
is infinite.
* sysdeps/m68k/m680x0/fpu/s_cos.c: Include <s_sin.c>.
* sysdeps/m68k/m680x0/fpu/s_tan.c: Likewise.
* sysdeps/m68k/m680x0/fpu/s_cosf.c: Include <s_sinf.c>.
* sysdeps/m68k/m680x0/fpu/s_cosl.c: Include <s_sinl.c>.
* sysdeps/m68k/m680x0/fpu/s_sinf.c: Include <s_sin.c>.
(FUNC): Don't define if already defined.
(float_type): Define.
* sysdeps/m68k/m680x0/fpu/s_sinl.c: Likewise.
* sysdeps/m68k/m680x0/fpu/bits/mathinline.h [__OPTIMIZE__]: Don't
define sin, cos, tan as inlines.
2012-02-08 Andreas Schwab <[email protected]>
* sysdeps/m68k/crti.S: New file.
* sysdeps/m68k/crtn.S: New file.
* sysdeps/m68k/m680x0/sysdep.h (LOAD_GOT): Define.
* sysdeps/m68k/coldfire/sysdep.h (LOAD_GOT): Define.
* sysdeps/unix/sysv/linux/m68k/coldfire/m68k-helper.S: Remove.
* sysdeps/unix/sysv/linux/m68k/m680x0/m68k-helper.S: Remove.
* sysdeps/unix/sysv/linux/m68k/m68k-helper.S: New file.
* sysdeps/unix/sysv/linux/m68k/configure.in
(libc_cv_gcc_unwind_find_fde): Don't set on coldfire.
2012-01-29 Andreas Schwab <[email protected]>
* sysdeps/m68k/asm-syntax.h: Remove __STDC__ conditionals.
* sysdeps/m68k/m680x0/fpu/s_nextafterl.c: Likewise.
* sysdeps/unix/sysv/linux/m68k/sysdep.h: Likewise.
2012-01-08 Andreas Schwab <[email protected]>
* sysdeps/m68k/fpu/bits/fenv.h (FE_DFL_ENV, FE_NOMASK_ENV): Use
const intead of __const.
* sysdeps/m68k/asm-syntax.h: Remove non-ELF support.
* sysdeps/m68k/sysdep.h: Likewise.
(NO_UNDERSCORES): Don't define.
2012-01-07 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/configure.in: Set
arch_minimum_kernel, libc_cv_gcc_unwind_find_fde and
ldd_rewrite_script.
2012-01-05 Andreas Schwab <[email protected]>
* sysdeps/m68k/dl-trampoline.S: Add cfi directives.
* sysdeps/m68k/memchr.S: Likewise.
* sysdeps/m68k/rawmemchr.S: Likewise.
* sysdeps/m68k/strchr.S: Likewise.
* sysdeps/m68k/strchrnul.S: Likewise.
* sysdeps/m68k/m680x0/add_n.S: Likewise.
* sysdeps/m68k/m680x0/lshift.S: Likewise.
* sysdeps/m68k/m680x0/rshift.S: Likewise.
* sysdeps/m68k/m680x0/sub_n.S: Likewise.
* sysdeps/m68k/m680x0/m68020/addmul_1.S: Likewise.
* sysdeps/m68k/m680x0/m68020/mul_1.S: Likewise.
* sysdeps/m68k/m680x0/m68020/submul_1.S: Likewise.
* sysdeps/unix/sysv/linux/m68k/clone.S: Likewise.
* sysdeps/unix/sysv/linux/m68k/semtimedop.S: Likewise.
* sysdeps/unix/sysv/linux/m68k/socket.S: Likewise.
* sysdeps/unix/sysv/linux/m68k/sysdep.S: Likewise.
* sysdeps/unix/sysv/linux/m68k/sysdep.h: Likewise.
* sysdeps/unix/sysv/linux/m68k/vfork.S: Likewise.
* sysdeps/m68k/sysdep.h (CALL_MCOUNT): Likewise.
(ENTRY): Add cfi_startproc.
(END): Add cfi_endproc.
* sysdeps/unix/sysv/linux/m68k/coldfire/m68k-helpers.S: Remove
cfi_startproc/cfi_endproc.
* sysdeps/unix/sysv/linux/m68k/m680x0/m68k-helpers.S: Likewise.
* sysdeps/unix/sysv/linux/m68k/nptl/sysdep-cancel.h (PSEUDO):
Likewise.
2011-12-23 Andreas Schwab <[email protected]>
* sysdeps/m68k/bits/byteswap.h (__bswap_constant_64): Protect long
long constant with __extension__.
2011-12-04 Thorsten Glaser <[email protected]>
* sysdeps/unix/sysv/linux/m68k/syscall.S: Allow six arguments.
2011-11-01 Andreas Schwab <[email protected]>
* sysdeps/m68k/stackinfo.h (stackinfo_get_sp, stackinfo_sub_sp):
Define.
2011-10-26 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/math_private.h: New file.
* sysdeps/m68k/m680x0/fpu/sincostab.c: New file.
2011-10-23 Andreas Schwab <[email protected]>
* sysdeps/m68k/coldfire/fpu/e_sqrt.c: Add __sqrt_finite alias.
* sysdeps/m68k/coldfire/fpu/e_sqrtf.c: Add __sqrtf_finite alias.
* sysdeps/m68k/m680x0/fpu/e_exp.c (FUNC_FINITE): Define.
* sysdeps/m68k/m680x0/fpu/e_expf.c (FUNC_FINITE): Define.
* sysdeps/m68k/m680x0/fpu/e_expl.c (FUNC_FINITE): Define.
2011-10-22 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/s_ccos.c: Remove.
* sysdeps/m68k/m680x0/fpu/s_ccosf.c: Remove.
* sysdeps/m68k/m680x0/fpu/s_ccosl.c: Remove.
2011-10-13 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/e_acos.c: Add __*_finite alias.
* sysdeps/m68k/m680x0/fpu/e_acosf.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_acosl.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_asin.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_asinl.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_asinf.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_atan2.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_atanh.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_atanhf.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_atanhl.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_cosh.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_coshf.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_coshl.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_exp10.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_exp10f.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_exp10l.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_exp2.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_exp2l.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_exp2f.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_fmod.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_fmodf.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_fmodl.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_log.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_logl.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_logf.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_log10.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_log10f.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_log10l.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_log2.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_log2f.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_log2l.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_pow.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_remainder.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_remainderl.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_remainderf.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_scalb.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_sinh.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_sinhf.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_sinhl.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_sqrt.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_sqrtf.c: Likewise.
* sysdeps/m68k/m680x0/fpu/e_sqrtl.c: Likewise.
2011-10-09 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/s_isinfl.c: Remove.
* sysdeps/m68k/m680x0/s_isnanl.c: Remove.
2011-10-05 Andreas Schwab <[email protected]>
* sysdeps/m68k/dl-machine.h (elf_machine_rela)
(elf_machine_lazy_rel): Add parameter skip_ifunc.
2011-09-11 Andreas Schwab <[email protected]>
* sysdeps/m68k/nptl/tls.h: Don't define USE_TLS.
* sysdeps/m68k/dl-machine.h: Remove use of USE_TLS.
* sysdeps/m68k/libc-tls.c: Likewise.
* sysdeps/unix/sysv/linux/m68k/sysdep.h: Remove use of
USE___THREAD.
2011-06-23 Andreas Schwab <[email protected]>
* sysdeps/m68k/dl-trampoline.S (_dl_runtime_profile)
[__mcoldfire__]: Fix typo saving %fp0.
2011-04-11 Andreas Schwab <[email protected]>
* sysdeps/m68k/dl-tls.h (TLS_DTV_UNALLOCATED): Define.
2011-04-03 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/bits/fcntl.h: Update comments.
(O_PATH): Define.
(struct file_handle, MAX_HANDLE_SZ): Define.
(name_to_handle_at, open_by_handle_at): Declare.
2011-03-06 Andreas Schwab <[email protected]>
* sysdeps/m68k/bits/byteswap.h (__bswap_16, __bswap_32)
(__bswap_64): Implement as inline functions.
2011-01-18 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/bits/mman.h (MADV_HUGEPAGE)
(MADV_NOHUGEPAGE): Define.
2011-01-10 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h (sem_t):
Force alignment.
2010-12-26 Andreas Schwab <[email protected]>
* sysdeps/m68k/stackinfo.h (DEFAULT_STACK_PERMS): Define.
2010-11-05 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/fchownat.c: Include
i386/fchownat.c.
2010-10-11 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/bits/mathinline.h: Remove fma inlines.
* sysdeps/m68k/fpu/feupdateenv.c (feupdateenv): Add
libm_hidden_ver.
* sysdeps/m68k/fpu/ftestexcept.c (feupdateenv): Add
libm_hidden_def.
2010-08-25 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h
(SYSCALL_ERROR_LOAD_GOT): Use & instead of #.
2010-08-17 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/syscalls.list: Remove
fanotify_init.
2010-08-14 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/syscalls.list: Add prlimit64,
fanotify_init, fanotify_mask.
2010-08-02 Andreas Schwab <[email protected]>
* sysdeps/m68k/coldfire/sysdep.h: New file.
(PCREL_OP): Define.
* sysdeps/m68k/m680x0/sysdep.h: New file.
(PCREL_OP): Define.
* sysdeps/m68k/sysdep.h (PCREL_OP): Don't define here.
* sysdeps/unix/sysv/linux/m68k/coldfire/sysdep.h: New file.
(SYSCALL_ERROR_LOAD_GOT): Define.
* sysdeps/unix/sysv/linux/m68k/m680x0/sysdep.h: New file.
(SYSCALL_ERROR_LOAD_GOT): Define.
* sysdeps/unix/sysv/linux/m68k/sysdep.h: Don't include subordinate
sysdep files.
(SYSCALL_ERROR_HANDLER) [PIC && USE___THREAD]: Use
SYSCALL_ERROR_LOAD_GOT.
2010-06-24 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/m68k/bits/fcntl.h (F_SETPIPE_SZ,
F_GETPIPE_SZ): Define.
2010-06-13 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/bits/mathinline.h: Mark all functions as
non-throwing.
* sysdeps/unix/sysv/linux/m68k/sys/user.h (NBPG, UPAGES)
(HOST_TEXT_START_ADDR, HOST_STACK_END_ADDR): Define.
2010-06-11 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h: Force
alignment of futex variables.
2010-05-22 Andreas Schwab <[email protected]>
* data/c++-types-m68k-linux-gnu.data: New file.
* data/localplt-m68k-linux-gnu.data: New file.
2010-03-13 Andreas Schwab <[email protected]>
* sysdeps/m68k/m680x0/fpu/s_ccosh.c: Use signbit macro.
* sysdeps/m68k/m680x0/fpu/s_ccos.c: Likewise.
* sysdeps/m68k/m680x0/fpu/bits/mathinline.h (__signbit)
(__signbitf, __signbitl): Always define as inline.
* sysdeps/unix/sysv/linux/m68k/sysdep.h (SYSCALL_ERROR_HANDLER):
Add variant for USE__THREAD.
2010-03-12 Andreas Schwab <[email protected]>
* sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h: Don't include
<sysdep.h>.
* sysdeps/unix/sysv/linux/m68k/m68k-helpers.S: Renamed ...
* sysdeps/unix/sysv/linux/m68k/coldfire/m68k-helpers.S: ... to
this.
* sysdeps/unix/sysv/linux/m68k/m680x0/m68k-helpers.S: New file.
2010-03-09 Maxim Kuvyrkov <[email protected]>
NPTL support for m68k/ColdFire
* sysdeps/unix/sysv/linux/m68k/sysdep.h (tls.h): Include.
(INTERNAL_SYSCALL): Convert to INTERNAL_SYSCALL_NCS.
(PTR_MANGLE, PTR_DEMANGLE): Define.
(NEED_STATIC_SYSINFO_DSO): Define.
* sysdeps/unix/sysv/linux/m68k/clone.S: Support RESET_PID.
* sysdeps/unix/sysv/linux/m68k/m68k-helpers.S: New.
* sysdeps/unix/sysv/linux/m68k/Makefile: Add new files to lists.
* sysdeps/unix/sysv/linux/m68k/vfork.S: Add SAVE_PID/RESTORE_PID.
* sysdeps/unix/sysv/linux/m68k/m68k-vdso.c: New.
* sysdeps/unix/sysv/linux/m68k/libc-m68k-vdso.c: New.
* sysdeps/unix/sysv/linux/m68k/bits/m68k-vdso.h: New.
* sysdeps/unix/sysv/linux/m68k/coldfire/nptl/bits/atomic.h: New.
* sysdeps/unix/sysv/linux/m68k/Versions: Add symbols for NPTL support.
* sysdeps/unix/sysv/linux/m68k/init-first.c: New.
* sysdeps/unix/sysv/linux/m68k/nptl/sysdep-cancel.h: New.
* sysdeps/unix/sysv/linux/m68k/nptl/bits/pthreadtypes.h: New.
* sysdeps/unix/sysv/linux/m68k/nptl/bits/semaphore.h: New.
* sysdeps/unix/sysv/linux/m68k/nptl/clone.S: New.
* sysdeps/unix/sysv/linux/m68k/nptl/fork.c: New.
* sysdeps/unix/sysv/linux/m68k/nptl/lowlevellock.h: New.
* sysdeps/unix/sysv/linux/m68k/nptl/vfork.S: New.
* sysdeps/unix/sysv/linux/m68k/nptl/pt-vfork.S: New.
* sysdeps/unix/sysv/linux/m68k/nptl/createthread.c: New.
* sysdeps/unix/sysv/linux/m68k/nptl/pthread_once.c: New.
* sysdeps/unix/sysv/linux/m68k/socket.S: Update cancelation code.
* sysdeps/m68k/dl-tls.h: New.
* sysdeps/m68k/libc-tls.c: New.
* sysdeps/m68k/tls-macros.h: New.
* sysdeps/m68k/dl-machine.h (RTLD_START): Terminate stack frame to
generate better backtraces.
(elf_machine_type_class, elf_machine_rela): Handle TLS relocations.
* sysdeps/m68k/dl-machine.h: Handle TLS relocations.
* sysdeps/m68k/nptl/tcb-offsets.sym: New.
* sysdeps/m68k/nptl/pthread_spin_trylock.c: New.
* sysdeps/m68k/nptl/tls.h: New.
* sysdeps/m68k/nptl/pthread_spin_lock.c: New.
* sysdeps/m68k/nptl/pthreaddef.h: New.
* sysdeps/m68k/nptl/Makefile: New.
* sysdeps/unix/sysv/linux/m68k/bits/sigcontext.h: Remove.
* sysdeps/unix/sysv/linux/m68k/register-dump.h: Update.
* sysdeps/unix/sysv/linux/m68k/bits/siginfo.h: Remove.
* sysdeps/m68k/jmpbuf-unwind.h (_JMPBUF_CFA_UNWINDS_ADJ)
(_jmpbuf_sp, _JMPBUF_UNWINDS_ADJ, __libc_unwind_longjmp): Define.
2010-02-10 Joseph Myers <[email protected]>
* sysdeps/m68k/fpu/fegetenv.c: Add hidden alias.
2010-01-11 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/m68k/bits/stat.h: Fix double-inclusion
problem.
2010-01-10 Joseph Myers <[email protected]>
* sysdeps/unix/sysv/linux/m68k/bits/fcntl.h: Define O_DIRECTORY,
O_NOFOLLOW, O_CLOEXEC, F_DUPFD_CLOEXEC, F_SETOWN, and F_GETOWN for
XPG7.
* sysdeps/unix/sysv/linux/m68k/bits/stat.h: Enable using from