forked from tensor-programming/phoenix_1.3_chat_app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
erl_crash.dump
36074 lines (36074 loc) · 850 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.5
Thu Aug 2 16:37:32 2018
Slogan: init terminating in do_boot ({badarg,[{io,put_chars,[standard_error,unicode,[_]],[]},{Elixir.Kernel.CLI,exec_fun,2,[{_},{_}]},{Elixir.Kernel.CLI,run,2,[{_},{_}]},{init,start_em,1,[]},{init,do_boot,3,[
System version: Erlang/OTP 21 [erts-10.0] [source] [64-bit] [smp:4:4] [ds:4:4:10] [async-threads:1] [hipe]
Compiled: Tue Jun 19 18:01:11 2018
Taints:
Atoms: 14420
Calling Thread: scheduler:2
=scheduler:1
Scheduler Sleep Info Flags: SLEEPING | WAITING
Scheduler Sleep Info Aux Work: DD_THR_PRGR | THR_PRGR_LATER_OP
Current Port:
Run Queue Max Length: 0
Run Queue High Length: 0
Run Queue Normal Length: 0
Run Queue Low Length: 0
Run Queue Port Length: 0
Run Queue Flags: OUT_OF_WORK | HALFTIME_OUT_OF_WORK
Current Process:
=scheduler:2
Scheduler Sleep Info Flags:
Scheduler Sleep Info Aux Work: DELAYED_AW_WAKEUP | DD_THR_PRGR | THR_PRGR_LATER_OP
Current Port:
Run Queue Max Length: 0
Run Queue High Length: 0
Run Queue Normal Length: 0
Run Queue Low Length: 0
Run Queue Port Length: 0
Run Queue Flags: OUT_OF_WORK | HALFTIME_OUT_OF_WORK | NONEMPTY | EXEC
Current Process: <0.0.0>
Current Process State: Running
Current Process Internal State: ACT_PRIO_NORMAL | USR_PRIO_NORMAL | PRQ_PRIO_NORMAL | ACTIVE | RUNNING | ACTIVE_SYS
Current Process Program counter: 0x00007f3120c5cc18 (init:boot_loop/2 + 56)
Current Process CP: 0x0000000000000000 (invalid)
Current Process Limited Stack Trace:
0x00007f3109049f68:SReturn addr 0x383BBD8 (<terminate process normally>)
=scheduler:3
Scheduler Sleep Info Flags:
Scheduler Sleep Info Aux Work: DD_THR_PRGR
Current Port:
Run Queue Max Length: 0
Run Queue High Length: 0
Run Queue Normal Length: 0
Run Queue Low Length: 0
Run Queue Port Length: 0
Run Queue Flags: OUT_OF_WORK | HALFTIME_OUT_OF_WORK | NONEMPTY | EXEC
Current Process: <0.40.0>
Current Process State: Running
Current Process Internal State: ACT_PRIO_NORMAL | USR_PRIO_NORMAL | PRQ_PRIO_NORMAL | ACTIVE | RUNNING
Current Process Program counter: 0x00007f310b928528 ('Elixir.Code.Identifier':'-escape/3-fun-0-'/1 + 24)
Current Process CP: 0x0000000000000000 (invalid)
Current Process Limited Stack Trace:
0x00007f3108aca0b0:SReturn addr 0xB99F0C8 ('Elixir.Exception':format_mfa/3 + 1688)
0x00007f3108aca0b8:SReturn addr 0xB99F910 ('Elixir.Exception':format_stacktrace_entry/1 + 928)
0x00007f3108aca0e0:SReturn addr 0xB995640 ('Elixir.Logger.Translator':'-format_stacktrace/1-fun-0-'/2 + 72)
0x00007f3108aca108:SReturn addr 0xB606168 ('Elixir.Enum':'-reduce/3-lists^foldl/2-0-'/3 + 96)
0x00007f3108aca118:SReturn addr 0xB98FFE0 ('Elixir.Logger.Translator':format_stacktrace/1 + 144)
0x00007f3108aca130:SReturn addr 0xB98EE88 ('Elixir.Logger.Translator':format/3 + 104)
0x00007f3108aca138:SReturn addr 0xB993C40 ('Elixir.Logger.Translator':translate/4 + 4608)
0x00007f3108aca148:SReturn addr 0xB653A58 ('Elixir.Logger.ErlangHandler':translate/6 + 224)
0x00007f3108aca158:SReturn addr 0xB653890 ('Elixir.Logger.ErlangHandler':translate/5 + 272)
0x00007f3108aca190:SReturn addr 0xB6544A0 ('Elixir.Logger.ErlangHandler':'-log/2-fun-0-'/3 + 1224)
0x00007f3108aca1c0:SReturn addr 0xB5B14A0 ('Elixir.Logger':normalize_message/2 + 96)
0x00007f3108aca1e8:SReturn addr 0xB5AF9C8 ('Elixir.Logger':bare_log/3 + 856)
0x00007f3108aca1f8:SReturn addr 0x22E44468 (logger_backend:call_handlers/3 + 608)
0x00007f3108aca238:SReturn addr 0x22E441D0 (logger_backend:log_allowed/2 + 464)
0x00007f3108aca290:SReturn addr 0xBA07E68 (logger_server:handle_info/2 + 624)
0x00007f3108aca2b0:SReturn addr 0x22EB7F08 (gen_server:try_dispatch/4 + 152)
0x00007f3108aca2c0:SReturn addr 0x22EB8E30 (gen_server:handle_msg/6 + 1640)
0x00007f3108aca2f8:SReturn addr 0x22E6AF88 (proc_lib:init_p_do_apply/3 + 72)
0x00007f3108aca330:SReturn addr 0x383BBD8 (<terminate process normally>)
=scheduler:4
Scheduler Sleep Info Flags: SLEEPING | WAITING
Scheduler Sleep Info Aux Work: DD_THR_PRGR
Current Port:
Run Queue Max Length: 0
Run Queue High Length: 0
Run Queue Normal Length: 0
Run Queue Low Length: 0
Run Queue Port Length: 0
Run Queue Flags: OUT_OF_WORK | HALFTIME_OUT_OF_WORK
Current Process:
=dirty_cpu_scheduler:5
Scheduler Sleep Info Flags: SLEEPING | TSE_SLEEPING | WAITING
Scheduler Sleep Info Aux Work:
Current Process:
=dirty_cpu_scheduler:6
Scheduler Sleep Info Flags: SLEEPING | TSE_SLEEPING | WAITING
Scheduler Sleep Info Aux Work:
Current Process:
=dirty_cpu_scheduler:7
Scheduler Sleep Info Flags: SLEEPING | TSE_SLEEPING | WAITING
Scheduler Sleep Info Aux Work:
Current Process:
=dirty_cpu_scheduler:8
Scheduler Sleep Info Flags: SLEEPING | TSE_SLEEPING | WAITING
Scheduler Sleep Info Aux Work:
Current Process:
=dirty_cpu_run_queue
Run Queue Max Length: 0
Run Queue High Length: 0
Run Queue Normal Length: 0
Run Queue Low Length: 0
Run Queue Port Length: 0
Run Queue Flags: OUT_OF_WORK | HALFTIME_OUT_OF_WORK
=dirty_io_scheduler:9
Scheduler Sleep Info Flags: SLEEPING | TSE_SLEEPING | WAITING
Scheduler Sleep Info Aux Work:
Current Process:
=dirty_io_scheduler:10
Scheduler Sleep Info Flags: SLEEPING | TSE_SLEEPING | WAITING
Scheduler Sleep Info Aux Work:
Current Process:
=dirty_io_scheduler:11
Scheduler Sleep Info Flags: SLEEPING | TSE_SLEEPING | WAITING
Scheduler Sleep Info Aux Work:
Current Process:
=dirty_io_scheduler:12
Scheduler Sleep Info Flags: SLEEPING | TSE_SLEEPING | WAITING
Scheduler Sleep Info Aux Work:
Current Process:
=dirty_io_scheduler:13
Scheduler Sleep Info Flags: SLEEPING | TSE_SLEEPING | WAITING
Scheduler Sleep Info Aux Work:
Current Process:
=dirty_io_scheduler:14
Scheduler Sleep Info Flags: SLEEPING | TSE_SLEEPING | WAITING
Scheduler Sleep Info Aux Work:
Current Process:
=dirty_io_scheduler:15
Scheduler Sleep Info Flags: SLEEPING | TSE_SLEEPING | WAITING
Scheduler Sleep Info Aux Work:
Current Process:
=dirty_io_scheduler:16
Scheduler Sleep Info Flags: SLEEPING | TSE_SLEEPING | WAITING
Scheduler Sleep Info Aux Work:
Current Process:
=dirty_io_scheduler:17
Scheduler Sleep Info Flags: SLEEPING | TSE_SLEEPING | WAITING
Scheduler Sleep Info Aux Work:
Current Process:
=dirty_io_scheduler:18
Scheduler Sleep Info Flags: SLEEPING | TSE_SLEEPING | WAITING
Scheduler Sleep Info Aux Work:
Current Process:
=dirty_io_run_queue
Run Queue Max Length: 0
Run Queue High Length: 0
Run Queue Normal Length: 0
Run Queue Low Length: 0
Run Queue Port Length: 0
Run Queue Flags: OUT_OF_WORK | HALFTIME_OUT_OF_WORK
=memory
total: 22220008
processes: 5470768
processes_used: 5453504
system: 16749240
atom: 396817
atom_used: 391620
binary: 51192
code: 9442728
ets: 494456
=hash_table:atom_tab
size: 9643
used: 7451
objs: 14419
depth: 7
=index_table:atom_tab
size: 15360
limit: 1048576
entries: 14420
=hash_table:module_code
size: 197
used: 145
objs: 240
depth: 4
=index_table:module_code
size: 1024
limit: 65536
entries: 240
=hash_table:export_list
size: 4813
used: 3221
objs: 5280
depth: 8
=index_table:export_list
size: 6144
limit: 524288
entries: 5280
=hash_table:export_list
size: 4813
used: 3216
objs: 5267
depth: 8
=hash_table:process_reg
size: 23
used: 13
objs: 22
depth: 4
=hash_table:fun_table
size: 1201
used: 969
objs: 1630
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: 49336
static: 1053984
atom_space: 196656 191459
atom_table: 200161
module_table: 114216
export_table: 263388
export_list: 929280
register_table: 300
fun_table: 9722
module_refs: 11424
loaded_code: 8114698
dist_table: 579
node_table: 251
bits_bufs_size: 0
bif_timer: 0
process_table: 3145728
port_table: 786432
ets_misc: 131072
=allocator:sys_alloc
option e: true
option m: libc
option tt: 131072
option tp: 0
=allocator:temp_alloc[0]
versions: 2.1 3.0
option e: true
option t: 5
option ramv: false
option atags: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 90
option rsbcmt: 80
option rmbcmt: 100
option mmbcs: 131072
option mmsbc: 256
option mmmbc: 18446744073709551615
option lmbcs: 10485760
option smbcs: 1048576
option mbcgs: 10
option acul: 0
option mbsd: 3
option as: gf
mbcs blocks: 0 4 4
mbcs blocks size: 0 10328 10328
mbcs carriers: 1 1 1
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 131072 131072 131072
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 131072
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: 2183
temp_free calls: 2183
temp_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:temp_alloc[1]
versions: 0.9 3.0
option e: true
option t: 5
option ramv: false
option atags: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 90
option rsbcmt: 80
option rmbcmt: 100
option mmbcs: 131072
option mmsbc: 256
option mmmbc: 18446744073709551615
option lmbcs: 10485760
option smbcs: 1048576
option mbcgs: 10
option acul: 0
option as: af
mbcs blocks: 0 4 4
mbcs blocks size: 0 633272 633272
mbcs carriers: 1 2 2
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 131072 1179648 1179648
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 131072
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: 45333
temp_free calls: 45333
temp_realloc calls: 230
mseg_alloc calls: 4
mseg_dealloc calls: 4
mseg_realloc calls: 0
sys_alloc calls: 1
sys_free calls: 0
sys_realloc calls: 0
=allocator:temp_alloc[2]
versions: 0.9 3.0
option e: true
option t: 5
option ramv: false
option atags: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 90
option rsbcmt: 80
option rmbcmt: 100
option mmbcs: 131072
option mmsbc: 256
option mmmbc: 18446744073709551615
option lmbcs: 10485760
option smbcs: 1048576
option mbcgs: 10
option acul: 0
option as: af
mbcs blocks: 1 4 4
mbcs blocks size: 65544 65544 65544
mbcs carriers: 1 1 1
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 131072 131072 131072
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 131072
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: 4218
temp_free calls: 4217
temp_realloc calls: 104
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:temp_alloc[3]
versions: 0.9 3.0
option e: true
option t: 5
option ramv: false
option atags: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 90
option rsbcmt: 80
option rmbcmt: 100
option mmbcs: 131072
option mmsbc: 256
option mmmbc: 18446744073709551615
option lmbcs: 10485760
option smbcs: 1048576
option mbcgs: 10
option acul: 0
option as: af
mbcs blocks: 0 4 4
mbcs blocks size: 0 9376 9376
mbcs carriers: 1 1 1
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 131072 131072 131072
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 131072
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: 6015
temp_free calls: 6015
temp_realloc calls: 221
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:temp_alloc[4]
versions: 0.9 3.0
option e: true
option t: 5
option ramv: false
option atags: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 90
option rsbcmt: 80
option rmbcmt: 100
option mmbcs: 131072
option mmsbc: 256
option mmmbc: 18446744073709551615
option lmbcs: 10485760
option smbcs: 1048576
option mbcgs: 10
option acul: 0
option as: af
mbcs blocks: 0 4 4
mbcs blocks size: 0 21480 21480
mbcs carriers: 1 1 1
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 131072 131072 131072
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 131072
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: 9480
temp_free calls: 9480
temp_realloc calls: 365
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[0]
versions: 0.9 3.0
option e: true
option t: 5
option ramv: false
option atags: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 80
option rsbcmt: 80
option rmbcmt: 50
option mmbcs: 32768
option mmsbc: 256
option mmmbc: 18446744073709551615
option lmbcs: 5242880
option smbcs: 262144
option mbcgs: 10
option acul: 0
option as: aoffcbf
mbcs blocks: 0 1294 1294
mbcs blocks size: 0 203048 203048
mbcs carriers: 1 2 2
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 32768 294912 294912
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 32768
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: 5662
sl_free calls: 5662
sl_realloc calls: 239
mseg_alloc calls: 7
mseg_dealloc calls: 7
mseg_realloc calls: 0
sys_alloc calls: 1
sys_free calls: 0
sys_realloc calls: 0
=allocator:sl_alloc[1]
versions: 0.9 3.0
option e: true
option t: 5
option ramv: false
option atags: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 80
option rsbcmt: 80
option rmbcmt: 50
option mmbcs: 32768
option mmsbc: 256
option mmmbc: 18446744073709551615
option lmbcs: 5242880
option smbcs: 262144
option mbcgs: 10
option acul: 60
option as: aoffcbf
mbcs blocks: 0 19619 19619
mbcs blocks size: 0 2734056 2734056
mbcs carriers: 1 4 4
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 32768 3702784 3702784
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 32768
mbcs_pool blocks: 0
mbcs_pool blocks size: 0
mbcs_pool carriers: 0
mbcs_pool carriers size: 0
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: 87669
sl_free calls: 87669
sl_realloc calls: 4468
mseg_alloc calls: 93
mseg_dealloc calls: 93
mseg_realloc calls: 0
sys_alloc calls: 1
sys_free calls: 0
sys_realloc calls: 0
=allocator:sl_alloc[2]
versions: 0.9 3.0
option e: true
option t: 5
option ramv: false
option atags: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 80
option rsbcmt: 80
option rmbcmt: 50
option mmbcs: 32768
option mmsbc: 256
option mmmbc: 18446744073709551615
option lmbcs: 5242880
option smbcs: 262144
option mbcgs: 10
option acul: 60
option as: aoffcbf
mbcs blocks: 0 306 306
mbcs blocks size: 0 49704 49704
mbcs carriers: 1 2 2
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 32768 294912 294912
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 32768
mbcs_pool blocks: 0
mbcs_pool blocks size: 0
mbcs_pool carriers: 0
mbcs_pool carriers size: 0
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: 1226
sl_free calls: 1226
sl_realloc calls: 36
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:sl_alloc[3]
versions: 0.9 3.0
option e: true
option t: 5
option ramv: false
option atags: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 80
option rsbcmt: 80
option rmbcmt: 50
option mmbcs: 32768
option mmsbc: 256
option mmmbc: 18446744073709551615
option lmbcs: 5242880
option smbcs: 262144
option mbcgs: 10
option acul: 60
option as: aoffcbf
mbcs blocks: 0 510 510
mbcs blocks size: 0 75664 75664
mbcs carriers: 1 2 2
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 32768 294912 294912
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 32768
mbcs_pool blocks: 0
mbcs_pool blocks size: 0
mbcs_pool carriers: 0
mbcs_pool carriers size: 0
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: 3030
sl_free calls: 3030
sl_realloc calls: 76
mseg_alloc calls: 4
mseg_dealloc calls: 4
mseg_realloc calls: 0
sys_alloc calls: 1
sys_free calls: 0
sys_realloc calls: 0
=allocator:sl_alloc[4]
versions: 0.9 3.0
option e: true
option t: 5
option ramv: false
option atags: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 80
option rsbcmt: 80
option rmbcmt: 50
option mmbcs: 32768
option mmsbc: 256
option mmmbc: 18446744073709551615
option lmbcs: 5242880
option smbcs: 262144
option mbcgs: 10
option acul: 60
option as: aoffcbf
mbcs blocks: 0 9917 9917
mbcs blocks size: 0 1688696 1688696
mbcs carriers: 1 4 4
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 32768 3440640 3440640
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 32768
mbcs_pool blocks: 0
mbcs_pool blocks size: 0
mbcs_pool carriers: 0
mbcs_pool carriers size: 0
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: 13397
sl_free calls: 13397
sl_realloc calls: 775
mseg_alloc calls: 9
mseg_dealloc calls: 9
mseg_realloc calls: 0
sys_alloc calls: 1
sys_free calls: 0
sys_realloc calls: 0
=allocator:std_alloc[0]
versions: 0.9 3.0
option e: true
option t: 5
option ramv: false
option atags: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 20
option rsbcmt: 80
option rmbcmt: 50
option mmbcs: 32768
option mmsbc: 256
option mmmbc: 18446744073709551615
option lmbcs: 5242880
option smbcs: 262144
option mbcgs: 10
option acul: 0
option as: aoffcbf
mbcs blocks: 37 42 42
mbcs blocks size: 134208 143976 143976
mbcs carriers: 2 2 2
mbcs mseg carriers: 1
mbcs sys_alloc carriers: 1
mbcs carriers size: 294912 294912 294912
mbcs mseg carriers size: 262144
mbcs sys_alloc carriers size: 32768
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: 54
std_free calls: 17
std_realloc calls: 1
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:std_alloc[1]
versions: 0.9 3.0
option e: true
option t: 5
option ramv: false
option atags: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 20
option rsbcmt: 80
option rmbcmt: 50
option mmbcs: 32768
option mmsbc: 256
option mmmbc: 18446744073709551615
option lmbcs: 5242880
option smbcs: 262144
option mbcgs: 10
option acul: 60
option as: aoffcbf
mbcs blocks: 70 92 92
mbcs blocks size: 33240 300800 300800
mbcs carriers: 2 3 3
mbcs mseg carriers: 1
mbcs sys_alloc carriers: 1
mbcs carriers size: 294912 1343488 1343488
mbcs mseg carriers size: 262144
mbcs sys_alloc carriers size: 32768
mbcs_pool blocks: 0
mbcs_pool blocks size: 0
mbcs_pool carriers: 0
mbcs_pool carriers size: 0
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: 965
std_free calls: 895
std_realloc calls: 4
mseg_alloc calls: 37
mseg_dealloc calls: 36
mseg_realloc calls: 0
sys_alloc calls: 1
sys_free calls: 0
sys_realloc calls: 0
=allocator:std_alloc[2]
versions: 0.9 3.0
option e: true
option t: 5
option ramv: false
option atags: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 20
option rsbcmt: 80
option rmbcmt: 50
option mmbcs: 32768
option mmsbc: 256
option mmmbc: 18446744073709551615
option lmbcs: 5242880
option smbcs: 262144
option mbcgs: 10
option acul: 60
option as: aoffcbf
mbcs blocks: 2 11 11
mbcs blocks size: 3872 279752 279752
mbcs carriers: 1 3 3
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 32768 1343488 1343488
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 32768
mbcs_pool blocks: 0
mbcs_pool blocks size: 0
mbcs_pool carriers: 0
mbcs_pool carriers size: 0
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: 270
std_free calls: 268
std_realloc calls: 0
mseg_alloc calls: 26
mseg_dealloc calls: 26
mseg_realloc calls: 0
sys_alloc calls: 1
sys_free calls: 0
sys_realloc calls: 0
=allocator:std_alloc[3]
versions: 0.9 3.0
option e: true
option t: 5
option ramv: false
option atags: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 20
option rsbcmt: 80
option rmbcmt: 50
option mmbcs: 32768
option mmsbc: 256
option mmmbc: 18446744073709551615
option lmbcs: 5242880
option smbcs: 262144
option mbcgs: 10
option acul: 60
option as: aoffcbf
mbcs blocks: 2 10 10
mbcs blocks size: 160 275264 275264
mbcs carriers: 1 3 3
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 32768 1343488 1343488
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 32768
mbcs_pool blocks: 0
mbcs_pool blocks size: 0
mbcs_pool carriers: 0
mbcs_pool carriers size: 0
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: 390
std_free calls: 388
std_realloc calls: 0
mseg_alloc calls: 22
mseg_dealloc calls: 22
mseg_realloc calls: 0
sys_alloc calls: 1
sys_free calls: 0
sys_realloc calls: 0
=allocator:std_alloc[4]
versions: 0.9 3.0
option e: true
option t: 5
option ramv: false
option atags: false
option sbct: 524288
option asbcst: 4145152
option rsbcst: 20
option rsbcmt: 80
option rmbcmt: 50
option mmbcs: 32768
option mmsbc: 256
option mmmbc: 18446744073709551615
option lmbcs: 5242880
option smbcs: 262144
option mbcgs: 10
option acul: 60
option as: aoffcbf
mbcs blocks: 0 10 10
mbcs blocks size: 0 271800 271800
mbcs carriers: 1 3 3
mbcs mseg carriers: 0
mbcs sys_alloc carriers: 1
mbcs carriers size: 32768 1343488 1343488
mbcs mseg carriers size: 0
mbcs sys_alloc carriers size: 32768
mbcs_pool blocks: 0
mbcs_pool blocks size: 0
mbcs_pool carriers: 0
mbcs_pool carriers size: 0
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: 426
std_free calls: 426
std_realloc calls: 0
mseg_alloc calls: 14
mseg_dealloc calls: 14
mseg_realloc calls: 0
sys_alloc calls: 1
sys_free calls: 0
sys_realloc calls: 0
=allocator:ll_alloc[0]
versions: 0.9 3.0
option e: true
option t: 5
option ramv: false
option atags: false
option sbct: 18446744073709551615
option asbcst: 0
option rsbcst: 0
option rsbcmt: 0
option rmbcmt: 0
option mmbcs: 524288
option mmsbc: 0
option mmmbc: 18446744073709551615
option lmbcs: 5242880
option smbcs: 262144
option mbcgs: 10
option acul: 0
option as: aoffcbf
mbcs blocks: 3541 3548 3548
mbcs blocks size: 7487736 7585080 7585080
mbcs carriers: 4 4 4
mbcs mseg carriers: 3
mbcs sys_alloc carriers: 1
mbcs carriers size: 7864320 7864320 7864320
mbcs mseg carriers size: 7340032
mbcs sys_alloc carriers size: 524288
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: 3549
ll_free calls: 8
ll_realloc calls: 27
mseg_alloc calls: 3
mseg_dealloc calls: 0
mseg_realloc calls: 0
sys_alloc calls: 1
sys_free calls: 0
sys_realloc calls: 0
=allocator:ll_alloc[1]
versions: 0.9 3.0
option e: true
option t: 5
option ramv: false
option atags: false
option sbct: 18446744073709551615
option asbcst: 0
option rsbcst: 0
option rsbcmt: 0
option rmbcmt: 0
option mmbcs: 524288
option mmsbc: 0
option mmmbc: 18446744073709551615
option lmbcs: 5242880
option smbcs: 262144
option mbcgs: 10
option acul: 85
option as: aoffcbf
mbcs blocks: 15923 15923 15923
mbcs blocks size: 8453472 8464800 8464800
mbcs carriers: 6 6 6
mbcs mseg carriers: 5
mbcs sys_alloc carriers: 1
mbcs carriers size: 10485760 10485760 10485760