-
Notifications
You must be signed in to change notification settings - Fork 128
/
ChangeLog
4740 lines (3228 loc) · 106 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 cec9e4d29e7a8ee0e9c9bd4b651cfff013affe66
Author: mats cronqvist <[email protected]>
Date: Fri Jul 6 15:31:34 2018 +0200
v0.99.1
src/eper.app.src
commit 987d81ba53d833971c339bbaf1affb40cf22ebd9
Author: mats cronqvist <[email protected]>
Date: Fri Jul 6 15:31:15 2018 +0200
metadata
rebar.config
src/eper.app.src
commit f9ff7d32a2e437f5d14b697fd88922470fe16840
Author: mats cronqvist <[email protected]>
Date: Fri Jul 6 14:57:14 2018 +0200
v0.99.0
AUTHORS
ChangeLog
src/eper.app.src
commit 054f2cde5fe225430be42d718df7f5ee5ba7fcec
Author: mats cronqvist <[email protected]>
Date: Fri Jul 6 10:58:20 2018 +0200
fix for OTP16
.gitignore
rebar.config.script
src/try_with_stack.hrl
commit cf112a0f63b2132c786f56ac53050796025e5f8e
Author: mats cronqvist <[email protected]>
Date: Thu Jul 5 14:49:04 2018 +0200
erlang21
.travis.yml
rebar.config.script
src/gen_serv.erl
src/gen_serv.hrl
src/log.hrl
src/redbug.erl
src/redbug_msc.erl
src/try_with_stack.hrl
commit a4e6797827e4507b85a1f034a8e1f627a6a535ef
Author: mats cronqvist <[email protected]>
Date: Sat May 26 16:11:30 2018 +0200
announce parking of the project
README.md
commit 03d4be3ce7dd75ae332fc21ba7d5c18678affc5b
Author: Hans Svensson <[email protected]>
Date: Mon May 21 08:34:50 2018 +0200
process might die between pid_info and pidinfo
src/prfPrc.erl
commit 6c854cdcd009db56fb17ac4c70d0a34c2e04f311
Author: getong <[email protected]>
Date: Sat Apr 21 14:45:25 2018 +0800
update rebar3 version to 3.5.0
rebar3
commit 8613965900ccf7ed1a895d5453409a4bcb299562
Author: getong <[email protected]>
Date: Tue Aug 29 14:50:20 2017 +0800
add erlang 19, 20 for test
.travis.yml
commit f23776f716aaa8e8746ea4195a11df3605d6a885
Author: mats cronqvist <[email protected]>
Date: Thu Apr 13 21:05:43 2017 +0200
v0.98.0
ChangeLog
src/eper.app.src
commit 2d5744cf0f269b3e79047afc3d38114e3d890c9a
Author: mats cronqvist <[email protected]>
Date: Thu Apr 13 21:04:39 2017 +0200
rebar3
.gitignore
.travis.yml
Makefile
rebar
rebar3
src/eper.app.src
src/redbug_eunit.erl
commit 805a58728a3258e78de7ae732397ffc74c91423c
Author: mats cronqvist <[email protected]>
Date: Tue Oct 18 13:11:46 2016 +0200
v0.97.6
ChangeLog
src/eper.app.src
commit e3e8c505c394a8931b70a3c3174492975ce6388e
Author: mats cronqvist <[email protected]>
Date: Tue Oct 18 13:11:06 2016 +0200
generalize option 'print_file' to handle 'user'
src/redbug.erl
commit f3cd90a084db51cd6d022ad619a213fb6341e3ea
Author: mats cronqvist <[email protected]>
Date: Tue Aug 23 11:21:22 2016 +0200
v0.97.5
ChangeLog
src/eper.app.src
commit dc3832da4302a95ecf21f82b6e8b7a2e59e67a16
Author: mats cronqvist <[email protected]>
Date: Tue Aug 23 11:17:06 2016 +0200
fix start/stop in mtop
src/mtop.erl
commit e9a2f3b9b9a1f3b4dc820ac1bea536ea9fa5130a
Author: mats cronqvist <[email protected]>
Date: Tue Aug 23 10:29:41 2016 +0200
add (primitive) mnesia top tool mtop
src/mtop.erl
src/prfMnesia.erl
commit cb77c7c30c4cc644cab949ea4ae134c6c28ba906
Author: mats cronqvist <[email protected]>
Date: Wed Jul 20 11:36:39 2016 +0200
v0.97.4
ChangeLog
src/eper.app.src
commit 776427de044d6752c091e639e3c929e0ae2e3f4d
Author: mats cronqvist <[email protected]>
Date: Wed Jul 20 11:01:58 2016 +0200
fixx bug in test
src/prfDog.erl
commit 79491844649ce33b6ee2285347b1a4ba605b1caf
Author: mats cronqvist <[email protected]>
Date: Thu Apr 14 19:36:22 2016 +0200
fix buggy prfDog:config
src/prfDog.erl
commit 4ef899d898df3e80e690cd15d38cf3a2f5eec931
Author: mats cronqvist <[email protected]>
Date: Thu Apr 14 13:53:03 2016 +0200
fix watchdog/prfDog connection over tcp
src/prfDog.erl
commit be051323575e7ca927ba36489d54d727ab0da6a4
Author: mats cronqvist <[email protected]>
Date: Thu Apr 14 10:08:58 2016 +0200
docs
doc/watchdog.txt
commit f7a1b4504f5eefc61fb9da7101fdaccc687021cd
Author: mats cronqvist <[email protected]>
Date: Fri Mar 4 08:51:40 2016 +0100
v0.97.3
ChangeLog
src/eper.app.src
commit 528ada7fe4f2b68b39a00a3d15a12c5905b8b76f
Author: Dániel Szoboszlay <[email protected]>
Date: Thu Mar 3 14:32:57 2016 +0100
Dialyze beams instead of sources
The source analysis doesn't play nice with conditional compilation
(e.g. the USE_NOW macro), because dialyzer would need to know about
the compile options used by rebar. Otherwise it may produce false
positive warnings, as it can check code intended for a different OTP
version.
Analysing the compiled beams solves this problem.
Makefile
commit caf8d9a3475d2bfe9088f609fdc1044d6c661cc4
Author: Dániel Szoboszlay <[email protected]>
Date: Tue Mar 1 16:55:26 2016 +0100
Build sysMon reports asynchronously
src/watchdog.erl
commit 337e7aece9fce01998a8aef7f143279dfe048000
Author: Dániel Szoboszlay <[email protected]>
Date: Tue Mar 1 16:30:17 2016 +0100
Send user data to watchdog asynchronously
src/watchdog.erl
commit b3ead6c210668dbb018feae6dea56b8b9018f3e3
Author: Dániel Szoboszlay <[email protected]>
Date: Tue Mar 1 16:26:41 2016 +0100
Preserve log type on reset
src/watchdog.erl
commit 3c4b13c77976d29c75d46d80090a08b26618bc9d
Author: mats cronqvist <[email protected]>
Date: Wed Mar 2 08:29:00 2016 +0100
v0.97.2
ChangeLog
src/eper.app.src
commit 139a3378e91184a2f90e6031e565e0e8c1773b16
Author: mats cronqvist <[email protected]>
Date: Sat Feb 27 16:05:06 2016 +0100
fix dialyzer warning
port_command/2 -> true, while port_command/3 -> boolean()...
except for that, port_command(X,Y) == port_command(X,Y,[]).
src/prfSys.erl
commit 52d9f79f6cf41094469a96194794d678c73b18be
Author: mats cronqvist <[email protected]>
Date: Sat Feb 27 15:49:04 2016 +0100
fix typo (vss -> vsz)
src/dtopConsumer.erl
src/prfSys.erl
commit ae1a2fe0a9aae872f2d27f4b0b479deab108cb4a
Author: mats cronqvist <[email protected]>
Date: Sat Feb 27 13:33:24 2016 +0100
darwin support
src/prfSys.erl
commit de68954175739818201945de1aae8eba9b77bb5a
Author: mats cronqvist <[email protected]>
Date: Thu Feb 25 20:29:08 2016 +0100
re-did rebar.config.script to look nicer
rebar.config.script
commit a74a5da7c9d41ea50a8f7f7c94d5526c5257b52d
Author: mats cronqvist <[email protected]>
Date: Thu Feb 25 19:53:53 2016 +0100
redo hiding of deprecated funcs in prf_crypto
rebar.config.script
src/prf_crypto.erl
commit cd19b8619ca0ca91b3ef5e408fdf969f074e54af
Author: mats cronqvist <[email protected]>
Date: Thu Feb 25 19:06:50 2016 +0100
change rebar hiding of erlang:now
rebar.config.script
src/prfTime.erl
commit 1742031e12fb9e6eac0ffacfc593d5a7849fc07f
Author: mats cronqvist <[email protected]>
Date: Thu Dec 24 21:04:34 2015 +0100
v0.97.1
ChangeLog
src/eper.app.src
commit e0cae6beba6a3bd89d1555ec9f89825e92c6ccfe
Author: mats cronqvist <[email protected]>
Date: Thu Dec 24 21:03:39 2015 +0100
doc
doc/redbug.txt
commit c43c4efa58442520a665f1c4d39e5689afd530fd
Author: mats cronqvist <[email protected]>
Date: Thu Dec 24 17:42:57 2015 +0100
v0.97.0
ChangeLog
src/eper.app.src
commit 44e64027f857c55ee0805dce182168165f029eaa
Author: mats cronqvist <[email protected]>
Date: Thu Dec 24 14:39:33 2015 +0100
traced process check takes "new" into account
src/prfTrc.erl
commit b87691923f3bf4b062fe1f8aedcd142ce05e8186
Author: mats cronqvist <[email protected]>
Date: Thu Dec 24 14:28:29 2015 +0100
handle all 3 PidSpecs in trace/3
src/prfTrc.erl
commit acb7e2922bcfd80befffe574332efa064a9b5698
Author: mats cronqvist <[email protected]>
Date: Wed Nov 25 09:51:04 2015 +0100
v0.96.4
ChangeLog
src/eper.app.src
commit 0966b82545cb708a62d190a22a03da8ff7d951b2
Author: mats cronqvist <[email protected]>
Date: Thu Nov 19 11:38:02 2015 +0100
use process_info/2 with list of tags
src/prfPrc.erl
commit 43e0442863df9f713a5c88c9b43062b806d96adb
Author: mats cronqvist <[email protected]>
Date: Thu Oct 22 19:31:36 2015 +0200
v0.96.3
ChangeLog
src/eper.app.src
commit b6f7790a1e3782880891ff5f052dcefac789e0a1
Author: mats cronqvist <[email protected]>
Date: Thu Oct 22 19:22:30 2015 +0200
v0.96.2
ChangeLog
src/eper.app.src
commit 93f71657bf279844b957e68ab56d4cd94e48f48a
Author: mats cronqvist <[email protected]>
Date: Thu Oct 22 19:21:25 2015 +0200
fixed some flaky tests
src/redbug.erl
src/redbug_eunit.erl
commit 8c1a0736329d0b7aa5cd469af130316f38eca575
Author: Magnus Henoch <[email protected]>
Date: Thu Oct 22 16:31:46 2015 +0100
Allow setting node name for redbug node
When running redbug from the command line, accept -name and -sname
arguments to set the node name for the redbug node.
The use case for this is a system that has been configured to only
accept connections from certain named nodes.
priv/bin/redbug
commit b3a1ecac00687217325c42a8e8b2281208611f1f
Author: Magnus Henoch <[email protected]>
Date: Thu Oct 22 16:29:20 2015 +0100
Don't fail if 'locals' chunk is missing
If the beam file has been stripped with beam_lib:strip/1, the 'locals'
chunk ("LocT") will be missing. In that case, keep going: we'll only
lose the ability to trace local functions.
src/prfTrc.erl
commit 099d590f890eb8a2b9317429d5ea580f6a6dc0d2
Author: mats cronqvist <[email protected]>
Date: Thu Oct 22 09:47:41 2015 +0200
v0.96.1
ChangeLog
src/eper.app.src
commit 6389261985deae2c083893953ba4d847876f5f5d
Author: mats cronqvist <[email protected]>
Date: Tue Oct 20 16:18:40 2015 +0200
more helpful errors
src/redbug.erl
commit c961e14071c16ce31c934422308372531e8b0043
Author: mats cronqvist <[email protected]>
Date: Mon Oct 19 16:34:56 2015 +0200
v0.96.0
AUTHORS
ChangeLog
src/eper.app.src
commit 999f81e04d91e757c43ce671a2a0774b1cdda5c1
Author: mats cronqvist <[email protected]>
Date: Mon Oct 19 16:34:01 2015 +0200
eunit trget should build
Makefile
commit 594d2b18d08c3c74aeb55cf2cc8160b43edae33b
Author: mats cronqvist <[email protected]>
Date: Mon Oct 19 15:34:28 2015 +0200
remove R15 from travis
.travis.yml
commit 5e3247f5f7f97b6516a2eb7b86693de86f2e2142
Author: Dániel Szoboszlay <[email protected]>
Date: Fri Oct 16 16:36:46 2015 +0200
Add a new collector, prfDist, for distribution port statistics
The statistics include the number of packets sent and receive on all
distribution ports and the idle time in both send and receive
directions. The latter can be useful when investigating netsplits.
src/prfDist.erl
src/watchdog.erl
commit b318668faeff3f35e660e393b887071d74708db3
Author: mats cronqvist <[email protected]>
Date: Tue Sep 15 15:05:47 2015 +0200
v0.95.0
ChangeLog
src/eper.app.src
commit 7cd9d485c2706a8b5150eaf83cb1427f5362e3ad
Author: mats cronqvist <[email protected]>
Date: Tue Sep 15 15:05:03 2015 +0200
cosmetic
priv/bin/redbug
commit aa3b052dabc225993ec67dfb0fd59564e06e7d42
Author: mats cronqvist <[email protected]>
Date: Mon Sep 14 16:51:01 2015 +0200
v0.94.0
ChangeLog
src/eper.app.src
commit 565e77daa667c87a251bcf8c2e81848870889d96
Author: mats cronqvist <[email protected]>
Date: Mon Sep 14 16:35:47 2015 +0200
new rebar
rebar
commit f4e1f8b2d790eb852cfa81071a03ace382e55bdc
Author: Magnus Henoch <[email protected]>
Date: Mon Sep 14 12:25:55 2015 +0100
Quote trace patterns in redbug command line tool
This preserves spaces in trace pattern passed on the command line, such
as:
redbug [email protected] "foo:bar -> return"
Without this change, the trace pattern would have been broken up by the
shell script, and the only way to write that pattern would be without
spaces, "foo:bar->return". While doable, it's unintuitive, especially
as the part before "->" gets interpreted correctly, and you get a trace
that shows function calls but no return values.
priv/bin/redbug
commit 0d0eb8f04124aadbb2d33e7d1d4145f374385a16
Author: Magnus Henoch <[email protected]>
Date: Mon Sep 14 10:42:22 2015 +0100
Ensure that prfTime is loaded on the target node
prfTime can be called on the target node, so it needs to be loaded
there.
src/prfTarg.erl
commit d1fcf03f404cab76fbaf1977ebb3b0898e20ee45
Author: mats cronqvist <[email protected]>
Date: Tue Aug 4 12:57:06 2015 +0200
v0.93.0
AUTHORS
ChangeLog
src/eper.app.src
commit 57e0af762f16d4f7609dcf040f93755bb57560ec
Author: mats cronqvist <[email protected]>
Date: Tue Aug 4 12:56:33 2015 +0200
remove autostuff from docs
INSTALL
commit 2f2e2525fdb3084ac7f692b321fca4202a0bad86
Author: Loïc Hoguin <[email protected]>
Date: Thu Jul 23 14:35:36 2015 +0200
Remove autotools support
.gitignore
Makefile.am
configure.ac
priv/bin/Makefile.am
src/Makefile.am
commit 8e9eee4e1e55bea1483edb2c49df1842be6be683
Author: mats cronqvist <[email protected]>
Date: Wed Jul 22 15:02:15 2015 +0200
fixing autotools build (thanks L.Hoguin)
INSTALL
NEWS
configure.ac
depcomp
install-sh
missing
commit 436919d794fb5388e3ec228246d5590ac8bda41e
Author: mats cronqvist <[email protected]>
Date: Tue Jul 14 12:54:16 2015 +0200
integrate with travis. remove all the gtk stuff.
make travis use latest vsns of erlang 15, 16, 17, and 18.
move sherk et al to its own repo.
.travis.yml
Makefile
README
README.md
priv/bin/Makefile.am
priv/bin/gperf
priv/bin/sherk
rebar.config
rebar.config.script
src/Makefile.am
src/gperf.erl
src/gperf.glade
src/gperf.gladep
src/gperfConsumer.erl
src/gperfGtk.erl
src/prfDog.erl
src/prfMnesia.erl
src/sherk.erl
src/sherk.glade
src/sherk.gladep
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
commit fec69b74b65220a1930acfc57a39174a466600e8
Author: mats cronqvist <[email protected]>
Date: Tue Jul 14 12:28:30 2015 +0200
v0.92.0
AUTHORS
ChangeLog
src/eper.app.src
commit 2234c2085a32216ac27254c264a8445318153cba
Author: Dmitry Klionsky <[email protected]>
Date: Tue Jul 14 11:35:14 2015 +0300
Fix R16 build error
rebar.config.script
commit 493a5b0b838d101373aebd9c21a336795c9aed42
Author: mats cronqvist <[email protected]>
Date: Sat Jul 11 17:48:05 2015 +0200
v0.91.0
AUTHORS
ChangeLog
src/eper.app.src
commit 03b6686a4306be54ce0a32b0335f0e5908037bfa
Author: mats cronqvist <[email protected]>
Date: Sat Jul 11 17:44:29 2015 +0200
fix errors in type specs
src/prfMnesia.erl
commit 175a6e9f34b6073c9debd962a5fc533b9ababc4d
Author: mats cronqvist <[email protected]>
Date: Sat Jul 11 16:36:10 2015 +0200
fixup dialyzing
Makefile
src/logReader.erl
commit ffefe7a9061ecd7e2182a7fe06082de9434bb2b2
Author: mats cronqvist <[email protected]>
Date: Sat Jul 11 16:33:26 2015 +0200
erlang:now is obsolete, but what about old OTP's?
make erlang:timestamp -> erlang:now change work in old OTP's, that doesn't have
erlang:timestamp/0.
rebar.config.script
src/prf.erl
src/prfDog.erl
src/prfPrc.erl
src/prfSys.erl
src/prfTime.erl
src/prfTrc.erl
src/sherk_prof.erl
src/watchdog.erl
commit eba5f0b65bd143430bc012d2b1a8a9a4a7aa009d
Author: David Haguenauer <[email protected]>
Date: Fri Jul 10 10:31:21 2015 -0400
Fix some documentation typos.
doc/redbug.txt
commit d435f6cd326ec8d230abacbdaaa7866478c8411e
Author: Nikita Kalashnikov <[email protected]>
Date: Tue Jul 7 14:53:09 2015 +0300
Replaced `erlang:now/0` with `erlang:timestamp/0` for Erlang 18 compatibility
src/prf.erl
src/prfPrc.erl
src/prfSys.erl
src/prfTrc.erl
src/sherk_prof.erl
src/watchdog.erl
commit 86ba7268948df5f48a149769cbc9e1814f3464a6
Author: mats cronqvist <[email protected]>
Date: Fri Jul 3 15:50:27 2015 +0200
testing
src/prfDog.erl
src/watchdog.erl
commit b602d549e1a517cc8a68653df1cc35a12549a8a3
Author: Roberto Aloi <[email protected]>
Date: Tue Jun 30 23:09:44 2015 +0200
Add support for print_return option
doc/redbug.txt
src/redbug.erl
src/redbug_eunit.erl
commit 17c24d712c61b0bc422a7b44f32e7b3d9179409a
Author: John R. Daily <[email protected]>
Date: Fri Mar 6 08:56:00 2015 -0500
Handle simple atoms (registered names) as send targets
src/redbug.erl
commit fe53eb018baaacf2362ff5e338c8df50f29130f4
Author: Matthias <[email protected]>
Date: Tue Nov 4 18:22:06 2014 +0100
add mnesia prf collector
src/prfMnesia.erl
commit 02d38e33852f41dea4612aa1baff4bbc844345b1
Author: systra <[email protected]>
Date: Thu Sep 18 23:07:44 2014 +0300
Allow string type variables for guards
src/redbug_msc.erl
commit 2a946220dd78bee759b39bce8194d8ae4d7912f8
Author: mats cronqvist <[email protected]>
Date: Wed Sep 17 14:19:49 2014 +0200
v0.90.0
ChangeLog
src/eper.app.src
commit 45cb2ae5081eec54878c222725e94158abda7182
Author: mats cronqvist <[email protected]>
Date: Wed Sep 17 14:19:15 2014 +0200
docs
README
commit a16807918935f16c8e7a0dc96831b6a0b9112bd4
Author: mats cronqvist <[email protected]>
Date: Wed Sep 17 14:17:04 2014 +0200
massaged atop:calls/0
src/atop.erl
commit 638c6d44153dd50176aeceefec4dea1932e6ef40
Author: mats cronqvist <[email protected]>
Date: Tue Sep 16 14:36:46 2014 +0200
v0.89.0
ChangeLog
src/eper.app.src
commit 4936fdac364abe23a6ead700de98cc5aecec78fc
Author: mats cronqvist <[email protected]>
Date: Tue Sep 16 12:36:24 2014 +0200
docs
src/atop.erl
commit a8294be74a2daf61e5492b38fc0309a971ea6914
Author: mats cronqvist <[email protected]>
Date: Tue Sep 16 09:50:38 2014 +0200
refactored presenttion code
src/atop.erl
commit 9d5cd5f76d40becc4d918e6115b7b868843c155b
Author: mats cronqvist <[email protected]>
Date: Mon Sep 15 13:22:43 2014 +0200
add dtop:set_max_procs/1
src/dtop.erl
commit a08c3699f51f73b2881486a165580b6aa4ac057e
Author: mats cronqvist <[email protected]>
Date: Thu Sep 11 12:46:33 2014 +0200
v0.88.0
ChangeLog
src/eper.app.src
commit 46930d5b27422034010e84d3dbda07cf78c233bf
Author: mats cronqvist <[email protected]>
Date: Thu Sep 11 12:43:00 2014 +0200
fix crashing bug in atop
.gitignore
src/atop.erl
commit ef60d4a32efa7fd32fee772078ae542dac1330ac
Author: mats cronqvist <[email protected]>
Date: Wed Sep 3 18:46:39 2014 +0200
implement atop:calls/0
src/atop.erl
commit 55e3f69df5e3bcb74b42d2ba056c076298ed6ea7
Author: mats cronqvist <[email protected]>
Date: Wed Sep 3 10:43:05 2014 +0200
v0.87.0
ChangeLog
src/eper.app.src
commit ebecc8a76a32e53547006af5f1710be10b59da16
Author: mats cronqvist <[email protected]>
Date: Tue Sep 2 14:54:38 2014 +0200
somewhat self-documenting
src/atop.erl
commit 099cff6ba85a2b0b4a7b2d29d1b3c8a4dee6909a
Author: mats cronqvist <[email protected]>
Date: Wed Aug 27 10:43:31 2014 +0200
atop works, but the interface is pretty arcane
src/atop.erl
commit 93cbc73f59240bb9f2c802cd678680970f2e900f
Author: mats cronqvist <[email protected]>
Date: Mon Aug 25 10:44:51 2014 +0200
add atop (allocator visualizer)
.gitignore
src/atop.erl
commit 5b167c9ed7ffbb2c81d9d21fd5984bbcd97141e0
Author: mats cronqvist <[email protected]>
Date: Fri Aug 15 12:34:00 2014 +0200
v0.86.0
AUTHORS
ChangeLog
src/eper.app.src
commit 223302da65dbc4b9bee29a10bb4056758ddcacdb
Author: mats cronqvist <[email protected]>
Date: Fri Aug 15 11:59:35 2014 +0200
handle binaries in RTP's
src/redbug_msc.erl
commit 461382ad37a0aa0f35b535b691fef842baf99f0f
Author: mats cronqvist <[email protected]>
Date: Tue Aug 12 18:03:40 2014 +0200
quick hack to support literal binaries in arg list
Makefile
src/redbug_msc.erl
commit de3f5635b11c9ea9c66168b7c44b07a143fb1713
Author: Magnus Henoch <[email protected]>
Date: Wed Jul 30 17:56:07 2014 +0100
In redbug script, use long node names if appropriate
If the node name of the target node contains a dot after the @ sign, it
must be a long node name, and we should use -name instead of -sname.
priv/bin/redbug
commit 56206a0bc7f15870f9aa4013de3f9808893347db
Author: mats cronqvist <[email protected]>
Date: Wed Jun 25 14:40:22 2014 +0200
v0.85.0
ChangeLog
src/eper.app.src
commit 8213c49dd30b06439f83815b4a1f4dfe6c5b8a10
Author: mats cronqvist <[email protected]>
Date: Wed Jun 25 14:39:50 2014 +0200
prfDog drops secret when changing port
src/prfDog.erl
commit 3480de21b5c665d87e30bc2777c205fda04355f0
Author: mats cronqvist <[email protected]>
Date: Wed Jun 25 11:30:53 2014 +0200
v0.84.0
ChangeLog
src/eper.app.src
commit e8404b3f32698d1fcca704864ebc1eb35a5560f3
Author: mats cronqvist <[email protected]>
Date: Tue Jun 24 16:46:34 2014 +0200
fix race conditions in tests
src/prfDog.erl
commit f422cc1de385f014fc8b3cd4f26a1d0370df7f26
Author: mats cronqvist <[email protected]>
Date: Tue Jun 24 16:46:14 2014 +0200
implement prfDog:quit/0
src/prfDog.erl
commit 376883bd07620c7aaf0c0184860e21664e488482
Author: mats cronqvist <[email protected]>
Date: Tue Jun 24 16:44:55 2014 +0200
cosmetic
src/dogConsumer.erl
commit 0de9c6f526be2347a53b7e4826d6e8b070010869
Author: mats cronqvist <[email protected]>
Date: Tue Jun 24 16:44:33 2014 +0200
remove orddict dependency
src/prfDog.erl
src/prfHost.erl
commit 3b7340ff2877f5c52c23d6b131581c59a808fd85
Author: mats cronqvist <[email protected]>
Date: Tue Jun 24 16:42:01 2014 +0200
get collector state through prfHost:state/1
src/prf.erl
src/prfHost.erl
commit b4c1061071f4d812b9145542784787550bf3f769
Author: mats cronqvist <[email protected]>
Date: Tue Jun 24 16:40:36 2014 +0200
fix testcases
src/watchdog.erl
commit f6d3dc95728b64ce1c415a8ad8198f3ba9cd3962
Author: mats cronqvist <[email protected]>
Date: Tue Jun 24 16:40:16 2014 +0200
add watchdog:delete_triggers/0
src/watchdog.erl
commit b52a1c72d463d4aed8f7782ab7a2fe2f7e9c7ab3
Author: mats cronqvist <[email protected]>
Date: Tue Jun 24 12:49:34 2014 +0200
hide eunit behind TEST macro
src/redbug_eunit.erl
commit 638e8fc6a40091922cd6d5a7ac84e06ab5d04048
Author: mats cronqvist <[email protected]>
Date: Tue Jun 24 12:48:54 2014 +0200
new rebar
rebar
commit 0d57710736c780a3e5247c78ad891fed9b53e69c
Author: mats cronqvist <[email protected]>
Date: Mon Jun 23 16:47:49 2014 +0200
make prf:stop/1 return the value of CB:terminate/1 (for testing)
src/dogConsumer.erl
src/prfDog.erl
src/prfHost.erl
commit 1538074ed5fef965b2943164fbe3a29e86ce80be
Author: mats cronqvist <[email protected]>
Date: Mon Jun 23 16:28:54 2014 +0200