File: ChangeLog

package info (click to toggle)
fxt 0.3.13-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 4,004 kB
  • sloc: sh: 8,995; ansic: 8,135; perl: 3,284; asm: 598; makefile: 213
file content (1124 lines) | stat: -rw-r--r-- 28,945 bytes parent folder | download | duplicates (5)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
2021-01-02 17:23  sthibaul

	* tools/fut-template.h: Make the non-fut path the fastpath

2020-12-31 15:21  sthibaul

	* TODO, tools/fxt.h: Convert files to utf-8

2020-12-31 15:20  sthibaul

	* tools/test.c: Avoid latin encoding

2020-10-27 18:39  sthibaul

	* configure.ac: 0.3.12 release

2020-10-27 18:35  sthibaul

	* tools/: ev.c, fxt.h: Add fxt_blockev_leave to free fxt_blockev_t

2020-10-27 18:35  sthibaul

	* tools/fxt.c: Really free fxt_t content

2020-10-26 12:56  sthibaul

	* tools/: fxt.c, fxt_internal.h: Don't try not to close
	  user-provided fd (it's always closed by fclose...)

2020-10-26 12:50  sthibaul

	* tools/fxt.c: Fix fxt_close logic...

2020-09-25 12:32  sthibaul

	* tools/: fxt.c, fxt_internal.h: Add missing fxt_close

2020-09-25 12:25  sthibaul

	* doc/fr-plain.bst: Add fr-plain.bst which isn't in texlive any
	  more

2020-06-05 10:31  sthibaul

	* tools/: get_cpu_info.c, pids.c: iAvoid opening /proc files on
	  MacOS

	  It doesn't have them anyway. Submitted by Raymond Namyst.

2020-03-26 01:34  sthibaul

	* configure.ac, tools/Makefile.am: Fix soname version

2020-03-26 01:28  sthibaul

	* tools/Makefile.am: Clean generated manpage

2020-03-26 01:22  sthibaul

	* tools/fut-template.h: Add missing parameters

2020-03-26 01:19  sthibaul

	* tools/: fut-template.h, fut_setup.c, fxt_internal.h: Add missing
	  filename const qualifier

2020-03-26 00:55  sthibaul

	* tools/: fut_record.c, fut_setup.c: Fix crash when trying to
	  record an event after fut_done is over

2020-02-26 20:15  sthibaul

	* tools/: fxt.c, fxt.h: Also make fxt_setupeventsbuffer use large
	  size

2020-02-26 20:10  sthibaul

	* tools/: fut-template.h, fut_record.c, fut_setup.c,
	  fxt_internal.h: support big buffers (>= 2GB)

	  We need to make all size parameters bigger.

	  This will require an ABI bump on release.

	  From Philippe Swartvagher

2019-12-14 19:04  sthibaul

	* tools/Makefile.am: Add whatis section to generated manpage

2019-12-14 18:59  sthibaul

	* tools/: Makefile.am, fxt_print.c: generate manpage from help

2019-07-12 12:01  vdanjean

	* configure.ac: new release

2019-07-12 12:00  vdanjean

	* tools/: .cvsignore, Makefile.am, fut-template.h, fxt.h,
	  template2h.pl.in: Add macro for 32 parameters (and ABI accept up
	  to 254 parameters)

2019-07-12 11:17  vdanjean

	* .cvsignore, Makefile.am, configure.ac, doc/Makefile.am,
	  m4/.cvsignore, m4/amx_silent_rules.m4, tools/Makefile.am: cleanup
	  build system

2018-07-30 15:31  sthibaul

	* tools/pids.c: Fix overflow on systems with 32bit pids

2018-06-26 13:20  sthibaul

	* configure.ac: release

2018-06-26 13:19  sthibaul

	* tools/fxt.h: Add riscv64 arch

2018-06-26 13:13  sthibaul

	* tools/: fut-template.h, fxt.h: Fix link of c++ programs

2017-11-22 17:05  sthibaul

	* configure.ac: upload

2017-11-22 17:05  sthibaul

	* tools/fxt.h: Use limits.h to determine 32bit vs 64bit

2017-11-22 16:58  sthibaul

	* tools/fxt.h: Fix mips64el

2017-11-22 15:41  sthibaul

	* configure.ac: release

2017-11-22 15:41  sthibaul

	* tools/fxt.h: Fix sparc64

2017-11-22 15:28  sthibaul

	* tools/test.c: Fix output check on big-endian systems

2017-11-22 15:28  sthibaul

	* tools/fxt.c: Fix error check

2017-11-22 11:29  sthibaul

	* configure.ac: release

2017-11-22 11:23  sthibaul

	* tools/: Makefile.am, fxt.h, test.c: Fix ppc64el, and actually
	  test output of fxt_print

2017-08-03 16:58  sthibaul

	* configure.ac: release

2017-07-05 17:28  sthibaul

	* tools/fxt_internal.h: Fix declaration of variable

2017-06-04 10:59  sthibaul

	* tools/pids.c: Fix unbound buffer filling

2017-06-02 21:05  sthibaul

	* tools/symbols.c: fix memleaks

2017-06-02 21:04  sthibaul

	* tools/names.c: Fix array overflow

2017-06-02 21:01  sthibaul

	* tools/get_cpu_info.c: Fix bogus parenthesis

2017-06-02 20:54  sthibaul

	* tools/: fut-template.h, fxt_internal.h: Move fut_slot_lock
	  declaration, we do not need to expose it

2017-03-24 09:35  sthibaul

	* tools/fut_setup.c: Use FUT_CODE macro instead of hardcoded
	  computation

2017-03-22 18:38  sthibaul

	* configure.ac: release

2017-03-22 18:17  sthibaul

	* tools/: fut-template.h, fut_record.c, fut_setup.c,
	  fxt_internal.h: Fix flushing: it needs to be passed the proper
	  start of buffer for double-buffering

2017-03-22 18:13  sthibaul

	* tools/: fut-template.h, fut_record.c, fut_setup.c: Avoid macro
	  name conflict

2017-03-22 18:12  sthibaul

	* tools/fut-template.h: Fix warning

2017-03-22 18:10  sthibaul

	* tools/: fut_record.c, fut_setup.c, fxt_internal.h: Implement
	  double-buffering to avoid making all threads get stuck while one
	  of them is flushing the trace

2017-03-22 14:05  sthibaul

	* tools/fut_record.c: Tell the compiler that it is unlikely to have
	  conflicts

2017-03-22 14:02  sthibaul

	* tools/fut_record.c: Do not use CLOCK_MONOTONIC_RAW, it is slower
	  than CLOCK_MONOTONIC, and we actually want NTP synchronization
	  for traces over several machines

2017-03-03 16:07  sthibaul

	* tools/fut-template.h: Add FUT_DO_ALWAYS_* macros which ignore the
	  fut_active keymask

2016-10-17 20:10  sthibaul

	* tools/get_cpu_info.c: Fix crash on short read from /proc/cpuinfo

2016-10-17 17:36  sthibaul

	* tools/: get_cpu_info.c, pids.c, symbols.c: Avoid warning about
	  /proc not being available on windows.

2016-10-17 17:27  sthibaul

	* example.c: remove bogus example

2016-10-17 17:23  sthibaul

	* configure.ac: Release 0.3.2

2016-10-17 17:23  sthibaul

	* README: Fix example path

2016-10-17 16:23  sthibaul

	* tools/fut_setup.c: Add missing initialization

2016-09-20 15:59  sthibaul

	* tools/fut_record.c: drop knl port attempt: it's really an x86_64
	  for barriers

2016-09-20 13:44  sthibaul

	* tools/fut_record.c: try to support KNL

2016-09-20 10:08  sthibaul

	* tools/: Makefile.am, test.c: Add a small test

2016-09-20 10:08  sthibaul

	* tools/fut_record.c: Fix memory barriers on Xeon Phi

2016-09-20 10:07  sthibaul

	* configure.ac: make sure we have bfd.h before enabling using
	  libbfd

2016-09-19 18:56  sthibaul

	* configure.ac: Drop detecting malloc/realloc, we don't provide
	  rpl_malloc and rpl_realloc, and we don't need the semantic anyway

2016-09-04 19:31  sthibaul

	* tools/fkt_print.c: fix insecurely not using a format

2016-08-23 16:15  sthibaul

	* tools/: fut_bench.c, fut_record.c: mingw32 build fixes

2015-10-01 15:04  sthibaul

	* tools/fut-template.h: Don't use pthread_spinlock_t when not using
	  spinlocks

2015-03-06 10:38  sthibaul

	* configure.ac: release version 0.3.1

2014-10-29 12:48  sthibaul

	* configure.ac: Only explicitly pull libiberty and libz if linking
	  libbfd alone failed.

2014-09-01 12:51  sthibaul

	* tools/: fut-template.h: Avoid void* arithmetic, it is refused by
	  msvc

2014-08-26 13:50  sthibaul

	* doc/manuel.tex: Fix URLs, thanks Sylvain Henry for the report

2014-04-30 11:22  sthibaul

	* tools/fut-template.h: Fix STR macros

2014-04-30 11:06  sthibaul

	* configure.ac, tools/fut-template.h: Fix some buffer overflow

2014-04-14 18:11  sthibaul

	* tools/: fut-template.h, fut_record.c, fut_setup.c: Fix flush
	  atomicity

2013-11-08 15:51  sthibaul

	* tools/fut-template.h: Add 7-parameter macro

2013-10-30 17:45  ftrahay

	* tools/: fut-template.h, fut_record.c, fut_setup.c: fix a
	  compilation error on MacOSX (pthread_spinlock is not available on
	  MacOSX)

2013-10-22 16:56  sthibaul

	* tools/fut-template.h: Rename 'args' variable used in macros into
	  __args, to avoid warnings about clashing with application
	  variables

2013-07-11 11:02  ftrahay

	* tools/fut-template.h: fix a type conversion error that occurs
	  with some compilers (eg. nvcc)

2013-04-23 11:02  sthibaul

	* tools/fut_setup.c: Try to rename the output file when
	  fut_set_filename is called after fut_flush, instead of just
	  printing an error

2013-04-02 15:26  sthibaul

	* configure.ac: release 0.2.14

2013-04-02 15:25  sthibaul

	* tools/fxt.h: Add more architectures

2013-04-02 13:07  sthibaul

	* configure.ac: New version

2013-01-30 14:44  sthibaul

	* configure.ac, tools/Makefile.am: Fix static link of libbfd.
	  AC_HAVE_LIBRARY *prepends* the library to LIBS, so we have to
	  look for libz and libiberty *before* looking at libbfd

2013-01-30 14:20  sthibaul

	* tools/Makefile.am: Pass libfxt.la in LDADD instead of -lfxt,
	  which fixes all dependency issues

2013-01-25 17:48  sthibaul

	* configure.ac: Release fix

2013-01-25 17:47  sthibaul

	* tools/fut_setup.c: Fix closing and restarting a trace recording

2012-12-14 17:11  sthibaul

	* tools/fut_bench.c: add missing file

2012-12-14 17:10  sthibaul

	* tools/fut-template.h: Fix build

2012-12-10 14:57  sthibaul

	* tools/: Makefile.am, fut-template.h, fut_record.c, fut_setup.c,
	  fxt_internal.h: Add spinlock method for locking slots, but not
	  enabled for now. Add fut_bench to measure the inefficiency.

2012-12-01 00:56  sthibaul

	* configure.ac: release version 0.2.11

2012-11-30 19:48  sthibaul

	* tools/: fut-template.h, fut_record.c: Permit application to
	  provide its own time stamps, useful for simgrid for instance

2012-08-10 03:48  sthibaul

	* tools/fut_record.c: Use GetCurrentThreadId instead of
	  GetCurrentThread since the latter only returns a pseudo-handle.

2012-08-09 20:13  sthibaul

	* configure.ac, tools/Makefile.am, tools/dolib.c,
	  tools/fkt_print.c, tools/fkt_record.c, tools/fut_record.c,
	  tools/fut_setup.c, tools/fxt-tools.h, tools/fxt.c,
	  tools/fxt_print.c, tools/pids.c, tools/symbols.c: Add mingw build
	  support

2012-08-03 21:48  sthibaul

	* configure.ac, tools/fut_setup.c: Do not reset fut_active on
	  fut_flush, as that would actually stop record although
	  enable_fut_flush was called

2012-08-03 16:16  sthibaul

	* tools/fut-template.h: add yet another prototype...

2012-08-03 15:25  sthibaul

	* configure.ac: release

2012-08-03 15:25  sthibaul

	* tools/: fkt_record.c, fut_record.c, fut_setup.c, fxt_internal.h,
	  fxt_print.c: fix build warnings

2012-08-03 15:20  sthibaul

	* tools/fut-template.h: Add enable/disable_fut_flush prototypes

2012-04-09 23:09  sthibaul

	* configure.ac: Release version 0.2.6

2012-04-09 23:08  sthibaul

	* tools/fut_record.c: Do not set fut_active to 1, it is not reset
	  to 0

2012-04-05 18:12  ftrahay

	* tools/: ev.c, fut-template.h, fut_record.c, fut_setup.c:
	  implement fut_flush.	When enabled (by calling enabel_fut_flush),
	  when the buffer is full of events, it is dumped to disk, allowing
	  to record remaining events.

2012-03-07 15:42  ftrahay

	* configure.ac, tools/Makefile.am, tools/template2h.pl,
	  tools/template2h.pl.in: use @PERL@ instead of hardcoded
	  /usr/bin/perl

2012-03-01 01:53  sthibaul

	* configure.ac, tools/Makefile.am: Fix libbfd link, by including
	  libiberty and libz

2012-02-28 14:11  sthibaul

	* tools/Makefile.am: Restore cleaning temporary sources

2012-02-28 14:09  sthibaul

	* configure.ac: release a 0.2.4

2012-02-28 14:08  sthibaul

	* tools/Makefile.am: Fix make -j

2012-02-01 11:13  sthibaul

	* tools/fxt_print.c: Fix 'security' issue

2011-11-14 13:09  sthibaul

	* configure.ac, tools/ev.c, tools/fxt-tools.h, tools/fxt.c,
	  tools/fxt.h, tools/fxt_internal.h, tools/names.c, tools/pids.c,
	  tools/symbols.c: Propagate using streams to all reading function,
	  to avoid fd vs stream mess

2011-10-11 14:01  ftrahay

	* configure.ac: improve the way awk is detected during configure.
	  This prevents from selected mawk (which lead to an error because
	  of gensub being unavailable)

2011-08-26 16:24  ftrahay

	* tools/: Makefile.am, ev.c, fxt-tools.h, fxt.c, fxt_internal.h,
	  symbols.c: use fread instead of read to improve performance.

2011-04-13 11:12  sthibaul

	* kernel/linux-fkt/include/linux/fkt.h, tools/fut-template.h: Add
	  *PROBE6 functions, thanks to Charles Aulagnon

2011-03-14 13:22  sthibaul

	* configure.ac, tools/fut_record.c: only use gettid if requested at
	  configure time (it's not portable)

2011-03-14 13:13  sthibaul

	* tools/symbols.c: drop unneeded variable

2011-03-11 14:23  ftrahay

	* configure.ac, tools/Makefile.am, tools/fut-template.h,
	  tools/fut_record.c, tools/fut_setup.c: recording the thread id is
	  now decided at runtime.

2011-03-10 20:49  sthibaul

	* tools/names.c: comment spurious stdout output

2011-03-10 13:14  ftrahay

	* configure.ac: enable the recording of thread id by default (you
	  can disable it with --disable-record-tid )

2011-03-10 09:25  ftrahay

	* configure.ac, tools/Makefile.am, tools/ev.c, tools/fut_record.c:
	  add an option that enables the collection of thread id when
	  recording an event.

2011-03-03 17:46  ftrahay

	* configure.ac, tools/Makefile.am: * add missing tbx_timing.h in
	  the tarball * librt is only needed if clock_gettime was found -->
	  this should be enough for compiling fxt on Mac OS X

2011-01-12 17:33  sthibaul

	* tools/symbols.c: drop debugging printfs

2011-01-06 18:51  sthibaul

	* README: mention FUT doesn't need kernel patches

2011-01-06 18:47  sthibaul

	* doc/manuel.tex: quickfix elderly documentation

2010-10-08 11:35  sthibaul

	* README: clearly say that FUT and FKT are parts of FxT

2010-10-08 11:30  sthibaul

	* README, example.c: clarify FUT documentation

2010-10-08 11:28  sthibaul

	* Makefile.am: fix installation

2010-10-08 11:19  sthibaul

	* AUTHORS, NEWS: drop empty files

2010-10-08 11:19  sthibaul

	* INSTALL-autoconf, INSTALL.FKT: Restore original INSTALL file.
	  Drop INSTALL-autoconf, as that's now INSTALL

2010-10-05 18:09  sthibaul

	* configure.ac: on to 0.3

2010-10-05 17:48  sthibaul

	* configure.ac: don't require a ChangeLog

2010-10-05 17:44  sthibaul

	* ChangeLog: Drop re-generatable file

2010-10-05 17:42  sthibaul

	* .cvsignore: ignore generated files

2010-10-05 17:42  sthibaul

	* INSTALL: drop generated file

2010-09-11 01:39  sthibaul

	* configure.ac: fix autoconf prereq (thanks Olivier for the report)

2010-06-17 14:34  sthibaul

	* tools/pids.c: some compilers don't consider strlen() to be
	  constant

2010-05-27 14:13  caugonne

	* tools/fut_setup.c: Memset the buffer at during fut_setup to avoid
	  page faults and to prevent valgrind's warnings.

2010-05-12 11:58  sthibaul

	* doc/Makefile.am: do not abort if the documentation can not be
	  generated

2010-04-16 14:37  ftrahay

	* tools/fut-template.h: Fix possible SIGSEVG when calling
	  FUT_DO_PROBE while profiling is stopped

2010-03-11 14:53  sthibaul

	* example.c: add trivial example

2010-03-05 17:35  sthibaul

	* configure.ac, tools/fut_record.c: use clock_gettime by default
	  when available

2010-03-05 17:20  sthibaul

	* tools/: fut_record.c, fxt-tools.h: fix unsignedness

2009-10-15 16:04  caugonne

	* tools/: pids.c, symbols.c: Remove useless (and annoying) printf
	  debug outputs.

2009-09-20 22:01  sthibaul

	* tools/pids.c: fix memory leak

2009-06-24 11:32  sthibaul

	* Makefile.am, configure.ac, fxt.pc.in: Add a pkg-config file to
	  properly fix static linking

2009-05-10 16:06  caugonne

	* configure.ac, tools/Makefile.am, tools/fut_record.c: In case we
	  do not have synchronous clocks on the different processors, we
	  may use a monotonic clock instead of processor ticks. This
	  non-portable option can be enabled using --enable-sync-clock.

2009-03-28 16:08  caugonne

	* tools/fut-template.h: fut.h depends on fxt.h so we include it

2009-03-16 12:01  sthibaul

	* tools/: ev.c, fkt_print.c, symbols.c: use PRI*64 where useful

2009-03-16 12:00  sthibaul

	* configure.ac: add X11/Xlib.h and X11/Xutil.h headers check

2008-10-04 18:39  caugonne

	* tools/fut_record.c: cursp is never used anyway : that fixes my
	  some trace corruption problem (at last)

2008-09-10 11:29  caugonne

	* tools/fut_record.c: make cmpxchg safe using GCC intrinsics

2008-08-12 11:52  caugonne

	* tools/fkt_select.c: Recent kernels should not include
	  <asm/pages.h> anymore, we remove it since it compiles without it
	  as well.

2008-04-22 19:16  caugonne

	* tools/: Makefile.am, fut_record.c, fut_setup.c, tbx_timing.h:
	  Starts the process of making FxT independant of PM2 so that it
	  may be used without rewriting all the code that was put in PM2 to
	  initialize the FUT lib.  For now, this mostly consists in taking
	  files from the PM2 project. It was only tested on x86_64 for now.

2008-01-25 00:34  sthibaul

	* configure.ac, doc/Makefile.am: Don't build doc when latex or
	  pstopdf is not available

2007-10-28 11:14  sthibaul

	* INSTALL: distributions use texlive nowadays

2007-10-28 11:09  sthibaul

	* configure.ac: documentation build needs epstopdf

2007-07-10 18:55  sthibaul

	* tools/pids.c: make valgrind happy

2007-07-05 17:56  sthibaul

	* tools/symbols.c: c++ generates long names...

2007-07-04 16:28  sthibaul

	* tools/Makefile.am: library objects are suffixed .lo, not .o...

2007-05-25 10:32  sthibaul

	* tools/fxt_internal.h: comment

2007-05-07 15:45  sthibaul

	* tools/fxt.h: ev_32 and ev_native are not that useful actually

2007-05-07 15:37  sthibaul

	* tools/Makefile.am: add missing dependency

2007-05-07 15:30  sthibaul

	* tools/: ev.c, fkt_print.c, fxt.c, fxt.h, fxt_internal.h,
	  fxt_print.c: factorization of cpu detection code for FUT

2007-04-04 15:58  sthibaul

	* tools/fut-template.h: fix c++ compilation

2007-03-21 10:54  sthibaul

	* doc/remark.sty: this style is needed

2007-03-20 16:08  sthibaul

	* tools/: ev.c, fut-template.h, fxt.h: added facilities for putting
	  strings in probes

2007-03-15 23:49  vdanjean

	* Makefile.am, doc/LaTeX.mk, doc/pdfswitch.sty, doc/remark.sty,
	  doc/texdepends, tools/Makefile.am: add all needed files in dist

2007-03-15 23:39  vdanjean

	* .cvsignore, ChangeLog, Makefile.am, bootstrap, config.guess,
	  config.sub, configure.ac, configure.in, depcomp, install-sh,
	  ltmain.sh, missing, mkinstalldirs, doc/Makefile-doc.in,
	  doc/Makefile.am: Cleanup build system

2007-03-02 12:10  sthibaul

	* tools/fxt-tools.h: don't use same local variable as in caller. It
	  was pure luck that it was working...

2007-02-02 18:25  sthibaul

	* configure.in, tools/Makefile.am: permit X11-less compiling

2007-01-30 16:18  sthibaul

	* tools/pids.c: fix for systems that don't have /proc

2007-01-30 15:52  sthibaul

	* tools/: ev.c, fkt_extract.c, fkt_select.c, fkt_setmask.c, fxt.c,
	  get_cpu_info.c, names.c, pids.c, symbols.c, time.c, timer.c:
	  always include config.h first

2007-01-24 19:27  sthibaul

	* tools/fxt.c: typo

2007-01-24 17:40  sthibaul

	* tools/fxt_print.c: fixup

2007-01-23 15:13  sthibaul

	* configure.in, tools/ev.c, tools/fxt-tools.h, tools/fxt.c,
	  tools/fxt.h, tools/fxt_internal.h: hopefully fixed
	  little/bigendian issue

2007-01-13 13:55  sthibaul

	* tools/: Makefile.am, fkt_print.c, fxt_print.c: LFS fixes

2007-01-02 19:37  sthibaul

	* INSTALL: package dependencies documentation

2006-12-06 12:19  sthibaul

	* tools/fkt_select.c: sendfile is not used

2006-12-05 16:24  sthibaul

	* tools/: fkt_print.c, fkt_record.c, fxt_print.c: sys/mount.h n'est
	  pas disponible partout, et BLKGETSIZE encore moins, du coup

2006-11-29 11:49  sthibaul

	* tools/pids.c: fix 64bit-pid printing

2006-11-29 11:47  sthibaul

	* tools/fxt.h: uint64_t needs stdint.h

2006-11-29 11:44  sthibaul

	* tools/: fxt.h, fxt_internal.h, pids.c: fix the pid size to 64bits

2006-11-29 10:39  sthibaul

	* tools/fkt_extract.c: systems don't necessarily have PAGE_SIZE,
	  but getpagesize() yes

2006-11-28 18:07  sthibaul

	* tools/fxt.h: AIX support

2006-11-28 17:21  sthibaul

	* tools/fxt.h: definition dependency

2006-11-28 17:19  sthibaul

	* doc/LaTeX.mk: no need for -n here (and it makes make clean fail
	  on AIX)

2006-11-28 17:04  sthibaul

	* tools/: fkt_print.c, fxt.c, fxt.h, fxt_print.c: centralized
	  arch-specific defines

2006-11-27 17:57  sthibaul

	* TODO, configure.in, tools/Makefile.am, tools/ev.c, tools/fxt.c,
	  tools/fxt_internal.h, tools/get_cpu_info.c, tools/pids.c: don't
	  use off64_t/lseek64 (linuxism), use _FILE_OFFSET_BITS instead

2006-11-27 17:55  sthibaul

	* doc/Makefile.am: use clean-local instead of clean

2006-11-24 17:35  sthibaul

	* TODO, tools/fkt_print.c, tools/fxt.c, tools/fxt.h,
	  tools/fxt_print.c, tools/get_cpu_info.c, tools/pids.c,
	  tools/symbols.c: portability fixes

2006-11-24 10:50  sthibaul

	* configure.in, tools/Makefile.am, tools/symbols.c: we can work
	  without libbfd

2006-11-24 10:31  sthibaul

	* configure.in: We need gawk, not only any awk clone.  Look for
	  latex in the PATH, not only /usr/bin

2006-11-08 15:56  sthibaul

	* kernel/linux-fkt/arch/i386/kernel/fkt_header.S: new compilers
	  don't like such comments

2006-10-18 16:09  sthibaul

	* tools/: fkt_print.c, fxt.h, fxt_internal.h, pids.c: x86_64
	  support

2006-10-18 15:36  sthibaul

	* tools/fkt_print.c: x86_64 support

2006-10-18 15:21  sthibaul

	* tools/fut-template.h, kernel/linux-fkt/include/linux/fkt.h:
	  x86_64 support

2006-10-18 15:17  sthibaul

	* tools/fxt.h: x86_64 support

2006-10-18 15:13  sthibaul

	* tools/fkt_print.c: missing braces

2006-06-09 18:42  sthibaul

	* tools/symbols.c: strange symboles are not so strange on x86_64

2006-06-09 18:06  sthibaul

	* ChangeLog, TODO, tools/fkt_print.c, tools/fxt.c, tools/fxt.h,
	  tools/fxt_print.c: x86_84 support

2006-06-06 15:16  sthibaul

	* tools/pids.c: the process name may contain a space character

2006-05-22 16:14  sthibaul

	* tools/fkt_print.c: typo

2006-05-04 11:01  sthibaul

	* TODO: use vmsplice()

2006-05-03 17:06  sthibaul

	* tools/fkt_record.c: negative integers don't necessarily mean an
	  error, only -1 does

2006-04-29 01:03  sthibaul

	* tools/fut-template.h: fut_getstampedbuffer prototype is needed
	  early

2006-04-27 14:01  sthibaul

	* tools/fut-template.h: the _pointer_ is volatile, not data...

2006-03-27 14:21  sthibaul

	* tools/fkt_print.c: correction noms threads pour FUT

2006-02-23 11:47  sthibaul

	* kernel/linux-fkt/kernel/fkt-mod.c: kernel_thread is deprecated

2006-02-02 19:27  sthibaul

	* configure.in: we need latex for documentation

2006-02-02 19:08  sthibaul

	* configure.in: use X_LIBS flags for checking for X

2006-02-02 19:01  sthibaul

	* configure.in: we need X too

2006-02-02 18:53  sthibaul

	* ChangeLog: il faut un ChangeLog pour automake

2006-02-01 13:49  sthibaul

	* tools/fxt_print.c: we added the tid as first parameter

2006-02-01 12:02  sthibaul

	* tools/fxt.h: plus de commentaires

2005-12-23 22:48  sthibaul

	* tools/symbols.c: correction tailles des champs

2005-12-23 22:47  sthibaul

	* tools/fxt_internal.h: correction tailles champs, fixes dsormais

2005-12-23 22:47  sthibaul

	* tools/fxt.c: oubli criture du type d'archi

2005-10-18 15:34  sthibaul

	* tools/: ev.c, fkt_print.c, fxt-tools.h, fxt_print.c, names.c,
	  symbols.c: corrected printf formats

2005-10-18 15:28  sthibaul

	* tools/fxt_internal.h: besoin de pouvoir lire des adresses 64 bits
	  sur archi 32 bits

2005-10-11 16:04  sthibaul

	* AUTHORS, NEWS: required by automake-1.7

2005-09-06 16:00  sthibaul

	* tools/fkt_print.c: FUT corrections

2005-09-06 16:00  sthibaul

	* tools/ev.c: Hum, bad commit

2005-09-06 15:59  sthibaul

	* aclocal.m4: fichier gnr

2005-09-06 14:20  sthibaul

	* tools/ev.c: forgot a little break; ...

2005-09-06 14:11  sthibaul

	* tools/Makefile.am: installer fxt-tools.h aussi pour pm2

2005-07-26 15:46  sthibaul

	* .cvsignore, config.h.in: config.h.in is generated too

2005-07-26 15:45  sthibaul

	* .cvsignore: cvs ignore

2005-07-26 15:42  sthibaul

	* COPYING, INSTALL, INSTALL-autoconf, Makefile.am, README, TODO,
	  aclocal.m4, config.guess, config.h.in, config.sub, configure.in,
	  depcomp, install-sh, ltmain.sh, missing, mkinstalldirs,
	  doc/FxT.bib, doc/Makefile-doc.in, doc/Makefile.am,
	  doc/manuel.tex, doc/LaTeX.mk, doc/paje.eps, doc/pdfswitch.sty,
	  doc/remark.sty, doc/texdepends, kernel/Makefile,
	  kernel/Makefile.config, kernel/apply/fkt_patch,
	  kernel/linux-fkt/arch/i386/kernel/fkt_header.S,
	  kernel/linux-fkt/include/linux/fkt.h,
	  kernel/linux-fkt/kernel/fkt-mod.c, kernel/linux-fkt/kernel/fkt.c,
	  kernel/linux-patches-2.6.12-rc2/arch/i386/Kconfig.patch,
	  kernel/linux-patches-2.6.12-rc2/arch/i386/kernel/Makefile.patch,
	  kernel/linux-patches-2.6.12-rc2/arch/i386/kernel/entry.S.patch,
	  kernel/linux-patches-2.6.12-rc2/fs/buffer.c.patch,
	  kernel/linux-patches-2.6.12-rc2/fs/exec.c.patch,
	  kernel/linux-patches-2.6.12-rc2/fs/ioctl.c.patch,
	  kernel/linux-patches-2.6.12-rc2/fs/open.c.patch,
	  kernel/linux-patches-2.6.12-rc2/fs/read_write-sys.c.patch,
	  kernel/linux-patches-2.6.12-rc2/fs/read_write.c.patch,
	  kernel/linux-patches-2.6.12-rc2/fs/select.c.patch,
	  kernel/linux-patches-2.6.12-rc2/include/linux/buffer_head.h.patch,
	  kernel/linux-patches-2.6.12-rc2/include/linux/interrupt.h.patch,
	  kernel/linux-patches-2.6.12-rc2/include/linux/mm.h.patch,
	  kernel/linux-patches-2.6.12-rc2/include/linux/page-flags.h.patch,
	  kernel/linux-patches-2.6.12-rc2/include/linux/pagemap.h.patch,
	  kernel/linux-patches-2.6.12-rc2/kernel/Makefile.patch,
	  kernel/linux-patches-2.6.12-rc2/kernel/fork.c.patch,
	  kernel/linux-patches-2.6.12-rc2/kernel/pid.c.patch,
	  kernel/linux-patches-2.6.12-rc2/kernel/sched.c.patch,
	  kernel/linux-patches-2.6.12-rc2/kernel/signal.c.patch,
	  kernel/linux-patches-2.6.12-rc2/kernel/softirq.c.patch,
	  kernel/linux-patches-2.6.12-rc2/kernel/timer.c.patch,
	  kernel/linux-patches-2.6.12-rc2/mm/filemap.c.patch,
	  kernel/linux-patches-2.6.12-rc2/mm/page_alloc.c.patch,
	  kernel/linux-patches-2.6.12-rc2/mm/swap.c.patch,
	  kernel/unpatch/fkt_patch, tools/Makefile.am, tools/depcomp,
	  tools/ev.c, tools/fkt_bufstats, tools/fkt_code_name.h,
	  tools/fkt_extract.c, tools/fkt_print.c, tools/fkt_record.c,
	  tools/fkt_select.c, tools/fkt_setmask.c, tools/fkt_timestats,
	  tools/fkt_timestats-log, tools/fut-template.h, tools/fxt-tools.h,
	  tools/fxt.c, tools/fxt.h, tools/fxt_internal.h,
	  tools/fxt_print.c, tools/get_cpu_info.c, tools/makediff,
	  tools/names.c, tools/pids.c, tools/sigmund, tools/symbols.c,
	  tools/template2h.pl, tools/time.c, tools/timer.c, tools/timer.h,
	  tools/fxt/syscall_names.h, tools/fxt/sysirq_names.h,
	  tools/fxt/trap_names.h: Initial revision

2005-07-26 15:42  sthibaul

	* COPYING, INSTALL, INSTALL-autoconf, Makefile.am, README, TODO,
	  aclocal.m4, config.guess, config.h.in, config.sub, configure.in,
	  depcomp, install-sh, ltmain.sh, missing, mkinstalldirs,
	  doc/FxT.bib, doc/Makefile-doc.in, doc/Makefile.am,
	  doc/manuel.tex, doc/LaTeX.mk, doc/paje.eps, doc/pdfswitch.sty,
	  doc/remark.sty, doc/texdepends, kernel/Makefile,
	  kernel/Makefile.config, kernel/apply/fkt_patch,
	  kernel/linux-fkt/arch/i386/kernel/fkt_header.S,
	  kernel/linux-fkt/include/linux/fkt.h,
	  kernel/linux-fkt/kernel/fkt-mod.c, kernel/linux-fkt/kernel/fkt.c,
	  kernel/linux-patches-2.6.12-rc2/arch/i386/Kconfig.patch,
	  kernel/linux-patches-2.6.12-rc2/arch/i386/kernel/Makefile.patch,
	  kernel/linux-patches-2.6.12-rc2/arch/i386/kernel/entry.S.patch,
	  kernel/linux-patches-2.6.12-rc2/fs/buffer.c.patch,
	  kernel/linux-patches-2.6.12-rc2/fs/exec.c.patch,
	  kernel/linux-patches-2.6.12-rc2/fs/ioctl.c.patch,
	  kernel/linux-patches-2.6.12-rc2/fs/open.c.patch,
	  kernel/linux-patches-2.6.12-rc2/fs/read_write-sys.c.patch,
	  kernel/linux-patches-2.6.12-rc2/fs/read_write.c.patch,
	  kernel/linux-patches-2.6.12-rc2/fs/select.c.patch,
	  kernel/linux-patches-2.6.12-rc2/include/linux/buffer_head.h.patch,
	  kernel/linux-patches-2.6.12-rc2/include/linux/interrupt.h.patch,
	  kernel/linux-patches-2.6.12-rc2/include/linux/mm.h.patch,
	  kernel/linux-patches-2.6.12-rc2/include/linux/page-flags.h.patch,
	  kernel/linux-patches-2.6.12-rc2/include/linux/pagemap.h.patch,
	  kernel/linux-patches-2.6.12-rc2/kernel/Makefile.patch,
	  kernel/linux-patches-2.6.12-rc2/kernel/fork.c.patch,
	  kernel/linux-patches-2.6.12-rc2/kernel/pid.c.patch,
	  kernel/linux-patches-2.6.12-rc2/kernel/sched.c.patch,
	  kernel/linux-patches-2.6.12-rc2/kernel/signal.c.patch,
	  kernel/linux-patches-2.6.12-rc2/kernel/softirq.c.patch,
	  kernel/linux-patches-2.6.12-rc2/kernel/timer.c.patch,
	  kernel/linux-patches-2.6.12-rc2/mm/filemap.c.patch,
	  kernel/linux-patches-2.6.12-rc2/mm/page_alloc.c.patch,
	  kernel/linux-patches-2.6.12-rc2/mm/swap.c.patch,
	  kernel/unpatch/fkt_patch, tools/Makefile.am, tools/depcomp,
	  tools/ev.c, tools/fkt_bufstats, tools/fkt_code_name.h,
	  tools/fkt_extract.c, tools/fkt_print.c, tools/fkt_record.c,
	  tools/fkt_select.c, tools/fkt_setmask.c, tools/fkt_timestats,
	  tools/fkt_timestats-log, tools/fut-template.h, tools/fxt-tools.h,
	  tools/fxt.c, tools/fxt.h, tools/fxt_internal.h,
	  tools/fxt_print.c, tools/get_cpu_info.c, tools/makediff,
	  tools/names.c, tools/pids.c, tools/sigmund, tools/symbols.c,
	  tools/template2h.pl, tools/time.c, tools/timer.c, tools/timer.h,
	  tools/fxt/syscall_names.h, tools/fxt/sysirq_names.h,
	  tools/fxt/trap_names.h: initial import