forked from massemanet/eper
-
Notifications
You must be signed in to change notification settings - Fork 2
/
ChangeLog
3027 lines (2091 loc) · 68.2 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
commit ea2e1e8efcb70d89d80caf781a24c176732fc7cd
Author: mats cronqvist <[email protected]>
Date: Wed May 29 13:57:18 2013 +0200
minor bug fixes
src/prfTrc.erl
src/redbug.erl
commit 0a987fe3fab9aa9a2349bb5c4e8286e78cb6f8d4
Author: mats cronqvist <[email protected]>
Date: Wed May 29 09:46:10 2013 +0200
implement redbug 'print_pids' option
src/prfTrc.erl
src/redbug.erl
commit 8cf87a6088f3a6e779075777578191556c551850
Author: mats cronqvist <[email protected]>
Date: Tue May 7 13:40:52 2013 +0200
whitespace
src/dtopConsumer.erl
src/gen_serv.hrl
src/prfPrc.erl
src/redbug.erl
src/replay_trc.erl
src/sherk.erl
src/sherk_aquire.erl
commit fb9a1ba1a40b19d3c2452c565f517e5010f732c5
Author: mats cronqvist <[email protected]>
Date: Fri May 3 15:47:05 2013 +0200
remove getopt
src/getopt.erl
commit 7122cd5b0b8c047b9f22c5f2c020488b5bc30aaf
Author: mats cronqvist <[email protected]>
Date: Tue Apr 30 17:14:23 2013 +0200
doc
Makefile
commit a83963d9e52167e52d2337bade714c2a9e7e99f4
Author: mats cronqvist <[email protected]>
Date: Tue Apr 30 17:07:33 2013 +0200
trying to figure out how to generate a ChangeLog file
ChangeLog
Makefile
commit a78758bba07b111bcdc1a2984fc2d36145f070da
Author: mats cronqvist <[email protected]>
Date: Tue Apr 30 15:23:27 2013 +0200
added meta target
ChangeLog
Makefile
commit a848417b5d8e7e97833a6b0a4636dfe3295c03cc
Author: mats cronqvist <[email protected]>
Date: Tue Apr 30 15:19:47 2013 +0200
changed date in license
COPYING
commit 9ed38a02f2167917ad2a733252960d2d00d3d475
Author: mats cronqvist <[email protected]>
Date: Tue Apr 30 15:18:45 2013 +0200
bumped version to 0.69
configure.ac
src/eper.app.src
commit a805b241adad35b55ffcfa5e6241a530b1c98c4d
Author: mats cronqvist <[email protected]>
Date: Mon Apr 29 13:57:35 2013 +0200
handle disk_log:pid2name/1
ChangeLog
src/prfPrc.erl
commit 9c7be6201e74b35c62b8388123e5524f646d133d
Author: mats cronqvist <[email protected]>
Date: Sat Jan 19 22:28:15 2013 +0100
using the 'blocking' option borked syntax error reporting
ChangeLog
src/redbug.erl
commit ab65492912ba96eef781bc823d48569699622c69
Author: mats cronqvist <[email protected]>
Date: Fri Jan 18 15:41:33 2013 +0100
implement the blocking option
AUTHORS
ChangeLog
INSTALL
Makefile
priv/bin/redbug
src/prfTrc.erl
src/redbug.erl
src/redbug_msc.erl
commit d8cf28f98edf26da2e1a9db039503779d8f0bcab
Author: mats cronqvist <[email protected]>
Date: Sun Dec 9 12:32:35 2012 +0100
vsn 0.62
configure.ac
src/eper.app.src
commit a7546c2f243f6aadbd250ee051439118da1d0d16
Author: mats cronqvist <[email protected]>
Date: Sun Dec 9 12:31:34 2012 +0100
check matches
src/prfTarg.erl
src/prfTrc.erl
src/redbug.erl
commit 255c577829e8d57214ab86d1dca9ce61cb5d4aa1
Author: mats cronqvist <[email protected]>
Date: Fri Dec 7 12:33:59 2012 +0100
multiple procs
configure.ac
src/eper.app.src
src/prfTrc.erl
src/redbug.erl
commit 00ee08c3419cd520789ee4909c92a041898c3fac
Author: mats cronqvist <[email protected]>
Date: Thu Dec 6 13:50:40 2012 +0100
handle compressed files
src/bread.erl
src/replay_trc.erl
commit 4532528ddb38637938c10f9dfcb2b4375b6db8a6
Author: mats cronqvist <[email protected]>
Date: Sun Aug 19 19:50:46 2012 +0200
cosmetic
src/redbug_msc.erl
commit 44137d30d4eb1048563bd8ed38eecd49a98d991c
Author: mats cronqvist <[email protected]>
Date: Sun Aug 19 15:18:54 2012 +0200
handle disjunct guards
I.e. multiple guards separated by ';'. Now handled by substituting ';' with
'orelse'.
src/redbug_msc.erl
commit 4e66bd80ff2b1edfb9fbecb19d17c3b23bb6d28b
Author: mats cronqvist <[email protected]>
Date: Sun Aug 19 14:52:15 2012 +0200
more testcases
src/redbug_msc.erl
commit 117ccff249064efd1c1551713027a568b629cec3
Author: Dmitry Russ <[email protected]>
Date: Fri Aug 17 13:04:39 2012 +0200
fix problem with complex guards, such as:
"lists:seq(A, B) when (A == 1) or (A == 3) or (B == 5)"
src/redbug_msc.erl
commit 79e17ad3345177822ee877961a595880f7a29b5e
Author: mats cronqvist <[email protected]>
Date: Fri Aug 3 14:30:11 2012 +0200
more info messages
priv/bin/sherk
src/sherk.erl
src/sherk_aquire.erl
commit 662c49fa51e97428e257a074b06c81ef0f030e5a
Author: mats cronqvist <[email protected]>
Date: Tue Jul 31 17:49:09 2012 +0200
sherk start script
priv/bin/sherk
commit e44b0bc794fd3b15db5fe640c67c0790287e27e1
Author: mats cronqvist <[email protected]>
Date: Tue Jul 31 16:55:51 2012 +0200
wrong permission
priv/bin/sherk
commit 520a77bcc29b4c557b52882258a6091ba13b5e76
Author: mats cronqvist <[email protected]>
Date: Mon Jul 16 11:21:19 2012 +0200
allow "," as action separator
src/redbug_msc.erl
commit 2d9c1886e8a51e153c246cfa3ff1d9159f3e0bf6
Author: mats cronqvist <[email protected]>
Date: Mon Jul 16 11:06:41 2012 +0200
support 'global' tracing (i.e. exported functions only) with "mod:X" syntax
src/redbug_msc.erl
commit b0a27ab40270802daa51e13caf9a7b25d56e09fd
Author: mats cronqvist <[email protected]>
Date: Sun Jul 15 17:02:27 2012 +0200
nested bifs in guards broken
src/redbug_msc.erl
commit cf40a7f726950cb6c41223d494b428de825cb4a5
Author: mats cronqvist <[email protected]>
Date: Sun Jul 15 17:00:53 2012 +0200
missing 'debug' flag
src/redbug.erl
commit 82b2863e85a908c9e6bc5068b43030ad91a96c8c
Author: mats cronqvist <[email protected]>
Date: Sun Jul 15 12:15:54 2012 +0200
whitespace
src/redbug_msc.erl
commit 90daf708e7508ab780d17d36b1342a96f89f2b55
Author: mats cronqvist <[email protected]>
Date: Sun Jul 15 12:12:53 2012 +0200
compiling guard expressions much too simpleminded
src/redbug_msc.erl
commit 8d7a3dc873a9d550a874be3b0572165ba22f5b0e
Author: mats cronqvist <[email protected]>
Date: Sun Jul 15 12:11:18 2012 +0200
more tests
src/redbug_msc.erl
commit 18be98a0275862c1010236ea6ab81a4db6d1d056
Author: mats cronqvist <[email protected]>
Date: Wed Jul 4 19:46:28 2012 +0200
dtop_replay can write lines of text inta a table as well as to an fd
src/dtopConsumer.erl
src/dtop_replay.erl
src/replay_trc.erl
commit 16bae3225d29aaa78c820a64cc174ea74eaf9420
Author: mats cronqvist <[email protected]>
Date: Thu Jun 21 15:20:42 2012 +0200
workaround kernel /proc/self bug
src/dtopConsumer.erl
commit 29edce5290950cc842ea127aaee0015a0c78069d
Author: mats cronqvist <[email protected]>
Date: Fri Jun 15 15:41:53 2012 +0000
dtop_replay did not support options 'time', 'delta_time', 'start_time' and
'stop_time'.
src/dtop_replay.erl
src/replay_trc.erl
commit dae528e62456d74e532f16746e1971fd4cc84222
Author: mats cronqvist <[email protected]>
Date: Thu Jun 7 12:00:31 2012 +0000
started getting "exported from case" warnings
src/prfSys.erl
commit cc003844df2a776ea1ead7d94f3302a7743893ff
Author: mats cronqvist <[email protected]>
Date: Fri Jun 1 14:43:13 2012 +0200
redbug:start proplist not handled as a proplist
src/redbug.erl
commit ff23ccdeef51f533683e583f66e160e67487ded3
Author: mats cronqvist <[email protected]>
Date: Wed May 30 19:00:02 2012 +0200
print code bug
src/redbug.erl
commit 29b5ac082a1d075d5187267dabc87905bbd97f28
Author: mats cronqvist <[email protected]>
Date: Tue May 1 17:06:25 2012 +0200
refactored printing. seems to work.
fixed the print_calls option.
new option; print_fun.
usage example:
F = fun({Tag,Data,PI,TS})->io:fwrite("~p~n~p~n~p~n~p~n",[Tag,Data,PI,TS])end.
redbug:start("erlang:'++'",[{print_fun,F}]).
src/redbug.erl
commit 455c99b0672799b9f07a70678b9e84da0bb68e51
Author: mats cronqvist <[email protected]>
Date: Mon Apr 30 18:26:29 2012 +0200
cosmetic
src/redbug.erl
commit 6f262b25142c24680ef85e43ed8038e148a3db22
Author: vagrant <[email protected]>
Date: Fri Apr 27 17:46:55 2012 +0000
mixed up 'true and 'false'
src/redbug.erl
commit 78ff42a69dfd4f6e17f447ebaa32b7fb952cc9fe
Author: vagrant <[email protected]>
Date: Fri Apr 27 17:39:02 2012 +0000
messed up the args to io:fwrite...
src/redbug.erl
commit e58009fc272d5c6356b4c5824498d5c00b24cb32
Author: vagrant <[email protected]>
Date: Fri Apr 27 17:31:16 2012 +0000
refactored printing some more. still untested.
src/redbug.erl
commit aa66ff69faf101cb249038381b23e43459cfe0a5
Author: vagrant <[email protected]>
Date: Fri Apr 27 17:14:53 2012 +0000
refactoring printing code. untested, possibly broken
src/redbug.erl
commit 445512f1d4d65ea5981540c08bd12156c967a383
Author: vagrant <[email protected]>
Date: Fri Apr 27 14:36:45 2012 +0000
cosmetic
src/redbug.erl
commit 3a2140418cfc18aaafe48ea9c32c8894de1340bd
Author: Erik Søe Sørensen <[email protected]>
Date: Wed Oct 5 17:34:10 2011 +0200
Bugfix: sherk_ets:f2t/3 was not tail recursive because of an exception handler.
src/sherk_ets.erl
commit fa82b02fd9147ec087c5764d882544f1c31fd370
Author: mats cronqvist <[email protected]>
Date: Mon Sep 12 16:39:27 2011 +0200
don't tag the process_info tuple twice, correctly
src/prfPrc.erl
commit 49d2a6b39660af8dd13a9a64fc824de121ed1661
Author: mats cronqvist <[email protected]>
Date: Mon Sep 12 12:09:38 2011 +0200
don't tag the process_info tuple twice
src/prfPrc.erl
commit 81a51c4cc99446af8996ae88ebff8344b410ed9a
Author: Thomas Järvstrand <[email protected]>
Date: Thu Sep 1 18:14:51 2011 +0200
If subscriber key already exists, replace it with {Key, Sub} and not just Sub
src/watchdog.erl
commit 2b662e50e7899519a8b3e6a690bdbce9696134ec
Author: Thomas Järvstrand <[email protected]>
Date: Thu Sep 1 17:55:29 2011 +0200
Don't replace all subscribers with 'ok' just because adding a new one fails
src/watchdog.erl
commit 6fd0521f8f5569bd643e4c518f909555724eda37
Author: mats cronqvist <[email protected]>
Date: Fri Aug 26 11:40:43 2011 +0200
don't set timer when timeout_release=0
src/watchdog.erl
commit 2be9001ec79889ce0595794efd3cdc5e176439ba
Author: mats cronqvist <[email protected]>
Date: Fri Aug 26 11:39:40 2011 +0200
handle wildcard module pattern (like a:_(a) )
src/redbug_msc.erl
commit cada5db2563dcd2467cd897a3145c88b04f4b7ec
Author: mats cronqvist <[email protected]>
Date: Fri Aug 26 11:38:10 2011 +0200
handle missing info more gracefully in prfPrc
src/prfPrc.erl
commit ba175281f00a56c6b4a3a832a54f293c3f82f05b
Author: mats cronqvist <[email protected]>
Date: Mon Jul 11 16:55:28 2011 +0200
changed constants to configs
src/watchdog.erl
commit ff8177094f450b66ca9b5dc0e64376d092638494
Author: Tim Watson <[email protected]>
Date: Wed May 11 16:49:32 2011 +0100
Relax check on consumers to support parameterised modules.
src/prfHost.erl
commit 0f7266a0f2e580396c2aec6957bb537b0a25d908
Author: mats cronqvist <[email protected]>
Date: Wed May 4 22:58:56 2011 +0200
Merge branch 'master', remote branch 'argv0/patch-1'
commit 9526590940f3d4bcad617254b20e97a1f547356c
Author: Andy Gross <[email protected]>
Date: Wed May 4 10:21:21 2011 -0700
Fix typo ("underfined" -> undefined)
src/prfTarg.erl
commit 30f8f2bba1a3f76a040357ca613642c8267a99d7
Author: mats cronqvist <[email protected]>
Date: Fri Apr 8 19:50:10 2011 +0200
supported wildcard function name; "mod:_(arg)"
src/redbug_msc.erl
commit 5085bb3576e0055acf61cba8a4be8d7621d73766
Author: mats cronqvist <[email protected]>
Date: Fri Apr 8 19:48:37 2011 +0200
debug_info
rebar.config
commit 31992502d9d0e934f5aec61f32b67ad4b23e04ec
Author: mats cronqvist <[email protected]>
Date: Thu Mar 10 15:53:46 2011 +0100
whitespace
priv/bin/dtop
priv/bin/gperf
priv/bin/ntop
priv/bin/redbug
priv/bin/sherk
src/redbug.erl
commit ddd81e057ec1736f3c66f83adc59b9c2b6b03621
Author: mats cronqvist <[email protected]>
Date: Mon Mar 7 14:21:32 2011 +0100
handled "string"++Var syntax sugar
src/redbug_msc.erl
commit aaaafd826d12148179205642e65397d31e6b5dc7
Author: mats cronqvist <[email protected]>
Date: Mon Mar 7 09:11:50 2011 +0100
char == integer
src/redbug_msc.erl
commit a4edab1371260908e55926e08dfac5b8f40c6287
Author: mats cronqvist <[email protected]>
Date: Wed Mar 2 18:32:30 2011 +0100
fixed matching on list tail and non-proper list handling
src/redbug_msc.erl
commit 5db92004ae32adfe61b70b73d22d81516e83817d
Author: mats cronqvist <[email protected]>
Date: Wed Mar 2 18:03:08 2011 +0100
teeny refactor
src/redbug_msc.erl
commit 7a53a57ecb06f22b2c3bd9f0b7fc0514843beb52
Author: mats cronqvist <[email protected]>
Date: Wed Mar 2 17:11:04 2011 +0100
refactored list in arglist handling
src/redbug_msc.erl
commit 989c739f1d69a1ec2760f9b0966dde1ff8ad0d0b
Author: Anthony Ramine <[email protected]>
Date: Sat Feb 5 00:00:29 2011 +0100
Handle symlinks in the wrapper scripts
priv/bin/dtop
priv/bin/gperf
priv/bin/ntop
priv/bin/redbug
priv/bin/sherk
commit ccd717e8a35620ad834347eed945875d84ca712d
Author: Anthony Ramine <[email protected]>
Date: Fri Feb 4 23:58:40 2011 +0100
Fix redbug's script app path logic
A `dirname` call was missing, making erl be called with `-pa ./priv/ebin`
instead of `-pa ./ebin`.
priv/bin/redbug
commit 4053d9c2debbd6f50a7c50f9ab676e746fd94936
Author: mats cronqvist <[email protected]>
Date: Tue Jan 11 19:15:59 2011 +0100
removed tabs and trailing spaces
src/bread.erl
src/bread_server.erl
src/dtopConsumer.erl
src/dtop_replay.erl
src/gen_serv.erl
src/getopt.erl
src/gperfConsumer.erl
src/gperfGtk.erl
src/logReader.erl
src/loggerConsumer.erl
src/ntopConsumer.erl
src/prf.erl
src/prfConsumer.erl
src/prfDog.erl
src/prfHost.erl
src/prfNet.erl
src/prfPrc.erl
src/prfSys.erl
src/prfTarg.erl
src/prfTrc.erl
src/redbug.erl
src/redbugConsumer.erl
src/redbug_msc.erl
src/replay_trc.erl
src/sherk.erl
src/sherk_aquire.erl
src/sherk_ets.erl
src/sherk_list.erl
src/sherk_prof.erl
src/sherk_scan.erl
src/sherk_tab.erl
src/sherk_target.erl
src/sherk_tree.erl
src/watchdog.erl
src/watchdogLogger.erl
commit 8766db8eca133ebe7ae0a9de47451ac0b7b058c1
Author: mats cronqvist <[email protected]>
Date: Tue Jan 11 19:15:12 2011 +0100
fixed prf:human bug
src/prf.erl
commit 145d5529f059ab9e8758c4da3fcaa952b5a8903e
Author: mats cronqvist <[email protected]>
Date: Tue Jan 4 15:07:07 2011 +0100
config for extra pid info
src/prfPrc.erl
commit e275e89311042f2d914079326cb5c79b1b3f3798
Author: mats cronqvist <[email protected]>
Date: Tue Jan 4 14:19:58 2011 +0100
add callback for user-specified pid info
src/prfPrc.erl
commit 5a35bfa061de4d3351805965bbe2fc50e5f0ddae
Author: mats cronqvist <[email protected]>
Date: Mon Jan 3 11:43:41 2011 +0100
cosmetic
src/dtopConsumer.erl
src/prf.erl
src/prfHost.erl
commit a72174b39333183a123cbca0b83b9bdf41893e9d
Author: mats cronqvist <[email protected]>
Date: Thu Dec 30 14:24:22 2010 +0100
refactored for more configurability
src/prfPrc.erl
src/prfTarg.erl
src/watchdog.erl
commit dbb37c7186ebb3a12fed934c42b472bf19b7776c
Author: Scott Lystig Fritchie <[email protected]>
Date: Tue Dec 14 19:49:41 2010 -0600
Put print_msec in proper-ish alphabetical order
src/redbug.erl
commit 5945ac4dd0b2e7f8c8efc91615d844d161fc6b79
Author: Scott Lystig Fritchie <[email protected]>
Date: Tue Dec 14 19:27:52 2010 -0600
Add 'print_msec' to add milliseconds to formatted timestamps
src/redbug.erl
commit ff566b2d8aa1018e96ca84c630232fd68d93406a
Author: Scott Lystig Fritchie <[email protected]>
Date: Tue Dec 14 19:05:10 2010 -0600
Add 'print_p' to use ~P for formatting possibly-big terms and limit their output size
src/redbug.erl
commit 5ca83643ba488a9ba357357c22dd80a94f8e8f87
Author: mats cronqvist <[email protected]>
Date: Sun Nov 7 12:51:41 2010 +0100
sane sanity checking of node name
src/dtop_replay.erl
commit 2fccb06ccfe2e1a332ab75aa102a38bce8cc8f3d
Author: mats cronqvist <[email protected]>
Date: Sun Nov 7 10:56:37 2010 +0100
sanity check node name
src/dtop_replay.erl
commit 93bf4862c5e6321024f37935e5b284aaeabc5d53
Author: mats cronqvist <[email protected]>
Date: Thu Oct 28 16:16:10 2010 +0200
fixed compiler warnings
configure.ac
src/dtopConsumer.erl
src/gperfConsumer.erl
src/logReader.erl
src/redbug.erl
commit 7c96364f0ca4713fd26bf5cee9d87fbf3fa38205
Author: mats cronqvist <[email protected]>
Date: Mon Oct 25 14:37:16 2010 +0200
bumped vsn to 0.60
configure.ac
commit 3ec7fab16372293a4ef97c194f16505d23a69ff8
Author: mats cronqvist <[email protected]>
Date: Mon Oct 25 14:35:43 2010 +0200
cosmetic
src/eper.erl
src/logReader.erl
commit f29f8ff73fa3e05b15bcc39ae1dd30ad7e19177a
Author: mats cronqvist <[email protected]>
Date: Mon Oct 25 14:07:11 2010 +0200
more rebarification
.gitignore
Makefile
commit 50199db2c78aea3563a58d5c9475144fa4b131c6
Author: mats cronqvist <[email protected]>
Date: Mon Oct 25 14:02:16 2010 +0200
rebar+autotools
Makefile.am
configure.ac
priv/bin/Makefile.am
commit dd2581b842432c3e7bfc2a7cde3678b3f58ea628
Author: Dave Smith <[email protected]>
Date: Tue Oct 19 14:23:20 2010 -0600
Add updated rebar; have eper script output to priv/
rebar
rebar.config
commit da98faabfc66cbd0fe57b36fbdc844cc3fe0a4c2
Author: Dave Smith <[email protected]>
Date: Tue Oct 19 14:06:52 2010 -0600
Bumping to 0.60
src/eper.app.src
commit 493af0474452f42d33183097f65e27e53b0a5271
Author: Dave Smith <[email protected]>
Date: Tue Oct 19 14:05:00 2010 -0600
Remove usage of deprecated regexp module
src/dtopConsumer.erl
commit 1eaf3419e0745c8e4abc01a5dbbbbae5ecb6eafa
Author: Dave Smith <[email protected]>
Date: Mon Oct 18 15:42:00 2010 -0600
Convert unknown port to a string instead of crashing
src/ntopConsumer.erl
commit 3ec18aaca54553b96e66fa706e025d26053c5a45
Author: Dave Smith <[email protected]>
Date: Mon Oct 18 15:29:37 2010 -0600
Connect as a hidden node
src/eper.erl
commit 31360fc571a1b96bcdf38311bb223416f24f5de0
Author: Dave Smith <[email protected]>
Date: Mon Oct 18 14:38:12 2010 -0600
Adding getopt and eper modules to enable escript functionality
src/eper.erl
src/getopt.erl
commit 7c8d9acf552250f3628e4a42a0d020e9c1838fd0
Author: Dave Smith <[email protected]>
Date: Mon Oct 18 14:37:46 2010 -0600
Consistently return a PID from prfHost:start
src/prfHost.erl
commit 418c2f89384b5a0f41bca6c8c50fa442cd62391d
Author: Dave Smith <[email protected]>
Date: Sat Oct 16 13:30:01 2010 -0600
Moving bin scripts to priv/bin
bin/Makefile.am
bin/dtop
bin/gperf
bin/ntop
bin/redbug
bin/sherk
priv/bin/dtop
priv/bin/gperf
priv/bin/ntop
priv/bin/redbug
priv/bin/sherk
commit 7abcd3e489c4061cb20a7d770f92304e5d0da898
Author: Dave Smith <[email protected]>
Date: Sat Oct 16 12:59:36 2010 -0600
beam_kernel may not be returned on some platforms; treat it as an optional value. Add better error reporting out of lks/2
src/dtopConsumer.erl
commit 21fe0c8ad3811f130149b9b86db1e0a53cf21010
Author: Dave Smith <[email protected]>
Date: Sat Oct 16 07:46:07 2010 -0600
Add rebar and a .app.src file
rebar
src/eper.app.src
commit 51c3bd49941e8e7a95abf5ba67e13eadd0b4ee2b
Author: mats cronqvist <[email protected]>
Date: Wed Sep 22 17:10:23 2010 +0200
cleaned up proplists from prf
src/watchdog.erl
commit 417bd81c2c721d8970e76b955a2cfff02166757f
Author: mats cronqvist <[email protected]>
Date: Tue Sep 21 14:36:08 2010 +0200
allow lists in arg list
src/redbug_msc.erl
commit 9ed170c1dc583f153927c2989c539cd6c820ca05
Author: mats cronqvist <[email protected]>
Date: Mon Sep 20 17:43:06 2010 +0200
testcase
src/redbug_msc.erl
commit 27087af02a16d237757b04eb1f05740b8ed47d9c
Author: mats cronqvist <[email protected]>
Date: Mon Sep 20 17:29:52 2010 +0200
cosmetic
src/replay_trc.erl
commit 548b0302619b2175fc880627c027f099ce4570cf
Author: mats cronqvist <[email protected]>
Date: Mon Sep 20 17:29:01 2010 +0200
smallish bugs
src/prf.erl
src/replay_trc.erl
commit 9ec28a9c6697f144650882d3438d7fc65eb58b25
Author: mats cronqvist <[email protected]>
Date: Mon Sep 20 17:15:17 2010 +0200
handle matching of tuples in arglist
src/redbug_msc.erl
commit 14b315a21d5f55d4a6e1067fb226438b9b6a24c6
Author: mats cronqvist <[email protected]>
Date: Thu Aug 26 09:54:19 2010 +0200
fixed erroneous handling of non-proper lists in args to traced function
src/prfTrc.erl
commit ad4293b7be5c559d69e8edbd1051047f6cf82c4f
Author: mats cronqvist <[email protected]>
Date: Thu Jul 1 13:04:17 2010 +0200
garbage collect prfTarg proc
src/prfTarg.erl
commit efb9fc8738ffa1bcfe01200901fe040b4b00cd2d
Author: mats cronqvist <[email protected]>
Date: Thu Jul 1 13:03:35 2010 +0200
better proc info in sysMon event
src/prfPrc.erl
src/watchdog.erl
commit a82eaeb6bf382e35dbe777459c66b38595498369
Author: mats cronqvist <[email protected]>
Date: Thu Jul 1 13:02:07 2010 +0200
created prf:human/1
src/dtopConsumer.erl
src/prf.erl
commit 49f44fd6b808db7b578147f3000d4e185955f3a2
Author: mats cronqvist <[email protected]>
Date: Wed Jun 30 14:55:05 2010 +0200
refactored out trc file replaying to replay_trc.erl
.gitignore
src/Makefile.am
src/dtop_replay.erl
src/replay_trc.erl
commit c750afcfbb6eb61bd01a342030613368b70d9440
Author: mats cronqvist <[email protected]>
Date: Wed Jun 30 14:54:24 2010 +0200
formatting
src/dtopConsumer.erl
commit 389441e354c84554c86d2d9e85c2599a9e0230fd
Author: mats cronqvist <[email protected]>
Date: Mon Jun 28 17:15:42 2010 +0200
made dtop output more human readable
src/dtopConsumer.erl
commit 42df3db049e270d53cfb35347d01434d07124294
Author: mats cronqvist <[email protected]>
Date: Mon Jun 28 17:14:48 2010 +0200
broke out dtop replay function to dtop_replaye.rl
.gitignore
src/Makefile.am
src/dtop.erl
src/dtop_replay.erl
commit d9c26313cb5b1bb312227d4b0c9f23dcdb624c74
Author: mats cronqvist <[email protected]>
Date: Wed Jun 16 16:48:37 2010 +0200
make dtop file from trc file
src/dtop.erl
src/dtopConsumer.erl
commit 6422995c6cb66a1e52c6dd71c75d938844000a64
Author: mats cronqvist <[email protected]>
Date: Wed Jun 16 16:47:04 2010 +0200
cosmetic
src/bread.erl
commit 0fdaeb6abbf1af5ff3aae92a5d67199543554e6b
Author: mats cronqvist <[email protected]>
Date: Thu Apr 29 16:16:54 2010 +0200
redbug doc
src/redbug.erl
commit f1f77f116c0f85ace5fde8bbddccf67aff9daf45
Author: mats cronqvist <[email protected]>
Date: Thu Apr 22 16:13:05 2010 +0200
smarter search for glade file
src/sherk.erl
commit 4b2a4b5895c45614dba14c55b6ce7663233b16de
Author: mats cronqvist <[email protected]>
Date: Mon Apr 19 10:07:13 2010 +0200
whitespace bugs in regexps
src/redbug_msc.erl
commit e8eaa3cd0386101611536cba47f08d90c44937d4