-
Notifications
You must be signed in to change notification settings - Fork 0
/
erl_crash.dump
13573 lines (13573 loc) · 315 KB
/
erl_crash.dump
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
=erl_crash_dump:0.1
Fri Jan 20 19:04:24 2012
Slogan: init terminating in do_boot ()
System version: Erlang R13B03 (erts-5.7.4) [source] [64-bit] [rq:1] [async-threads:0] [hipe] [kernel-poll:true]
Compiled: Tue Oct 5 13:43:51 2010
Atoms: 6480
=memory
total: 6624008
processes: 883744
processes_used: 875056
system: 5740264
atom: 456129
atom_used: 428427
binary: 10504
code: 3700733
ets: 244432
=hash_table:atom_tab
size: 4813
used: 3520
objs: 6480
depth: 7
=index_table:atom_tab
size: 7168
limit: 1048576
entries: 6480
=hash_table:module_code
size: 97
used: 58
objs: 90
depth: 4
=index_table:module_code
size: 1024
limit: 65536
entries: 90
=hash_table:export_list
size: 3203
used: 1894
objs: 2836
depth: 6
=index_table:export_list
size: 3072
limit: 524288
entries: 2836
=hash_table:secondary_export_table
size: 97
used: 0
objs: 0
depth: 0
=hash_table:process_reg
size: 47
used: 29
objs: 38
depth: 2
=hash_table:fun_table
size: 397
used: 275
objs: 468
depth: 5
=hash_table:node_table
size: 11
used: 1
objs: 1
depth: 1
=hash_table:dist_table
size: 11
used: 1
objs: 1
depth: 1
=allocated_areas
sys_misc: 83892
static: 999424
atom_space: 98328 70626
atom_table: 95961
module_table: 9084
export_table: 50316
register_table: 468
fun_table: 3266
module_refs: 2048
loaded_code: 3310987
dist_table: 403
node_table: 227
bits_bufs_size: 0
bif_timer: 80328
link_lh: 0
proc: 28224 23296
atom_entry: 261840 261840
export_entry: 273824 273440
module_entry: 11288 10168
reg_proc: 2472 1592
monitor_sh: 1496 56
nlink_sh: 5704 4264
fun_entry: 42480 41424
db_tab: 7744 4672
driver_event_data_state: 48 48
driver_select_data_state: 696 88
=allocator:sys_alloc
option e: true
option m: libc
option tt: 131072
option tp: 0
=allocator:temp_alloc
versions: 0.9 2.2
option e: true
option t: false
option ramv: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 90
option rsbcmt: 80
option rmbcmt: 100
option mmbcs: 131072
option mmsbc: 256
option mmmbc: 10
option lmbcs: 10485760
option smbcs: 1048576
option mbcgs: 10
option as: af
mbcs blocks: 0 315 315
mbcs blocks size: 0 122576 122576
mbcs carriers: 1 1 1
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 131112 131112 131112
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 131112
sbcs blocks: 0 0 0
sbcs blocks size: 0 0 0
sbcs carriers: 0 0 0
sbcs mseg carriers: 0
sbcs sys_alloc carriers: 0
sbcs carriers size: 0 0 0
sbcs mseg carriers size: 0
sbcs sys_alloc carriers size: 0
temp_alloc calls: 15538
temp_free calls: 15538
temp_realloc calls: 31
mseg_alloc calls: 0
mseg_dealloc calls: 0
mseg_realloc calls: 0
sys_alloc calls: 1
sys_free calls: 0
sys_realloc calls: 0
=allocator:sl_alloc
versions: 2.1 2.2
option e: true
option t: false
option ramv: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 80
option rsbcmt: 80
option rmbcmt: 50
option mmbcs: 131072
option mmsbc: 256
option mmmbc: 5
option lmbcs: 10485760
option smbcs: 1048576
option mbcgs: 10
option mbsd: 3
option as: gf
mbcs blocks: 0 6 6
mbcs blocks size: 0 1472 1472
mbcs carriers: 1 1 1
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 131112 131112 131112
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 131112
sbcs blocks: 0 0 0
sbcs blocks size: 0 0 0
sbcs carriers: 0 0 0
sbcs mseg carriers: 0
sbcs sys_alloc carriers: 0
sbcs carriers size: 0 0 0
sbcs mseg carriers size: 0
sbcs sys_alloc carriers size: 0
sl_alloc calls: 21274
sl_free calls: 21274
sl_realloc calls: 0
mseg_alloc calls: 0
mseg_dealloc calls: 0
mseg_realloc calls: 0
sys_alloc calls: 1
sys_free calls: 0
sys_realloc calls: 0
=allocator:std_alloc
versions: 0.9 2.2
option e: true
option t: false
option ramv: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 20
option rsbcmt: 80
option rmbcmt: 50
option mmbcs: 131072
option mmsbc: 256
option mmmbc: 5
option lmbcs: 10485760
option smbcs: 1048576
option mbcgs: 10
option as: bf
mbcs blocks: 878 886 886
mbcs blocks size: 58272 100104 100104
mbcs carriers: 1 1 1
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 131112 131112 131112
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 131112
sbcs blocks: 0 0 0
sbcs blocks size: 0 0 0
sbcs carriers: 0 0 0
sbcs mseg carriers: 0
sbcs sys_alloc carriers: 0
sbcs carriers size: 0 0 0
sbcs mseg carriers size: 0
sbcs sys_alloc carriers size: 0
std_alloc calls: 1562
std_free calls: 684
std_realloc calls: 0
mseg_alloc calls: 0
mseg_dealloc calls: 0
mseg_realloc calls: 0
sys_alloc calls: 1
sys_free calls: 0
sys_realloc calls: 0
=allocator:ll_alloc
versions: 0.9 2.2
option e: true
option t: false
option ramv: false
option sbct: 18446744073709551615
option asbcst: 0
option rsbcst: 0
option rsbcmt: 0
option rmbcmt: 0
option mmbcs: 2097152
option mmsbc: 0
option mmmbc: 0
option lmbcs: 10485760
option smbcs: 1048576
option mbcgs: 10
option as: aobf
mbcs blocks: 654 654 654
mbcs blocks size: 5860816 5880680 5880680
mbcs carriers: 5 5 5
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 5
mbcs carriers size: 6291496 6291496 6291496
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 6291496
sbcs blocks: 0 0 0
sbcs blocks size: 0 0 0
sbcs carriers: 0 0 0
sbcs mseg carriers: 0
sbcs sys_alloc carriers: 0
sbcs carriers size: 0 0 0
sbcs mseg carriers size: 0
sbcs sys_alloc carriers size: 0
ll_alloc calls: 657
ll_free calls: 3
ll_realloc calls: 190
mseg_alloc calls: 0
mseg_dealloc calls: 0
mseg_realloc calls: 0
sys_alloc calls: 5
sys_free calls: 0
sys_realloc calls: 0
=allocator:eheap_alloc
versions: 2.1 2.2
option e: true
option t: false
option ramv: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 50
option rsbcmt: 80
option rmbcmt: 50
option mmbcs: 524288
option mmsbc: 256
option mmmbc: 100
option lmbcs: 10485760
option smbcs: 1048576
option mbcgs: 10
option mbsd: 3
option as: gf
mbcs blocks: 46 171 171
mbcs blocks size: 503376 908304 908304
mbcs carriers: 2 2 2
mbcs mseg carriers: 1
mbcs sys_alloc carriers: 1
mbcs carriers size: 1572904 1572904 1572904
mbcs mseg carriers size: 1048576
mbcs sys_alloc carriers size: 524328
sbcs blocks: 0 0 0
sbcs blocks size: 0 0 0
sbcs carriers: 0 0 0
sbcs mseg carriers: 0
sbcs sys_alloc carriers: 0
sbcs carriers size: 0 0 0
sbcs mseg carriers size: 0
sbcs sys_alloc carriers size: 0
eheap_alloc calls: 1358
eheap_free calls: 1312
eheap_realloc calls: 48
mseg_alloc calls: 8
mseg_dealloc calls: 7
mseg_realloc calls: 0
sys_alloc calls: 1
sys_free calls: 0
sys_realloc calls: 0
=allocator:ets_alloc
versions: 0.9 2.2
option e: true
option t: false
option ramv: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 20
option rsbcmt: 80
option rmbcmt: 50
option mmbcs: 131072
option mmsbc: 256
option mmmbc: 100
option lmbcs: 10485760
option smbcs: 1048576
option mbcgs: 10
option as: bf
mbcs blocks: 405 463 463
mbcs blocks size: 190632 251160 251160
mbcs carriers: 2 2 2
mbcs mseg carriers: 1
mbcs sys_alloc carriers: 1
mbcs carriers size: 1179688 1179688 1179688
mbcs mseg carriers size: 1048576
mbcs sys_alloc carriers size: 131112
sbcs blocks: 0 0 0
sbcs blocks size: 0 0 0
sbcs carriers: 0 0 0
sbcs mseg carriers: 0
sbcs sys_alloc carriers: 0
sbcs carriers size: 0 0 0
sbcs mseg carriers size: 0
sbcs sys_alloc carriers size: 0
ets_alloc calls: 466
ets_free calls: 61
ets_realloc calls: 5
mseg_alloc calls: 1
mseg_dealloc calls: 0
mseg_realloc calls: 0
sys_alloc calls: 1
sys_free calls: 0
sys_realloc calls: 0
=allocator:fix_alloc
option e: true
proc: 28224 23296
atom_entry: 261840 261840
export_entry: 273824 273440
module_entry: 11288 10168
reg_proc: 2472 1592
monitor_sh: 1496 56
nlink_sh: 5704 4264
fun_entry: 42480 41424
db_tab: 7744 4672
driver_event_data_state: 48 48
driver_select_data_state: 696 88
=allocator:binary_alloc
versions: 0.9 2.2
option e: true
option t: false
option ramv: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 20
option rsbcmt: 80
option rmbcmt: 50
option mmbcs: 131072
option mmsbc: 256
option mmmbc: 50
option lmbcs: 10485760
option smbcs: 1048576
option mbcgs: 10
option as: bf
mbcs blocks: 6 17 17
mbcs blocks size: 10504 231112 231112
mbcs carriers: 1 2 2
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 131112 1179688 1179688
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 131112
sbcs blocks: 0 0 0
sbcs blocks size: 0 0 0
sbcs carriers: 0 0 0
sbcs mseg carriers: 0
sbcs sys_alloc carriers: 0
sbcs carriers size: 0 0 0
sbcs mseg carriers size: 0
sbcs sys_alloc carriers size: 0
binary_alloc calls: 1141
binary_free calls: 1135
binary_realloc calls: 79
mseg_alloc calls: 2
mseg_dealloc calls: 2
mseg_realloc calls: 0
sys_alloc calls: 1
sys_free calls: 0
sys_realloc calls: 0
=allocator:driver_alloc
versions: 0.9 2.2
option e: true
option t: false
option ramv: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 20
option rsbcmt: 80
option rmbcmt: 50
option mmbcs: 131072
option mmsbc: 256
option mmmbc: 10
option lmbcs: 10485760
option smbcs: 1048576
option mbcgs: 10
option as: bf
mbcs blocks: 3 6 6
mbcs blocks size: 408 9128 9128
mbcs carriers: 1 1 1
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 131112 131112 131112
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 131112
sbcs blocks: 0 0 0
sbcs blocks size: 0 0 0
sbcs carriers: 0 0 0
sbcs mseg carriers: 0
sbcs sys_alloc carriers: 0
sbcs carriers size: 0 0 0
sbcs mseg carriers size: 0
sbcs sys_alloc carriers size: 0
driver_alloc calls: 2587
driver_free calls: 2584
driver_realloc calls: 0
mseg_alloc calls: 0
mseg_dealloc calls: 0
mseg_realloc calls: 0
sys_alloc calls: 1
sys_free calls: 0
sys_realloc calls: 0
=allocator:mseg_alloc
version: 0.9
option amcbf: 4194304
option rmcbf: 20
option mcs: 5
option cci: 1000
cached_segments: 0
cache_hits: 9
segments: 2 2 2
segments_size: 2097152 2097152 2097152
segments_watermark: 2
mseg_alloc calls: 11
mseg_dealloc calls: 9
mseg_realloc calls: 0
mseg_create calls: 2
mseg_destroy calls: 0
mseg_recreate calls: 0
mseg_clear_cache calls: 0
mseg_check_cache calls: 0
=allocator:alloc_util
option mmc: 1024
option ycs: 1048576
=allocator:instr
option m: false
option s: false
option t: false
=proc:<0.0.0>
State: Running
Name: init
Spawned as: otp_ring0:start/2
Spawned by: []
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.3.0>, <0.6.0>, <0.5.0>]
Reductions: 5923
Stack+heap: 2584
OldHeap: 987
Heap unused: 100
OldHeap unused: 987
Program counter: 0x00007f75c9b8b040 (init:boot_loop/2 + 56)
CP: 0x0000000000000000 (invalid)
=proc:<0.3.0>
State: Waiting
Name: erl_prim_loader
Spawned as: erlang:apply/2
Spawned by: <0.2.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.0.0>, #Port<0.2>]
Reductions: 334675
Stack+heap: 2584
OldHeap: 4181
Heap unused: 1991
OldHeap unused: 4181
Program counter: 0x00007f75c96f2788 (erl_prim_loader:loop/3 + 184)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.5.0>
State: Waiting
Name: error_logger
Spawned as: proc_lib:init_p/5
Spawned by: <0.2.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.0.0>, <0.24.0>]
Reductions: 782
Stack+heap: 610
OldHeap: 987
Heap unused: 241
OldHeap unused: 987
Program counter: 0x00007f75c9665a90 (code_server:call/2 + 144)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.6.0>
State: Waiting
Name: application_controller
Spawned as: erlang:apply/2
Spawned by: <0.2.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.0.0>, <0.36.0>, <0.31.0>, <0.8.0>]
Reductions: 17124
Stack+heap: 6765
OldHeap: 17711
Heap unused: 381
OldHeap unused: 17711
Program counter: 0x00007f75c971a770 (gen_server:loop/6 + 288)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.8.0>
State: Waiting
Spawned as: proc_lib:init_p/5
Spawned by: <0.7.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.9.0>, <0.6.0>]
Reductions: 44
Stack+heap: 377
OldHeap: 377
Heap unused: 336
OldHeap unused: 377
Program counter: 0x00007f75c9712540 (application_master:main_loop/2 + 64)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.9.0>
State: Waiting
Spawned as: application_master:start_it/4
Spawned by: <0.8.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.10.0>, <0.8.0>]
Reductions: 72
Stack+heap: 233
OldHeap: 0
Heap unused: 80
OldHeap unused: 0
Program counter: 0x00007f75c9714bc8 (application_master:loop_it/4 + 80)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.10.0>
State: Waiting
Name: kernel_sup
Spawned as: proc_lib:init_p/5
Spawned by: <0.9.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.9.0>, <0.12.0>, <0.11.0>, <0.18.0>, <0.20.0>, <0.19.0>, <0.23.0>, <0.26.0>, <0.25.0>, <0.21.0>, <0.16.0>]
Reductions: 1362
Stack+heap: 610
OldHeap: 377
Heap unused: 254
OldHeap unused: 377
Program counter: 0x00007f75c971a770 (gen_server:loop/6 + 288)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.11.0>
State: Waiting
Name: rex
Spawned as: proc_lib:init_p/5
Spawned by: <0.10.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.10.0>]
Reductions: 36
Stack+heap: 233
OldHeap: 0
Heap unused: 161
OldHeap unused: 0
Program counter: 0x00007f75c971a770 (gen_server:loop/6 + 288)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.12.0>
State: Waiting
Name: global_name_server
Spawned as: proc_lib:init_p/5
Spawned by: <0.10.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.10.0>, <0.15.0>, <0.14.0>, <0.13.0>]
Reductions: 53
Stack+heap: 233
OldHeap: 0
Heap unused: 89
OldHeap unused: 0
Program counter: 0x00007f75c971a770 (gen_server:loop/6 + 288)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.13.0>
State: Waiting
Spawned as: erlang:apply/2
Spawned by: <0.12.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.12.0>]
Reductions: 21
Stack+heap: 233
OldHeap: 0
Heap unused: 173
OldHeap unused: 0
Program counter: 0x00007f75c95cff80 (global:loop_the_locker/1 + 1176)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.14.0>
State: Waiting
Spawned as: erlang:apply/2
Spawned by: <0.12.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.12.0>]
Reductions: 4
Stack+heap: 233
OldHeap: 0
Heap unused: 221
OldHeap unused: 0
Program counter: 0x00007f75c95d80d8 (global:collect_deletions/2 + 152)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.15.0>
State: Waiting
Spawned as: erlang:apply/2
Spawned by: <0.12.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.12.0>]
Reductions: 3
Stack+heap: 233
OldHeap: 0
Heap unused: 222
OldHeap unused: 0
Program counter: 0x00007f75c95d8318 (global:loop_the_registrar/0 + 24)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.16.0>
State: Waiting
Name: inet_db
Spawned as: proc_lib:init_p/5
Spawned by: <0.10.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.10.0>]
Reductions: 1970
Stack+heap: 1597
OldHeap: 0
Heap unused: 107
OldHeap unused: 0
Program counter: 0x00007f75c971a770 (gen_server:loop/6 + 288)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.18.0>
State: Waiting
Name: global_group
Spawned as: proc_lib:init_p/5
Spawned by: <0.10.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.10.0>]
Reductions: 60
Stack+heap: 233
OldHeap: 0
Heap unused: 112
OldHeap unused: 0
Program counter: 0x00007f75c971a770 (gen_server:loop/6 + 288)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.19.0>
State: Waiting
Name: file_server_2
Spawned as: proc_lib:init_p/5
Spawned by: <0.10.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [#Port<0.204>, <0.10.0>]
Reductions: 376
Stack+heap: 233
OldHeap: 233
Heap unused: 113
OldHeap unused: 233
Program counter: 0x00007f75c971a770 (gen_server:loop/6 + 288)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.20.0>
State: Scheduled
Name: code_server
Spawned as: erlang:apply/2
Spawned by: <0.10.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 1
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.10.0>]
Reductions: 69781
Stack+heap: 6765
OldHeap: 6765
Heap unused: 2436
OldHeap unused: 6765
Program counter: 0x00007f75c9665c68 (code_server:loop/1 + 128)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.21.0>
State: Waiting
Name: standard_error_sup
Spawned as: proc_lib:init_p/5
Spawned by: <0.10.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.22.0>, <0.10.0>]
Reductions: 40
Stack+heap: 233
OldHeap: 0
Heap unused: 113
OldHeap unused: 0
Program counter: 0x00007f75c971a770 (gen_server:loop/6 + 288)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.22.0>
State: Waiting
Name: standard_error
Spawned as: standard_error:server/2
Spawned by: <0.21.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [#Port<0.341>, <0.21.0>]
Reductions: 7
Stack+heap: 233
OldHeap: 0
Heap unused: 218
OldHeap unused: 0
Program counter: 0x00007f75c965fa48 (standard_error:server_loop/1 + 40)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.23.0>
State: Waiting
Spawned as: proc_lib:init_p/5
Spawned by: <0.10.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.24.0>, <0.10.0>]
Reductions: 65
Stack+heap: 610
OldHeap: 987
Heap unused: 557
OldHeap unused: 987
Program counter: 0x00007f75c971a770 (gen_server:loop/6 + 288)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.24.0>
State: Waiting
Name: user
Spawned as: user:server/2
Spawned by: <0.23.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [#Port<0.358>, <0.23.0>, <0.5.0>]
Reductions: 487
Stack+heap: 377
OldHeap: 377
Heap unused: 280
OldHeap unused: 377
Program counter: 0x00007f75c9688f78 (user:server_loop/2 + 56)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.25.0>
State: Waiting
Spawned as: proc_lib:init_p/5
Spawned by: <0.10.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.10.0>]
Reductions: 176
Stack+heap: 233
OldHeap: 0
Heap unused: 155
OldHeap unused: 0
Program counter: 0x00007f75c971a770 (gen_server:loop/6 + 288)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.26.0>
State: Waiting
Name: kernel_safe_sup
Spawned as: proc_lib:init_p/5
Spawned by: <0.10.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.10.0>]
Reductions: 57
Stack+heap: 233
OldHeap: 0
Heap unused: 102
OldHeap unused: 0
Program counter: 0x00007f75c971a770 (gen_server:loop/6 + 288)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.31.0>
State: Waiting
Spawned as: proc_lib:init_p/5
Spawned by: <0.30.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.32.0>, <0.6.0>]
Reductions: 23
Stack+heap: 233
OldHeap: 0
Heap unused: 131
OldHeap unused: 0
Program counter: 0x00007f75c9712540 (application_master:main_loop/2 + 64)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.32.0>
State: Waiting
Spawned as: application_master:start_it/4
Spawned by: <0.31.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.33.0>, <0.31.0>]
Reductions: 50
Stack+heap: 233
OldHeap: 0
Heap unused: 112
OldHeap unused: 0
Program counter: 0x00007f75c9714bc8 (application_master:loop_it/4 + 80)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.33.0>
State: Waiting
Name: crypto_sup
Spawned as: proc_lib:init_p/5
Spawned by: <0.32.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.34.0>, <0.32.0>]
Reductions: 110
Stack+heap: 233
OldHeap: 0
Heap unused: 94
OldHeap unused: 0
Program counter: 0x00007f75c971a770 (gen_server:loop/6 + 288)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.34.0>
State: Waiting
Name: crypto_server
Spawned as: proc_lib:init_p/5
Spawned by: <0.33.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [#Port<0.625>, #Port<0.627>, #Port<0.626>, #Port<0.629>, #Port<0.631>, #Port<0.630>, #Port<0.628>, #Port<0.633>, #Port<0.635>, #Port<0.634>, #Port<0.637>, #Port<0.639>, <0.33.0>, #Port<0.640>, #Port<0.638>, #Port<0.636>, #Port<0.632>]
Reductions: 388
Stack+heap: 610
OldHeap: 377
Heap unused: 337
OldHeap unused: 377
Program counter: 0x00007f75c971a770 (gen_server:loop/6 + 288)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.36.0>
State: Waiting
Spawned as: proc_lib:init_p/5
Spawned by: <0.35.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.37.0>, <0.6.0>]
Reductions: 23
Stack+heap: 233
OldHeap: 0
Heap unused: 79
OldHeap unused: 0
Program counter: 0x00007f75c9712540 (application_master:main_loop/2 + 64)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.37.0>
State: Waiting
Spawned as: application_master:start_it/4
Spawned by: <0.36.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.38.0>, <0.36.0>]
Reductions: 50
Stack+heap: 233
OldHeap: 0
Heap unused: 60
OldHeap unused: 0
Program counter: 0x00007f75c9714bc8 (application_master:loop_it/4 + 80)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.38.0>
State: Waiting
Name: ssl_sup
Spawned as: proc_lib:init_p/5
Spawned by: <0.37.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.37.0>, <0.41.0>, <0.40.0>, <0.39.0>]
Reductions: 240
Stack+heap: 233
OldHeap: 377
Heap unused: 113
OldHeap unused: 377
Program counter: 0x00007f75c971a770 (gen_server:loop/6 + 288)
CP: 0x0000000000000000 (invalid)
arity = 0
=proc:<0.39.0>
State: Waiting
Name: ssl_broker_sup
Spawned as: proc_lib:init_p/5
Spawned by: <0.38.0>
Started: Fri Jan 20 19:04:24 2012
Message queue length: 0
Number of heap fragments: 0
Heap fragment data: 0
Link list: [<0.38.0>]
Reductions: 54
Stack+heap: 233
OldHeap: 0