forked from bytedance/Elkeid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexecve_handler_data
More file actions
9712 lines (9712 loc) · 986 KB
/
execve_handler_data
File metadata and controls
9712 lines (9712 loc) · 986 KB
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
cpus=8
<...>-264148 [005] 6537.326754: funcgraph_entry: 0.147 us | ptrace_pre_handler();
<...>-264148 [005] 6537.326797: funcgraph_entry: 0.083 us | ptrace_pre_handler();
<...>-264148 [005] 6537.326817: funcgraph_entry: 0.060 us | ptrace_pre_handler();
<...>-264148 [005] 6537.326822: funcgraph_entry: 0.053 us | ptrace_pre_handler();
<...>-264148 [005] 6537.326828: funcgraph_entry: 0.055 us | ptrace_pre_handler();
<...>-264153 [006] 6537.341534: funcgraph_entry: 0.081 us | ptrace_pre_handler();
<...>-264152 [001] 6537.341692: funcgraph_entry: 0.172 us | ptrace_pre_handler();
<...>-264154 [006] 6537.342058: funcgraph_entry: 0.278 us | ptrace_pre_handler();
<...>-264152 [001] 6537.342083: funcgraph_entry: 0.182 us | ptrace_pre_handler();
<...>-264155 [006] 6537.342315: funcgraph_entry: 0.247 us | ptrace_pre_handler();
<...>-264152 [001] 6537.342334: funcgraph_entry: 0.119 us | ptrace_pre_handler();
<...>-264156 [006] 6537.342799: funcgraph_entry: 0.081 us | ptrace_pre_handler();
<...>-264152 [001] 6537.342820: funcgraph_entry: 0.072 us | ptrace_pre_handler();
<...>-264158 [001] 6537.347096: funcgraph_entry: 0.168 us | ptrace_pre_handler();
<...>-264159 [006] 6537.347391: funcgraph_entry: 0.223 us | ptrace_pre_handler();
<...>-264159 [006] 6537.347397: funcgraph_entry: 0.047 us | ptrace_pre_handler();
<...>-264162 [001] 6537.354770: funcgraph_entry: 0.190 us | ptrace_pre_handler();
<...>-264163 [004] 6537.355182: funcgraph_entry: 0.205 us | ptrace_pre_handler();
<...>-264164 [006] 6537.355543: funcgraph_entry: 0.265 us | ptrace_pre_handler();
<...>-264165 [003] 6537.357311: funcgraph_entry: 0.175 us | ptrace_pre_handler();
<...>-264166 [001] 6537.357791: funcgraph_entry: 0.198 us | ptrace_pre_handler();
<...>-264167 [003] 6537.358085: funcgraph_entry: 0.151 us | ptrace_pre_handler();
<...>-264168 [005] 6537.358802: funcgraph_entry: 0.185 us | ptrace_pre_handler();
<...>-264169 [003] 6537.359462: funcgraph_entry: 0.178 us | ptrace_pre_handler();
<...>-264170 [003] 6537.359691: funcgraph_entry: 0.153 us | ptrace_pre_handler();
<...>-264171 [003] 6537.359905: funcgraph_entry: 0.125 us | ptrace_pre_handler();
<...>-264172 [003] 6537.360198: funcgraph_entry: 0.161 us | ptrace_pre_handler();
<...>-264173 [003] 6537.360392: funcgraph_entry: 0.166 us | ptrace_pre_handler();
<...>-264174 [003] 6537.360567: funcgraph_entry: 0.139 us | ptrace_pre_handler();
<...>-264175 [003] 6537.360939: funcgraph_entry: 0.257 us | ptrace_pre_handler();
<...>-264176 [003] 6537.361131: funcgraph_entry: 0.123 us | ptrace_pre_handler();
<...>-264177 [003] 6537.361300: funcgraph_entry: 0.151 us | ptrace_pre_handler();
<...>-264178 [003] 6537.361461: funcgraph_entry: 0.180 us | ptrace_pre_handler();
<...>-264179 [003] 6537.361875: funcgraph_entry: 0.223 us | ptrace_pre_handler();
<...>-264180 [005] 6537.362114: funcgraph_entry: 0.125 us | ptrace_pre_handler();
<...>-264181 [003] 6537.362736: funcgraph_entry: 0.154 us | ptrace_pre_handler();
<...>-264182 [003] 6537.362935: funcgraph_entry: 0.207 us | ptrace_pre_handler();
<...>-264183 [003] 6537.363127: funcgraph_entry: 0.069 us | ptrace_pre_handler();
<...>-264184 [003] 6537.363314: funcgraph_entry: 0.140 us | ptrace_pre_handler();
<...>-264185 [003] 6537.363494: funcgraph_entry: 0.157 us | ptrace_pre_handler();
<...>-264186 [003] 6537.363869: funcgraph_entry: 0.288 us | ptrace_pre_handler();
<...>-264187 [003] 6537.364095: funcgraph_entry: 0.220 us | ptrace_pre_handler();
<...>-264188 [003] 6537.364263: funcgraph_entry: 0.094 us | ptrace_pre_handler();
<...>-264189 [003] 6537.364451: funcgraph_entry: 0.282 us | ptrace_pre_handler();
<...>-264190 [003] 6537.364922: funcgraph_entry: 0.370 us | ptrace_pre_handler();
<...>-264191 [003] 6537.365232: funcgraph_entry: 0.186 us | ptrace_pre_handler();
<...>-264192 [003] 6537.365406: funcgraph_entry: 0.203 us | ptrace_pre_handler();
<...>-264193 [003] 6537.365679: funcgraph_entry: 0.166 us | ptrace_pre_handler();
<...>-264194 [003] 6537.365885: funcgraph_entry: 0.196 us | ptrace_pre_handler();
<...>-264195 [003] 6537.366086: funcgraph_entry: 0.229 us | ptrace_pre_handler();
<...>-264196 [003] 6537.366261: funcgraph_entry: 0.095 us | ptrace_pre_handler();
<...>-264197 [003] 6537.366422: funcgraph_entry: 0.216 us | ptrace_pre_handler();
<...>-264198 [003] 6537.366589: funcgraph_entry: 0.186 us | ptrace_pre_handler();
<...>-264199 [003] 6537.366791: funcgraph_entry: 0.144 us | ptrace_pre_handler();
<...>-264200 [003] 6537.366984: funcgraph_entry: 0.229 us | ptrace_pre_handler();
<...>-264201 [003] 6537.367169: funcgraph_entry: 0.193 us | ptrace_pre_handler();
<...>-264202 [003] 6537.367353: funcgraph_entry: 0.212 us | ptrace_pre_handler();
<...>-264203 [003] 6537.367526: funcgraph_entry: 0.173 us | ptrace_pre_handler();
<...>-264204 [003] 6537.367783: funcgraph_entry: 0.222 us | ptrace_pre_handler();
<...>-264205 [003] 6537.367961: funcgraph_entry: 0.206 us | ptrace_pre_handler();
<...>-264206 [003] 6537.368127: funcgraph_entry: 0.200 us | ptrace_pre_handler();
<...>-264207 [003] 6537.368311: funcgraph_entry: 0.213 us | ptrace_pre_handler();
<...>-264208 [003] 6537.368482: funcgraph_entry: 0.180 us | ptrace_pre_handler();
<...>-264209 [003] 6537.368658: funcgraph_entry: 0.124 us | ptrace_pre_handler();
<...>-264210 [003] 6537.368835: funcgraph_entry: 0.204 us | ptrace_pre_handler();
<...>-264211 [003] 6537.368997: funcgraph_entry: 0.600 us | ptrace_pre_handler();
<...>-264212 [001] 6537.369258: funcgraph_entry: 0.104 us | ptrace_pre_handler();
<...>-264213 [002] 6537.369522: funcgraph_entry: 0.159 us | ptrace_pre_handler();
<...>-264214 [003] 6537.369904: funcgraph_entry: 0.171 us | ptrace_pre_handler();
<...>-264215 [001] 6537.370203: funcgraph_entry: 0.214 us | ptrace_pre_handler();
<...>-264216 [003] 6537.370409: funcgraph_entry: 0.184 us | ptrace_pre_handler();
<...>-264217 [001] 6537.370850: funcgraph_entry: 0.193 us | ptrace_pre_handler();
<...>-264218 [004] 6537.371098: funcgraph_entry: 0.190 us | ptrace_pre_handler();
<...>-264219 [003] 6537.371329: funcgraph_entry: 0.180 us | ptrace_pre_handler();
<...>-264220 [005] 6537.371541: funcgraph_entry: 0.164 us | ptrace_pre_handler();
<...>-264221 [005] 6537.372018: funcgraph_entry: 0.160 us | ptrace_pre_handler();
<...>-264222 [005] 6537.372204: funcgraph_entry: 0.246 us | ptrace_pre_handler();
<...>-264223 [005] 6537.372385: funcgraph_entry: 0.228 us | ptrace_pre_handler();
<...>-264224 [005] 6537.372824: funcgraph_entry: 0.157 us | ptrace_pre_handler();
<...>-264226 [003] 6537.378375: funcgraph_entry: 0.137 us | ptrace_pre_handler();
<...>-264226 [003] 6537.378391: funcgraph_entry: 0.064 us | ptrace_pre_handler();
<...>-264226 [003] 6537.378396: funcgraph_entry: 0.047 us | ptrace_pre_handler();
<...>-264226 [003] 6537.378413: funcgraph_entry: 0.047 us | ptrace_pre_handler();
<...>-264237 [007] 6538.062200: funcgraph_entry: 0.164 us | ptrace_pre_handler();
<...>-264237 [007] 6538.062246: funcgraph_entry: 0.066 us | ptrace_pre_handler();
<...>-264237 [007] 6538.086071: funcgraph_entry: 0.189 us | ptrace_pre_handler();
<...>-264237 [007] 6538.086084: funcgraph_entry: 0.074 us | ptrace_pre_handler();
<...>-264237 [007] 6538.086090: funcgraph_entry: 0.053 us | ptrace_pre_handler();
<...>-264242 [001] 6538.096042: funcgraph_entry: 0.163 us | ptrace_pre_handler();
<...>-264241 [002] 6538.096072: funcgraph_entry: 0.174 us | ptrace_pre_handler();
<...>-264243 [006] 6538.096334: funcgraph_entry: 0.157 us | ptrace_pre_handler();
<...>-264241 [002] 6538.096363: funcgraph_entry: 0.076 us | ptrace_pre_handler();
<...>-264244 [007] 6538.096716: funcgraph_entry: 0.109 us | ptrace_pre_handler();
<...>-264241 [002] 6538.096742: funcgraph_entry: 0.152 us | ptrace_pre_handler();
<...>-264245 [005] 6538.098038: funcgraph_entry: 0.160 us | ptrace_pre_handler();
<...>-264241 [002] 6538.098063: funcgraph_entry: 0.089 us | ptrace_pre_handler();
<...>-264247 [001] 6538.104779: funcgraph_entry: 0.172 us | ptrace_pre_handler();
<...>-264248 [006] 6538.105090: funcgraph_entry: 0.200 us | ptrace_pre_handler();
<...>-264248 [006] 6538.105102: funcgraph_entry: 0.046 us | ptrace_pre_handler();
<...>-264251 [002] 6538.113191: funcgraph_entry: 0.190 us | ptrace_pre_handler();
<...>-264252 [007] 6538.113683: funcgraph_entry: 0.139 us | ptrace_pre_handler();
<...>-264253 [001] 6538.113948: funcgraph_entry: 0.157 us | ptrace_pre_handler();
<...>-264254 [002] 6538.114166: funcgraph_entry: 0.137 us | ptrace_pre_handler();
<...>-264255 [001] 6538.114402: funcgraph_entry: 0.172 us | ptrace_pre_handler();
<...>-264256 [002] 6538.114800: funcgraph_entry: 0.154 us | ptrace_pre_handler();
<...>-264257 [001] 6538.115030: funcgraph_entry: 0.172 us | ptrace_pre_handler();
<...>-264258 [002] 6538.115517: funcgraph_entry: 0.163 us | ptrace_pre_handler();
<...>-264259 [001] 6538.115841: funcgraph_entry: 0.149 us | ptrace_pre_handler();
<...>-264260 [002] 6538.116035: funcgraph_entry: 0.134 us | ptrace_pre_handler();
<...>-264261 [006] 6538.116328: funcgraph_entry: 0.142 us | ptrace_pre_handler();
<...>-264262 [007] 6538.116859: funcgraph_entry: 0.115 us | ptrace_pre_handler();
<...>-264263 [001] 6538.117073: funcgraph_entry: 0.155 us | ptrace_pre_handler();
<...>-264264 [002] 6538.117373: funcgraph_entry: 0.203 us | ptrace_pre_handler();
<...>-264265 [001] 6538.118205: funcgraph_entry: 0.229 us | ptrace_pre_handler();
<...>-264266 [002] 6538.118489: funcgraph_entry: 0.201 us | ptrace_pre_handler();
<...>-264267 [001] 6538.118987: funcgraph_entry: 0.187 us | ptrace_pre_handler();
<...>-264268 [003] 6538.119246: funcgraph_entry: 0.159 us | ptrace_pre_handler();
<...>-264269 [001] 6538.119641: funcgraph_entry: 0.241 us | ptrace_pre_handler();
<...>-264270 [002] 6538.119929: funcgraph_entry: 0.115 us | ptrace_pre_handler();
<...>-264271 [002] 6538.120154: funcgraph_entry: 0.160 us | ptrace_pre_handler();
<...>-264272 [001] 6538.120521: funcgraph_entry: 0.092 us | ptrace_pre_handler();
<...>-264273 [002] 6538.120732: funcgraph_entry: 0.157 us | ptrace_pre_handler();
<...>-264274 [002] 6538.120937: funcgraph_entry: 0.202 us | ptrace_pre_handler();
<...>-264275 [001] 6538.121133: funcgraph_entry: 0.149 us | ptrace_pre_handler();
<...>-264276 [003] 6538.121393: funcgraph_entry: 0.098 us | ptrace_pre_handler();
<...>-264277 [000] 6538.121629: funcgraph_entry: 0.270 us | ptrace_pre_handler();
<...>-264278 [007] 6538.121895: funcgraph_entry: 0.210 us | ptrace_pre_handler();
<...>-264279 [007] 6538.122111: funcgraph_entry: 0.186 us | ptrace_pre_handler();
<...>-264280 [007] 6538.122283: funcgraph_entry: 0.183 us | ptrace_pre_handler();
<...>-264281 [007] 6538.122441: funcgraph_entry: 0.150 us | ptrace_pre_handler();
<...>-264282 [007] 6538.122716: funcgraph_entry: 0.221 us | ptrace_pre_handler();
<...>-264283 [007] 6538.122893: funcgraph_entry: 0.201 us | ptrace_pre_handler();
<...>-264284 [007] 6538.123073: funcgraph_entry: 0.098 us | ptrace_pre_handler();
<...>-264285 [007] 6538.123243: funcgraph_entry: 0.147 us | ptrace_pre_handler();
<...>-264286 [007] 6538.123405: funcgraph_entry: 0.126 us | ptrace_pre_handler();
<...>-264287 [007] 6538.123827: funcgraph_entry: 0.215 us | ptrace_pre_handler();
<...>-264288 [007] 6538.124010: funcgraph_entry: 0.166 us | ptrace_pre_handler();
<...>-264289 [007] 6538.124181: funcgraph_entry: 0.108 us | ptrace_pre_handler();
<...>-264290 [007] 6538.124371: funcgraph_entry: 0.177 us | ptrace_pre_handler();
<...>-264291 [007] 6538.124648: funcgraph_entry: 0.241 us | ptrace_pre_handler();
<...>-264292 [007] 6538.124836: funcgraph_entry: 0.188 us | ptrace_pre_handler();
<...>-264293 [007] 6538.125019: funcgraph_entry: 0.163 us | ptrace_pre_handler();
<...>-264294 [007] 6538.125189: funcgraph_entry: 0.156 us | ptrace_pre_handler();
<...>-264295 [000] 6538.125381: funcgraph_entry: 0.108 us | ptrace_pre_handler();
<...>-264296 [007] 6538.125704: funcgraph_entry: 0.253 us | ptrace_pre_handler();
<...>-264297 [007] 6538.125906: funcgraph_entry: 0.256 us | ptrace_pre_handler();
<...>-264298 [002] 6538.126144: funcgraph_entry: 0.208 us | ptrace_pre_handler();
<...>-264299 [000] 6538.126354: funcgraph_entry: 0.199 us | ptrace_pre_handler();
<...>-264300 [002] 6538.126790: funcgraph_entry: 0.140 us | ptrace_pre_handler();
<...>-264301 [002] 6538.127022: funcgraph_entry: 0.226 us | ptrace_pre_handler();
<...>-264302 [002] 6538.127233: funcgraph_entry: 0.150 us | ptrace_pre_handler();
<...>-264303 [002] 6538.127474: funcgraph_entry: 0.274 us | ptrace_pre_handler();
<...>-264304 [002] 6538.127800: funcgraph_entry: 0.208 us | ptrace_pre_handler();
<...>-264305 [002] 6538.128008: funcgraph_entry: 0.192 us | ptrace_pre_handler();
<...>-264306 [002] 6538.128205: funcgraph_entry: 0.284 us | ptrace_pre_handler();
<...>-264307 [002] 6538.128437: funcgraph_entry: 0.141 us | ptrace_pre_handler();
<...>-264308 [002] 6538.128763: funcgraph_entry: 0.204 us | ptrace_pre_handler();
<...>-264309 [002] 6538.128952: funcgraph_entry: 0.097 us | ptrace_pre_handler();
<...>-264310 [002] 6538.129148: funcgraph_entry: 0.128 us | ptrace_pre_handler();
<...>-264311 [002] 6538.129364: funcgraph_entry: 0.125 us | ptrace_pre_handler();
<...>-264312 [002] 6538.129682: funcgraph_entry: 0.231 us | ptrace_pre_handler();
<...>-264313 [002] 6538.129887: funcgraph_entry: 0.119 us | ptrace_pre_handler();
<...>-264315 [001] 6538.135409: funcgraph_entry: 0.317 us | ptrace_pre_handler();
<...>-264315 [001] 6538.135426: funcgraph_entry: 0.061 us | ptrace_pre_handler();
<...>-264315 [001] 6538.135430: funcgraph_entry: 0.053 us | ptrace_pre_handler();
<...>-264315 [001] 6538.135447: funcgraph_entry: 0.073 us | ptrace_pre_handler();
<...>-264326 [003] 6538.756965: funcgraph_entry: 0.110 us | ptrace_pre_handler();
<...>-264326 [003] 6538.757004: funcgraph_entry: 0.061 us | ptrace_pre_handler();
<...>-264326 [003] 6538.757017: funcgraph_entry: 0.058 us | ptrace_pre_handler();
<...>-264326 [003] 6538.757022: funcgraph_entry: 0.060 us | ptrace_pre_handler();
<...>-264326 [003] 6538.757049: funcgraph_entry: 0.047 us | ptrace_pre_handler();
<...>-264331 [003] 6538.767826: funcgraph_entry: 0.589 us | ptrace_pre_handler();
<...>-264330 [004] 6538.767868: funcgraph_entry: 0.194 us | ptrace_pre_handler();
<...>-264332 [003] 6538.768168: funcgraph_entry: 0.232 us | ptrace_pre_handler();
<...>-264330 [004] 6538.768191: funcgraph_entry: 0.131 us | ptrace_pre_handler();
<...>-264333 [003] 6538.768426: funcgraph_entry: 0.132 us | ptrace_pre_handler();
<...>-264330 [004] 6538.768441: funcgraph_entry: 0.116 us | ptrace_pre_handler();
<...>-264334 [003] 6538.768904: funcgraph_entry: 0.249 us | ptrace_pre_handler();
<...>-264330 [004] 6538.768921: funcgraph_entry: 0.091 us | ptrace_pre_handler();
<...>-264336 [007] 6538.774846: funcgraph_entry: 0.245 us | ptrace_pre_handler();
<...>-264337 [006] 6538.777482: funcgraph_entry: 0.144 us | ptrace_pre_handler();
<...>-264337 [006] 6538.777487: funcgraph_entry: 0.065 us | ptrace_pre_handler();
<...>-264340 [000] 6538.786403: funcgraph_entry: 0.131 us | ptrace_pre_handler();
<...>-264341 [004] 6538.786953: funcgraph_entry: 0.184 us | ptrace_pre_handler();
<...>-264342 [003] 6538.787238: funcgraph_entry: 0.202 us | ptrace_pre_handler();
<...>-264343 [002] 6538.787485: funcgraph_entry: 0.237 us | ptrace_pre_handler();
<...>-264344 [007] 6538.787939: funcgraph_entry: 0.179 us | ptrace_pre_handler();
<...>-264345 [003] 6538.788217: funcgraph_entry: 0.141 us | ptrace_pre_handler();
<...>-264346 [002] 6538.788420: funcgraph_entry: 0.196 us | ptrace_pre_handler();
<...>-264347 [003] 6538.788780: funcgraph_entry: 0.200 us | ptrace_pre_handler();
<...>-264348 [002] 6538.789015: funcgraph_entry: 0.207 us | ptrace_pre_handler();
<...>-264349 [007] 6538.789215: funcgraph_entry: 0.191 us | ptrace_pre_handler();
<...>-264350 [000] 6538.789487: funcgraph_entry: 0.144 us | ptrace_pre_handler();
<...>-264351 [007] 6538.789858: funcgraph_entry: 0.229 us | ptrace_pre_handler();
<...>-264352 [000] 6538.790142: funcgraph_entry: 0.201 us | ptrace_pre_handler();
<...>-264353 [005] 6538.790470: funcgraph_entry: 0.194 us | ptrace_pre_handler();
<...>-264354 [007] 6538.790888: funcgraph_entry: 0.122 us | ptrace_pre_handler();
<...>-264355 [000] 6538.791100: funcgraph_entry: 0.198 us | ptrace_pre_handler();
<...>-264356 [007] 6538.791294: funcgraph_entry: 0.156 us | ptrace_pre_handler();
<...>-264357 [000] 6538.791478: funcgraph_entry: 0.139 us | ptrace_pre_handler();
<...>-264358 [007] 6538.791788: funcgraph_entry: 0.193 us | ptrace_pre_handler();
<...>-264359 [000] 6538.792005: funcgraph_entry: 0.234 us | ptrace_pre_handler();
<...>-264360 [007] 6538.792192: funcgraph_entry: 0.222 us | ptrace_pre_handler();
<...>-264361 [000] 6538.792375: funcgraph_entry: 0.234 us | ptrace_pre_handler();
<...>-264362 [003] 6538.792765: funcgraph_entry: 0.184 us | ptrace_pre_handler();
<...>-264363 [005] 6538.793077: funcgraph_entry: 0.217 us | ptrace_pre_handler();
<...>-264364 [003] 6538.793275: funcgraph_entry: 0.199 us | ptrace_pre_handler();
<...>-264365 [004] 6538.793477: funcgraph_entry: 0.151 us | ptrace_pre_handler();
<...>-264366 [003] 6538.793737: funcgraph_entry: 0.173 us | ptrace_pre_handler();
<...>-264367 [004] 6538.793938: funcgraph_entry: 0.208 us | ptrace_pre_handler();
<...>-264368 [007] 6538.794129: funcgraph_entry: 0.129 us | ptrace_pre_handler();
<...>-264369 [003] 6538.794315: funcgraph_entry: 0.173 us | ptrace_pre_handler();
<...>-264370 [007] 6538.794483: funcgraph_entry: 0.119 us | ptrace_pre_handler();
<...>-264371 [000] 6538.794882: funcgraph_entry: 0.204 us | ptrace_pre_handler();
<...>-264372 [007] 6538.795092: funcgraph_entry: 0.137 us | ptrace_pre_handler();
<...>-264373 [000] 6538.795283: funcgraph_entry: 0.121 us | ptrace_pre_handler();
<...>-264374 [007] 6538.795463: funcgraph_entry: 0.146 us | ptrace_pre_handler();
<...>-264375 [007] 6538.795792: funcgraph_entry: 0.115 us | ptrace_pre_handler();
<...>-264376 [003] 6538.796168: funcgraph_entry: 0.171 us | ptrace_pre_handler();
<...>-264377 [004] 6538.796384: funcgraph_entry: 0.181 us | ptrace_pre_handler();
<...>-264378 [003] 6538.796711: funcgraph_entry: 0.089 us | ptrace_pre_handler();
<...>-264379 [004] 6538.796915: funcgraph_entry: 0.101 us | ptrace_pre_handler();
<...>-264380 [003] 6538.797101: funcgraph_entry: 0.167 us | ptrace_pre_handler();
<...>-264381 [004] 6538.797289: funcgraph_entry: 0.113 us | ptrace_pre_handler();
<...>-264382 [003] 6538.797463: funcgraph_entry: 0.156 us | ptrace_pre_handler();
<...>-264383 [004] 6538.797670: funcgraph_entry: 0.080 us | ptrace_pre_handler();
<...>-264384 [003] 6538.797859: funcgraph_entry: 0.206 us | ptrace_pre_handler();
<...>-264385 [004] 6538.798102: funcgraph_entry: 0.216 us | ptrace_pre_handler();
<...>-264386 [003] 6538.798294: funcgraph_entry: 0.145 us | ptrace_pre_handler();
<...>-264387 [004] 6538.798465: funcgraph_entry: 0.168 us | ptrace_pre_handler();
<...>-264388 [003] 6538.798641: funcgraph_entry: 0.153 us | ptrace_pre_handler();
<...>-264389 [004] 6538.798819: funcgraph_entry: 0.176 us | ptrace_pre_handler();
<...>-264390 [003] 6538.798998: funcgraph_entry: 0.188 us | ptrace_pre_handler();
<...>-264391 [004] 6538.799190: funcgraph_entry: 0.163 us | ptrace_pre_handler();
<...>-264392 [007] 6538.799387: funcgraph_entry: 0.120 us | ptrace_pre_handler();
<...>-264393 [000] 6538.799774: funcgraph_entry: 0.184 us | ptrace_pre_handler();
<...>-264394 [007] 6538.800024: funcgraph_entry: 0.151 us | ptrace_pre_handler();
<...>-264395 [000] 6538.800245: funcgraph_entry: 0.081 us | ptrace_pre_handler();
<...>-264396 [007] 6538.800472: funcgraph_entry: 0.096 us | ptrace_pre_handler();
<...>-264397 [000] 6538.800837: funcgraph_entry: 0.102 us | ptrace_pre_handler();
<...>-264398 [007] 6538.801044: funcgraph_entry: 0.172 us | ptrace_pre_handler();
<...>-264399 [000] 6538.801257: funcgraph_entry: 0.148 us | ptrace_pre_handler();
<...>-264400 [007] 6538.801424: funcgraph_entry: 0.094 us | ptrace_pre_handler();
<...>-264401 [000] 6538.801705: funcgraph_entry: 0.160 us | ptrace_pre_handler();
<...>-264402 [007] 6538.801904: funcgraph_entry: 0.205 us | ptrace_pre_handler();
<...>-264404 [003] 6538.807402: funcgraph_entry: 0.160 us | ptrace_pre_handler();
<...>-264404 [003] 6538.807421: funcgraph_entry: 0.082 us | ptrace_pre_handler();
<...>-264404 [003] 6538.807434: funcgraph_entry: 0.095 us | ptrace_pre_handler();
<...>-264404 [003] 6538.807459: funcgraph_entry: 0.076 us | ptrace_pre_handler();
<...>-264416 [001] 6539.459983: funcgraph_entry: 0.135 us | ptrace_pre_handler();
<...>-264416 [001] 6539.460030: funcgraph_entry: 0.058 us | ptrace_pre_handler();
<...>-264416 [001] 6539.477980: funcgraph_entry: 0.253 us | ptrace_pre_handler();
<...>-264416 [001] 6539.477995: funcgraph_entry: 0.048 us | ptrace_pre_handler();
<...>-264416 [001] 6539.478001: funcgraph_entry: 0.074 us | ptrace_pre_handler();
<...>-264421 [002] 6539.488285: funcgraph_entry: 0.136 us | ptrace_pre_handler();
<...>-264420 [000] 6539.488314: funcgraph_entry: 0.101 us | ptrace_pre_handler();
<...>-264422 [005] 6539.488811: funcgraph_entry: 8.540 us | ptrace_pre_handler();
<...>-264420 [000] 6539.488851: funcgraph_entry: 0.118 us | ptrace_pre_handler();
<...>-264423 [005] 6539.489102: funcgraph_entry: 6.413 us | ptrace_pre_handler();
<...>-264420 [000] 6539.489131: funcgraph_entry: 0.080 us | ptrace_pre_handler();
<...>-264424 [005] 6539.489395: funcgraph_entry: 0.239 us | ptrace_pre_handler();
<...>-264420 [000] 6539.489431: funcgraph_entry: 0.127 us | ptrace_pre_handler();
<...>-264426 [000] 6539.494587: funcgraph_entry: 0.209 us | ptrace_pre_handler();
<...>-264427 [007] 6539.494886: funcgraph_entry: 0.085 us | ptrace_pre_handler();
<...>-264427 [007] 6539.494892: funcgraph_entry: 0.046 us | ptrace_pre_handler();
<...>-264430 [005] 6539.503372: funcgraph_entry: 0.228 us | ptrace_pre_handler();
<...>-264431 [007] 6539.503841: funcgraph_entry: 0.086 us | ptrace_pre_handler();
<...>-264432 [000] 6539.504083: funcgraph_entry: 0.081 us | ptrace_pre_handler();
<...>-264433 [007] 6539.504320: funcgraph_entry: 0.176 us | ptrace_pre_handler();
<...>-264434 [007] 6539.504732: funcgraph_entry: 0.139 us | ptrace_pre_handler();
<...>-264435 [007] 6539.504944: funcgraph_entry: 0.088 us | ptrace_pre_handler();
<...>-264436 [007] 6539.505141: funcgraph_entry: 0.156 us | ptrace_pre_handler();
<...>-264437 [007] 6539.505335: funcgraph_entry: 0.104 us | ptrace_pre_handler();
<...>-264438 [007] 6539.505508: funcgraph_entry: 0.220 us | ptrace_pre_handler();
<...>-264439 [007] 6539.505760: funcgraph_entry: 0.163 us | ptrace_pre_handler();
<...>-264440 [007] 6539.506008: funcgraph_entry: 0.223 us | ptrace_pre_handler();
<...>-264441 [005] 6539.506232: funcgraph_entry: 6.520 us | ptrace_pre_handler();
<...>-264442 [000] 6539.506468: funcgraph_entry: 0.140 us | ptrace_pre_handler();
<...>-264443 [002] 6539.506913: funcgraph_entry: 0.147 us | ptrace_pre_handler();
<...>-264444 [003] 6539.507166: funcgraph_entry: 0.210 us | ptrace_pre_handler();
<...>-264445 [005] 6539.507396: funcgraph_entry: 0.140 us | ptrace_pre_handler();
<...>-264446 [005] 6539.507606: funcgraph_entry: 0.127 us | ptrace_pre_handler();
<...>-264447 [005] 6539.507793: funcgraph_entry: 0.213 us | ptrace_pre_handler();
<...>-264448 [005] 6539.507998: funcgraph_entry: 0.104 us | ptrace_pre_handler();
<...>-264449 [005] 6539.508174: funcgraph_entry: 0.169 us | ptrace_pre_handler();
<...>-264450 [005] 6539.508364: funcgraph_entry: 0.155 us | ptrace_pre_handler();
<...>-264451 [005] 6539.508550: funcgraph_entry: 0.098 us | ptrace_pre_handler();
<...>-264452 [005] 6539.508744: funcgraph_entry: 0.089 us | ptrace_pre_handler();
<...>-264453 [005] 6539.508929: funcgraph_entry: 0.104 us | ptrace_pre_handler();
<...>-264454 [005] 6539.509106: funcgraph_entry: 0.066 us | ptrace_pre_handler();
<...>-264455 [005] 6539.509290: funcgraph_entry: 0.180 us | ptrace_pre_handler();
<...>-264456 [005] 6539.509478: funcgraph_entry: 0.130 us | ptrace_pre_handler();
<...>-264457 [005] 6539.509883: funcgraph_entry: 0.183 us | ptrace_pre_handler();
<...>-264458 [002] 6539.510113: funcgraph_entry: 0.179 us | ptrace_pre_handler();
<...>-264459 [005] 6539.510345: funcgraph_entry: 0.141 us | ptrace_pre_handler();
<...>-264460 [005] 6539.510746: funcgraph_entry: 0.136 us | ptrace_pre_handler();
<...>-264461 [000] 6539.510980: funcgraph_entry: 0.201 us | ptrace_pre_handler();
<...>-264462 [005] 6539.511219: funcgraph_entry: 0.198 us | ptrace_pre_handler();
<...>-264463 [005] 6539.511443: funcgraph_entry: 0.212 us | ptrace_pre_handler();
<...>-264464 [005] 6539.511798: funcgraph_entry: 7.972 us | ptrace_pre_handler();
<...>-264465 [005] 6539.512010: funcgraph_entry: 0.186 us | ptrace_pre_handler();
<...>-264466 [005] 6539.512193: funcgraph_entry: 0.203 us | ptrace_pre_handler();
<...>-264467 [005] 6539.512390: funcgraph_entry: 6.040 us | ptrace_pre_handler();
<...>-264468 [005] 6539.512595: funcgraph_entry: 0.249 us | ptrace_pre_handler();
<...>-264469 [005] 6539.512789: funcgraph_entry: 0.194 us | ptrace_pre_handler();
<...>-264470 [005] 6539.512966: funcgraph_entry: 5.753 us | ptrace_pre_handler();
<...>-264471 [007] 6539.513189: funcgraph_entry: 0.182 us | ptrace_pre_handler();
<...>-264472 [000] 6539.513433: funcgraph_entry: 0.151 us | ptrace_pre_handler();
<...>-264473 [007] 6539.513713: funcgraph_entry: 0.272 us | ptrace_pre_handler();
<...>-264474 [007] 6539.514029: funcgraph_entry: 0.170 us | ptrace_pre_handler();
<...>-264475 [007] 6539.514251: funcgraph_entry: 0.127 us | ptrace_pre_handler();
<...>-264476 [007] 6539.514473: funcgraph_entry: 0.079 us | ptrace_pre_handler();
<...>-264477 [007] 6539.514666: funcgraph_entry: 0.155 us | ptrace_pre_handler();
<...>-264478 [007] 6539.514906: funcgraph_entry: 0.162 us | ptrace_pre_handler();
<...>-264479 [007] 6539.515110: funcgraph_entry: 0.165 us | ptrace_pre_handler();
<...>-264480 [007] 6539.515289: funcgraph_entry: 0.183 us | ptrace_pre_handler();
<...>-264481 [007] 6539.515454: funcgraph_entry: 0.216 us | ptrace_pre_handler();
<...>-264482 [003] 6539.515714: funcgraph_entry: 0.639 us | ptrace_pre_handler();
<...>-264483 [007] 6539.515926: funcgraph_entry: 0.236 us | ptrace_pre_handler();
<...>-264484 [007] 6539.516122: funcgraph_entry: 0.231 us | ptrace_pre_handler();
<...>-264485 [007] 6539.516307: funcgraph_entry: 0.210 us | ptrace_pre_handler();
<...>-264486 [007] 6539.516481: funcgraph_entry: 0.221 us | ptrace_pre_handler();
<...>-264487 [007] 6539.516863: funcgraph_entry: 0.192 us | ptrace_pre_handler();
<...>-264488 [007] 6539.517045: funcgraph_entry: 0.226 us | ptrace_pre_handler();
<...>-264489 [007] 6539.517211: funcgraph_entry: 0.197 us | ptrace_pre_handler();
<...>-264490 [007] 6539.517399: funcgraph_entry: 5.831 us | ptrace_pre_handler();
<...>-264491 [007] 6539.517777: funcgraph_entry: 0.222 us | ptrace_pre_handler();
<...>-264492 [006] 6539.518004: funcgraph_entry: 0.174 us | ptrace_pre_handler();
<...>-264494 [001] 6539.537957: funcgraph_entry: 0.125 us | ptrace_pre_handler();
<...>-264494 [001] 6539.537981: funcgraph_entry: 0.094 us | ptrace_pre_handler();
<...>-264494 [001] 6539.537992: funcgraph_entry: 0.047 us | ptrace_pre_handler();
<...>-264494 [001] 6539.538013: funcgraph_entry: 0.050 us | ptrace_pre_handler();
<...>-264558 [005] 6540.375371: funcgraph_entry: 0.226 us | ptrace_pre_handler();
<...>-264558 [005] 6540.375398: funcgraph_entry: 0.126 us | ptrace_pre_handler();
<...>-264558 [005] 6540.375418: funcgraph_entry: 0.072 us | ptrace_pre_handler();
<...>-264558 [005] 6540.375424: funcgraph_entry: 0.064 us | ptrace_pre_handler();
<...>-264558 [005] 6540.375431: funcgraph_entry: 0.069 us | ptrace_pre_handler();
<...>-264563 [005] 6540.389007: funcgraph_entry: 0.230 us | ptrace_pre_handler();
<...>-264562 [006] 6540.389043: funcgraph_entry: 0.108 us | ptrace_pre_handler();
<...>-264564 [006] 6540.389322: funcgraph_entry: 0.086 us | ptrace_pre_handler();
<...>-264562 [001] 6540.389351: funcgraph_entry: 0.228 us | ptrace_pre_handler();
<...>-264565 [006] 6540.389772: funcgraph_entry: 0.097 us | ptrace_pre_handler();
<...>-264562 [001] 6540.389796: funcgraph_entry: 0.091 us | ptrace_pre_handler();
<...>-264566 [006] 6540.390059: funcgraph_entry: 0.058 us | ptrace_pre_handler();
<...>-264562 [001] 6540.390076: funcgraph_entry: 0.088 us | ptrace_pre_handler();
<...>-264568 [003] 6540.394020: funcgraph_entry: 0.104 us | ptrace_pre_handler();
<...>-264569 [001] 6540.394271: funcgraph_entry: 0.106 us | ptrace_pre_handler();
<...>-264569 [001] 6540.394275: funcgraph_entry: 0.065 us | ptrace_pre_handler();
<...>-264572 [006] 6540.403369: funcgraph_entry: 0.175 us | ptrace_pre_handler();
<...>-264573 [007] 6540.403886: funcgraph_entry: 0.233 us | ptrace_pre_handler();
<...>-264574 [004] 6540.404148: funcgraph_entry: 0.159 us | ptrace_pre_handler();
<...>-264575 [004] 6540.404395: funcgraph_entry: 0.204 us | ptrace_pre_handler();
<...>-264576 [004] 6540.404585: funcgraph_entry: 0.086 us | ptrace_pre_handler();
<...>-264577 [004] 6540.404814: funcgraph_entry: 0.157 us | ptrace_pre_handler();
<...>-264578 [004] 6540.404986: funcgraph_entry: 0.178 us | ptrace_pre_handler();
<...>-264579 [004] 6540.405148: funcgraph_entry: 0.142 us | ptrace_pre_handler();
<...>-264580 [004] 6540.405335: funcgraph_entry: 0.201 us | ptrace_pre_handler();
<...>-264581 [004] 6540.405507: funcgraph_entry: 0.117 us | ptrace_pre_handler();
<...>-264582 [004] 6540.405720: funcgraph_entry: 0.105 us | ptrace_pre_handler();
<...>-264583 [003] 6540.405894: funcgraph_entry: 0.090 us | ptrace_pre_handler();
<...>-264584 [007] 6540.406126: funcgraph_entry: 0.158 us | ptrace_pre_handler();
<...>-264585 [005] 6540.406334: funcgraph_entry: 0.202 us | ptrace_pre_handler();
<...>-264586 [003] 6540.406682: funcgraph_entry: 0.116 us | ptrace_pre_handler();
<...>-264587 [003] 6540.406914: funcgraph_entry: 0.121 us | ptrace_pre_handler();
<...>-264588 [003] 6540.407114: funcgraph_entry: 0.245 us | ptrace_pre_handler();
<...>-264589 [003] 6540.407313: funcgraph_entry: 0.135 us | ptrace_pre_handler();
<...>-264590 [003] 6540.407495: funcgraph_entry: 0.200 us | ptrace_pre_handler();
<...>-264591 [003] 6540.407909: funcgraph_entry: 0.195 us | ptrace_pre_handler();
<...>-264592 [003] 6540.408085: funcgraph_entry: 0.218 us | ptrace_pre_handler();
<...>-264593 [003] 6540.408259: funcgraph_entry: 0.220 us | ptrace_pre_handler();
<...>-264594 [007] 6540.408476: funcgraph_entry: 0.161 us | ptrace_pre_handler();
<...>-264595 [003] 6540.408811: funcgraph_entry: 0.209 us | ptrace_pre_handler();
<...>-264596 [007] 6540.409000: funcgraph_entry: 0.161 us | ptrace_pre_handler();
<...>-264597 [003] 6540.409198: funcgraph_entry: 0.121 us | ptrace_pre_handler();
<...>-264598 [003] 6540.409372: funcgraph_entry: 0.142 us | ptrace_pre_handler();
<...>-264599 [003] 6540.409785: funcgraph_entry: 0.212 us | ptrace_pre_handler();
<...>-264600 [006] 6540.410011: funcgraph_entry: 0.169 us | ptrace_pre_handler();
<...>-264601 [003] 6540.410218: funcgraph_entry: 0.157 us | ptrace_pre_handler();
<...>-264602 [003] 6540.410405: funcgraph_entry: 0.151 us | ptrace_pre_handler();
<...>-264603 [003] 6540.410777: funcgraph_entry: 0.259 us | ptrace_pre_handler();
<...>-264604 [004] 6540.410982: funcgraph_entry: 0.085 us | ptrace_pre_handler();
<...>-264606 [003] 6540.411220: funcgraph_entry: 0.242 us | ptrace_pre_handler();
<...>-264607 [003] 6540.411422: funcgraph_entry: 0.190 us | ptrace_pre_handler();
<...>-264608 [007] 6540.411800: funcgraph_entry: 0.089 us | ptrace_pre_handler();
<...>-264609 [003] 6540.412026: funcgraph_entry: 0.066 us | ptrace_pre_handler();
<...>-264610 [003] 6540.412214: funcgraph_entry: 0.190 us | ptrace_pre_handler();
<...>-264611 [003] 6540.412379: funcgraph_entry: 0.177 us | ptrace_pre_handler();
<...>-264612 [003] 6540.412537: funcgraph_entry: 0.073 us | ptrace_pre_handler();
<...>-264613 [003] 6540.412762: funcgraph_entry: 0.218 us | ptrace_pre_handler();
<...>-264614 [005] 6540.412968: funcgraph_entry: 0.098 us | ptrace_pre_handler();
<...>-264615 [001] 6540.413197: funcgraph_entry: 0.109 us | ptrace_pre_handler();
<...>-264616 [003] 6540.413408: funcgraph_entry: 0.200 us | ptrace_pre_handler();
<...>-264617 [003] 6540.413680: funcgraph_entry: 0.187 us | ptrace_pre_handler();
<...>-264618 [003] 6540.413928: funcgraph_entry: 0.155 us | ptrace_pre_handler();
<...>-264619 [003] 6540.414116: funcgraph_entry: 0.143 us | ptrace_pre_handler();
<...>-264620 [003] 6540.414283: funcgraph_entry: 0.111 us | ptrace_pre_handler();
<...>-264621 [003] 6540.414445: funcgraph_entry: 0.115 us | ptrace_pre_handler();
<...>-264622 [007] 6540.414864: funcgraph_entry: 0.115 us | ptrace_pre_handler();
<...>-264623 [003] 6540.415066: funcgraph_entry: 0.150 us | ptrace_pre_handler();
<...>-264624 [003] 6540.415250: funcgraph_entry: 0.124 us | ptrace_pre_handler();
<...>-264625 [003] 6540.415427: funcgraph_entry: 0.198 us | ptrace_pre_handler();
<...>-264626 [003] 6540.415690: funcgraph_entry: 0.269 us | ptrace_pre_handler();
<...>-264627 [003] 6540.415868: funcgraph_entry: 0.273 us | ptrace_pre_handler();
<...>-264628 [003] 6540.416039: funcgraph_entry: 0.165 us | ptrace_pre_handler();
<...>-264629 [003] 6540.416199: funcgraph_entry: 0.153 us | ptrace_pre_handler();
<...>-264630 [003] 6540.416361: funcgraph_entry: 0.146 us | ptrace_pre_handler();
<...>-264631 [007] 6540.416744: funcgraph_entry: 0.102 us | ptrace_pre_handler();
<...>-264632 [007] 6540.416956: funcgraph_entry: 0.221 us | ptrace_pre_handler();
<...>-264633 [007] 6540.417134: funcgraph_entry: 0.175 us | ptrace_pre_handler();
<...>-264634 [007] 6540.417303: funcgraph_entry: 0.217 us | ptrace_pre_handler();
<...>-264635 [007] 6540.417474: funcgraph_entry: 0.264 us | ptrace_pre_handler();
<...>-264637 [006] 6540.423469: funcgraph_entry: 0.253 us | ptrace_pre_handler();
<...>-264637 [006] 6540.423522: funcgraph_entry: 0.080 us | ptrace_pre_handler();
<...>-264637 [006] 6540.423532: funcgraph_entry: 0.121 us | ptrace_pre_handler();
<...>-264637 [006] 6540.423632: funcgraph_entry: 0.055 us | ptrace_pre_handler();
<...>-264655 [003] 6541.074892: funcgraph_entry: 0.251 us | ptrace_pre_handler();
<...>-264655 [003] 6541.074922: funcgraph_entry: 0.068 us | ptrace_pre_handler();
<...>-264655 [003] 6541.094114: funcgraph_entry: 0.503 us | ptrace_pre_handler();
<...>-264655 [003] 6541.094142: funcgraph_entry: 0.054 us | ptrace_pre_handler();
<...>-264655 [003] 6541.094148: funcgraph_entry: 0.047 us | ptrace_pre_handler();
<...>-264660 [005] 6541.104521: funcgraph_entry: 0.142 us | ptrace_pre_handler();
<...>-264659 [001] 6541.104645: funcgraph_entry: 0.145 us | ptrace_pre_handler();
<...>-264661 [004] 6541.104920: funcgraph_entry: 0.086 us | ptrace_pre_handler();
<...>-264659 [001] 6541.104943: funcgraph_entry: 0.070 us | ptrace_pre_handler();
<...>-264662 [004] 6541.105172: funcgraph_entry: 0.162 us | ptrace_pre_handler();
<...>-264659 [001] 6541.105186: funcgraph_entry: 0.071 us | ptrace_pre_handler();
<...>-264663 [004] 6541.105396: funcgraph_entry: 0.146 us | ptrace_pre_handler();
<...>-264659 [001] 6541.105408: funcgraph_entry: 0.066 us | ptrace_pre_handler();
<...>-264665 [004] 6541.110227: funcgraph_entry: 0.167 us | ptrace_pre_handler();
<...>-264666 [007] 6541.110476: funcgraph_entry: 0.143 us | ptrace_pre_handler();
<...>-264666 [007] 6541.110480: funcgraph_entry: 0.049 us | ptrace_pre_handler();
<...>-264669 [001] 6541.122785: funcgraph_entry: 0.110 us | ptrace_pre_handler();
<...>-264670 [005] 6541.123168: funcgraph_entry: 0.111 us | ptrace_pre_handler();
<...>-264671 [000] 6541.123414: funcgraph_entry: 0.223 us | ptrace_pre_handler();
<...>-264672 [007] 6541.123884: funcgraph_entry: 0.194 us | ptrace_pre_handler();
<...>-264673 [001] 6541.124133: funcgraph_entry: 0.206 us | ptrace_pre_handler();
<...>-264674 [002] 6541.124346: funcgraph_entry: 0.206 us | ptrace_pre_handler();
<...>-264675 [001] 6541.124814: funcgraph_entry: 0.114 us | ptrace_pre_handler();
<...>-264676 [002] 6541.125089: funcgraph_entry: 0.096 us | ptrace_pre_handler();
<...>-264677 [001] 6541.125310: funcgraph_entry: 0.182 us | ptrace_pre_handler();
<...>-264678 [002] 6541.125490: funcgraph_entry: 0.156 us | ptrace_pre_handler();
<...>-264679 [001] 6541.125851: funcgraph_entry: 0.165 us | ptrace_pre_handler();
<...>-264680 [005] 6541.126074: funcgraph_entry: 0.188 us | ptrace_pre_handler();
<...>-264681 [001] 6541.126309: funcgraph_entry: 0.238 us | ptrace_pre_handler();
<...>-264682 [002] 6541.126494: funcgraph_entry: 0.148 us | ptrace_pre_handler();
<...>-264683 [001] 6541.126931: funcgraph_entry: 0.176 us | ptrace_pre_handler();
<...>-264684 [001] 6541.127129: funcgraph_entry: 0.100 us | ptrace_pre_handler();
<...>-264685 [001] 6541.127312: funcgraph_entry: 0.284 us | ptrace_pre_handler();
<...>-264686 [001] 6541.127855: funcgraph_entry: 0.189 us | ptrace_pre_handler();
<...>-264687 [001] 6541.128048: funcgraph_entry: 0.189 us | ptrace_pre_handler();
<...>-264688 [001] 6541.128242: funcgraph_entry: 0.154 us | ptrace_pre_handler();
<...>-264689 [006] 6541.128503: funcgraph_entry: 0.260 us | ptrace_pre_handler();
<...>-264690 [001] 6541.128853: funcgraph_entry: 0.211 us | ptrace_pre_handler();
<...>-264691 [003] 6541.129114: funcgraph_entry: 0.197 us | ptrace_pre_handler();
<...>-264692 [005] 6541.129400: funcgraph_entry: 0.175 us | ptrace_pre_handler();
<...>-264693 [001] 6541.129987: funcgraph_entry: 0.197 us | ptrace_pre_handler();
<...>-264694 [005] 6541.130290: funcgraph_entry: 0.276 us | ptrace_pre_handler();
<...>-264695 [006] 6541.130620: funcgraph_entry: 0.249 us | ptrace_pre_handler();
<...>-264696 [001] 6541.130843: funcgraph_entry: 0.201 us | ptrace_pre_handler();
<...>-264697 [003] 6541.131052: funcgraph_entry: 0.091 us | ptrace_pre_handler();
<...>-264698 [001] 6541.131265: funcgraph_entry: 0.199 us | ptrace_pre_handler();
<...>-264699 [001] 6541.131454: funcgraph_entry: 0.238 us | ptrace_pre_handler();
<...>-264700 [000] 6541.131902: funcgraph_entry: 0.257 us | ptrace_pre_handler();
<...>-264701 [001] 6541.132138: funcgraph_entry: 0.168 us | ptrace_pre_handler();
<...>-264702 [001] 6541.132323: funcgraph_entry: 0.132 us | ptrace_pre_handler();
<...>-264703 [001] 6541.132503: funcgraph_entry: 0.139 us | ptrace_pre_handler();
<...>-264704 [001] 6541.132898: funcgraph_entry: 0.308 us | ptrace_pre_handler();
<...>-264705 [001] 6541.133103: funcgraph_entry: 0.194 us | ptrace_pre_handler();
<...>-264706 [001] 6541.133287: funcgraph_entry: 0.095 us | ptrace_pre_handler();
<...>-264707 [001] 6541.133461: funcgraph_entry: 0.193 us | ptrace_pre_handler();
<...>-264708 [001] 6541.133821: funcgraph_entry: 0.187 us | ptrace_pre_handler();
<...>-264709 [001] 6541.134085: funcgraph_entry: 0.239 us | ptrace_pre_handler();
<...>-264710 [004] 6541.134347: funcgraph_entry: 0.225 us | ptrace_pre_handler();
<...>-264711 [001] 6541.134686: funcgraph_entry: 0.192 us | ptrace_pre_handler();
<...>-264712 [005] 6541.135044: funcgraph_entry: 0.222 us | ptrace_pre_handler();
<...>-264713 [006] 6541.135288: funcgraph_entry: 0.202 us | ptrace_pre_handler();
<...>-264714 [002] 6541.135522: funcgraph_entry: 0.189 us | ptrace_pre_handler();
<...>-264715 [005] 6541.135871: funcgraph_entry: 0.268 us | ptrace_pre_handler();
<...>-264716 [004] 6541.136112: funcgraph_entry: 0.219 us | ptrace_pre_handler();
<...>-264717 [006] 6541.136382: funcgraph_entry: 0.255 us | ptrace_pre_handler();
<...>-264718 [007] 6541.137144: funcgraph_entry: 0.166 us | ptrace_pre_handler();
<...>-264719 [006] 6541.137386: funcgraph_entry: 0.175 us | ptrace_pre_handler();
<...>-264720 [007] 6541.137666: funcgraph_entry: 0.245 us | ptrace_pre_handler();
<...>-264721 [004] 6541.137878: funcgraph_entry: 0.182 us | ptrace_pre_handler();
<...>-264722 [001] 6541.138110: funcgraph_entry: 0.106 us | ptrace_pre_handler();
<...>-264723 [002] 6541.138337: funcgraph_entry: 0.217 us | ptrace_pre_handler();
<...>-264724 [006] 6541.138714: funcgraph_entry: 0.205 us | ptrace_pre_handler();
<...>-264725 [001] 6541.138930: funcgraph_entry: 0.131 us | ptrace_pre_handler();
<...>-264726 [001] 6541.139137: funcgraph_entry: 0.088 us | ptrace_pre_handler();
<...>-264727 [000] 6541.139339: funcgraph_entry: 0.211 us | ptrace_pre_handler();
<...>-264728 [004] 6541.139738: funcgraph_entry: 0.141 us | ptrace_pre_handler();
<...>-264729 [001] 6541.140044: funcgraph_entry: 0.261 us | ptrace_pre_handler();
<...>-264730 [001] 6541.140270: funcgraph_entry: 0.212 us | ptrace_pre_handler();
<...>-264731 [001] 6541.140496: funcgraph_entry: 0.215 us | ptrace_pre_handler();
<...>-264733 [002] 6541.148476: funcgraph_entry: 0.251 us | ptrace_pre_handler();
<...>-264733 [002] 6541.148498: funcgraph_entry: 0.104 us | ptrace_pre_handler();
<...>-264733 [002] 6541.148511: funcgraph_entry: 0.102 us | ptrace_pre_handler();
<...>-264733 [002] 6541.148546: funcgraph_entry: 0.080 us | ptrace_pre_handler();
<...>-264744 [006] 6541.850469: funcgraph_entry: 0.170 us | ptrace_pre_handler();
<...>-264744 [006] 6541.850494: funcgraph_entry: 0.057 us | ptrace_pre_handler();
<...>-264744 [006] 6541.850507: funcgraph_entry: 0.061 us | ptrace_pre_handler();
<...>-264744 [006] 6541.850511: funcgraph_entry: 0.072 us | ptrace_pre_handler();
<...>-264744 [006] 6541.850517: funcgraph_entry: 0.054 us | ptrace_pre_handler();
<...>-264749 [004] 6541.863739: funcgraph_entry: 0.218 us | ptrace_pre_handler();
<...>-264748 [003] 6541.863774: funcgraph_entry: 0.183 us | ptrace_pre_handler();
<...>-264750 [004] 6541.864322: funcgraph_entry: 0.271 us | ptrace_pre_handler();
<...>-264748 [003] 6541.864346: funcgraph_entry: 0.107 us | ptrace_pre_handler();
<...>-264751 [002] 6541.864825: funcgraph_entry: 0.236 us | ptrace_pre_handler();
<...>-264748 [003] 6541.864857: funcgraph_entry: 0.105 us | ptrace_pre_handler();
<...>-264752 [000] 6541.865157: funcgraph_entry: 0.217 us | ptrace_pre_handler();
<...>-264748 [003] 6541.865181: funcgraph_entry: 0.075 us | ptrace_pre_handler();
<...>-264754 [002] 6541.870213: funcgraph_entry: 0.181 us | ptrace_pre_handler();
<...>-264755 [004] 6541.870733: funcgraph_entry: 0.631 us | ptrace_pre_handler();
<...>-264755 [004] 6541.870740: funcgraph_entry: 0.072 us | ptrace_pre_handler();
<...>-264758 [002] 6541.881107: funcgraph_entry: 0.141 us | ptrace_pre_handler();
<...>-264759 [007] 6541.882003: funcgraph_entry: 0.166 us | ptrace_pre_handler();
<...>-264760 [001] 6541.882347: funcgraph_entry: 0.312 us | ptrace_pre_handler();
<...>-264761 [004] 6541.882833: funcgraph_entry: 0.100 us | ptrace_pre_handler();
<...>-264762 [007] 6541.883050: funcgraph_entry: 0.122 us | ptrace_pre_handler();
<...>-264763 [007] 6541.883239: funcgraph_entry: 0.150 us | ptrace_pre_handler();
<...>-264764 [007] 6541.883622: funcgraph_entry: 0.202 us | ptrace_pre_handler();
<...>-264765 [007] 6541.883851: funcgraph_entry: 0.137 us | ptrace_pre_handler();
<...>-264766 [007] 6541.884025: funcgraph_entry: 0.166 us | ptrace_pre_handler();
<...>-264767 [007] 6541.884196: funcgraph_entry: 0.121 us | ptrace_pre_handler();
<...>-264768 [007] 6541.884429: funcgraph_entry: 0.126 us | ptrace_pre_handler();
<...>-264769 [007] 6541.885056: funcgraph_entry: 0.180 us | ptrace_pre_handler();
<...>-264770 [007] 6541.885317: funcgraph_entry: 0.179 us | ptrace_pre_handler();
<...>-264771 [007] 6541.885684: funcgraph_entry: 0.103 us | ptrace_pre_handler();
<...>-264772 [007] 6541.885898: funcgraph_entry: 0.170 us | ptrace_pre_handler();
<...>-264773 [007] 6541.886408: funcgraph_entry: 0.128 us | ptrace_pre_handler();
<...>-264774 [007] 6541.886736: funcgraph_entry: 0.138 us | ptrace_pre_handler();
<...>-264775 [007] 6541.886962: funcgraph_entry: 0.148 us | ptrace_pre_handler();
<...>-264776 [007] 6541.887136: funcgraph_entry: 0.162 us | ptrace_pre_handler();
<...>-264777 [004] 6541.887348: funcgraph_entry: 0.170 us | ptrace_pre_handler();
<...>-264778 [005] 6541.887635: funcgraph_entry: 0.141 us | ptrace_pre_handler();
<...>-264779 [004] 6541.887855: funcgraph_entry: 0.252 us | ptrace_pre_handler();
<...>-264780 [005] 6541.888040: funcgraph_entry: 0.209 us | ptrace_pre_handler();
<...>-264781 [005] 6541.888200: funcgraph_entry: 0.201 us | ptrace_pre_handler();
<...>-264782 [005] 6541.888363: funcgraph_entry: 0.059 us | ptrace_pre_handler();
<...>-264783 [005] 6541.888515: funcgraph_entry: 0.152 us | ptrace_pre_handler();
<...>-264784 [005] 6541.888781: funcgraph_entry: 0.149 us | ptrace_pre_handler();
<...>-264785 [005] 6541.888941: funcgraph_entry: 0.203 us | ptrace_pre_handler();
<...>-264786 [005] 6541.889098: funcgraph_entry: 0.151 us | ptrace_pre_handler();
<...>-264787 [005] 6541.889245: funcgraph_entry: 0.146 us | ptrace_pre_handler();
<...>-264788 [005] 6541.889424: funcgraph_entry: 0.249 us | ptrace_pre_handler();
<...>-264789 [005] 6541.889591: funcgraph_entry: 0.181 us | ptrace_pre_handler();
<...>-264790 [005] 6541.889746: funcgraph_entry: 0.193 us | ptrace_pre_handler();
<...>-264791 [005] 6541.889929: funcgraph_entry: 0.096 us | ptrace_pre_handler();
<...>-264792 [002] 6541.890136: funcgraph_entry: 0.170 us | ptrace_pre_handler();
<...>-264793 [007] 6541.890335: funcgraph_entry: 0.104 us | ptrace_pre_handler();
<...>-264794 [007] 6541.890511: funcgraph_entry: 0.192 us | ptrace_pre_handler();
<...>-264795 [007] 6541.890913: funcgraph_entry: 0.213 us | ptrace_pre_handler();
<...>-264796 [007] 6541.891065: funcgraph_entry: 0.219 us | ptrace_pre_handler();
<...>-264797 [007] 6541.891223: funcgraph_entry: 0.154 us | ptrace_pre_handler();
<...>-264798 [002] 6541.891421: funcgraph_entry: 0.243 us | ptrace_pre_handler();
<...>-264799 [002] 6541.891837: funcgraph_entry: 0.216 us | ptrace_pre_handler();
<...>-264800 [002] 6541.892110: funcgraph_entry: 0.165 us | ptrace_pre_handler();
<...>-264801 [002] 6541.892298: funcgraph_entry: 0.253 us | ptrace_pre_handler();
<...>-264802 [002] 6541.892495: funcgraph_entry: 0.235 us | ptrace_pre_handler();
<...>-264803 [002] 6541.892899: funcgraph_entry: 0.173 us | ptrace_pre_handler();
<...>-264804 [002] 6541.893125: funcgraph_entry: 0.162 us | ptrace_pre_handler();
<...>-264805 [002] 6541.893291: funcgraph_entry: 0.114 us | ptrace_pre_handler();
<...>-264806 [002] 6541.893467: funcgraph_entry: 0.255 us | ptrace_pre_handler();
<...>-264807 [005] 6541.893918: funcgraph_entry: 0.226 us | ptrace_pre_handler();
<...>-264808 [007] 6541.894162: funcgraph_entry: 0.188 us | ptrace_pre_handler();
<...>-264809 [005] 6541.894360: funcgraph_entry: 0.195 us | ptrace_pre_handler();
<...>-264810 [005] 6541.894533: funcgraph_entry: 0.206 us | ptrace_pre_handler();
<...>-264811 [005] 6541.894929: funcgraph_entry: 0.187 us | ptrace_pre_handler();
<...>-264812 [005] 6541.895089: funcgraph_entry: 0.204 us | ptrace_pre_handler();
<...>-264813 [005] 6541.895244: funcgraph_entry: 0.258 us | ptrace_pre_handler();
<...>-264814 [005] 6541.895400: funcgraph_entry: 0.196 us | ptrace_pre_handler();
<...>-264815 [005] 6541.895679: funcgraph_entry: 0.248 us | ptrace_pre_handler();
<...>-264816 [005] 6541.895986: funcgraph_entry: 0.154 us | ptrace_pre_handler();
<...>-264817 [005] 6541.896146: funcgraph_entry: 0.190 us | ptrace_pre_handler();
<...>-264818 [005] 6541.896328: funcgraph_entry: 0.272 us | ptrace_pre_handler();
<...>-264819 [005] 6541.896506: funcgraph_entry: 0.118 us | ptrace_pre_handler();
<...>-264820 [005] 6541.896806: funcgraph_entry: 0.156 us | ptrace_pre_handler();
<...>-264822 [004] 6541.903267: funcgraph_entry: 0.129 us | ptrace_pre_handler();
<...>-264822 [004] 6541.903281: funcgraph_entry: 0.057 us | ptrace_pre_handler();
<...>-264822 [004] 6541.903290: funcgraph_entry: 0.099 us | ptrace_pre_handler();
<...>-264822 [004] 6541.903307: funcgraph_entry: 0.055 us | ptrace_pre_handler();
<...>-264833 [001] 6542.525813: funcgraph_entry: 0.243 us | ptrace_pre_handler();
<...>-264833 [001] 6542.525839: funcgraph_entry: 0.055 us | ptrace_pre_handler();
<...>-264833 [001] 6542.545979: funcgraph_entry: 0.388 us | ptrace_pre_handler();
<...>-264833 [001] 6542.546014: funcgraph_entry: 0.058 us | ptrace_pre_handler();
<...>-264833 [001] 6542.546019: funcgraph_entry: 0.047 us | ptrace_pre_handler();
<...>-264838 [005] 6542.556669: funcgraph_entry: 0.156 us | ptrace_pre_handler();
<...>-264837 [006] 6542.556713: funcgraph_entry: 0.203 us | ptrace_pre_handler();
<...>-264839 [003] 6542.556998: funcgraph_entry: 0.208 us | ptrace_pre_handler();
<...>-264837 [006] 6542.557024: funcgraph_entry: 0.139 us | ptrace_pre_handler();
<...>-264840 [003] 6542.557286: funcgraph_entry: 0.180 us | ptrace_pre_handler();
<...>-264837 [005] 6542.557329: funcgraph_entry: 0.268 us | ptrace_pre_handler();
<...>-264841 [003] 6542.557758: funcgraph_entry: 0.182 us | ptrace_pre_handler();
<...>-264837 [005] 6542.557775: funcgraph_entry: 0.107 us | ptrace_pre_handler();
<...>-264843 [007] 6542.562527: funcgraph_entry: 0.140 us | ptrace_pre_handler();
<...>-264844 [002] 6542.562818: funcgraph_entry: 0.111 us | ptrace_pre_handler();
<...>-264844 [002] 6542.562823: funcgraph_entry: 0.072 us | ptrace_pre_handler();
<...>-264847 [000] 6542.571298: funcgraph_entry: 0.152 us | ptrace_pre_handler();
<...>-264848 [002] 6542.571832: funcgraph_entry: 0.279 us | ptrace_pre_handler();
<...>-264849 [001] 6542.572095: funcgraph_entry: 0.147 us | ptrace_pre_handler();
<...>-264850 [003] 6542.572361: funcgraph_entry: 0.190 us | ptrace_pre_handler();
<...>-264851 [007] 6542.572887: funcgraph_entry: 0.250 us | ptrace_pre_handler();
<...>-264852 [001] 6542.573127: funcgraph_entry: 0.258 us | ptrace_pre_handler();
<...>-264853 [005] 6542.573346: funcgraph_entry: 0.175 us | ptrace_pre_handler();
<...>-264854 [003] 6542.573710: funcgraph_entry: 0.197 us | ptrace_pre_handler();
<...>-264855 [001] 6542.573985: funcgraph_entry: 0.275 us | ptrace_pre_handler();
<...>-264856 [002] 6542.574213: funcgraph_entry: 0.189 us | ptrace_pre_handler();
<...>-264857 [003] 6542.574474: funcgraph_entry: 0.160 us | ptrace_pre_handler();
<...>-264858 [005] 6542.574859: funcgraph_entry: 0.156 us | ptrace_pre_handler();
<...>-264859 [000] 6542.575065: funcgraph_entry: 0.169 us | ptrace_pre_handler();
<...>-264860 [001] 6542.575268: funcgraph_entry: 0.200 us | ptrace_pre_handler();
<...>-264861 [000] 6542.575462: funcgraph_entry: 0.164 us | ptrace_pre_handler();
<...>-264862 [001] 6542.575768: funcgraph_entry: 0.229 us | ptrace_pre_handler();
<...>-264863 [000] 6542.575982: funcgraph_entry: 0.206 us | ptrace_pre_handler();
<...>-264864 [001] 6542.576296: funcgraph_entry: 0.252 us | ptrace_pre_handler();
<...>-264865 [000] 6542.576743: funcgraph_entry: 0.240 us | ptrace_pre_handler();
<...>-264866 [001] 6542.576993: funcgraph_entry: 0.323 us | ptrace_pre_handler();
<...>-264867 [000] 6542.577195: funcgraph_entry: 0.196 us | ptrace_pre_handler();
<...>-264868 [001] 6542.577706: funcgraph_entry: 0.296 us | ptrace_pre_handler();
<...>-264869 [002] 6542.577988: funcgraph_entry: 0.264 us | ptrace_pre_handler();
<...>-264870 [001] 6542.578226: funcgraph_entry: 0.204 us | ptrace_pre_handler();
<...>-264871 [002] 6542.578488: funcgraph_entry: 0.305 us | ptrace_pre_handler();
<...>-264872 [007] 6542.579046: funcgraph_entry: 0.273 us | ptrace_pre_handler();
<...>-264873 [000] 6542.579307: funcgraph_entry: 0.217 us | ptrace_pre_handler();
<...>-264874 [003] 6542.579713: funcgraph_entry: 0.333 us | ptrace_pre_handler();
<...>-264875 [005] 6542.580011: funcgraph_entry: 0.218 us | ptrace_pre_handler();
<...>-264876 [007] 6542.580257: funcgraph_entry: 0.096 us | ptrace_pre_handler();
<...>-264877 [000] 6542.580496: funcgraph_entry: 0.095 us | ptrace_pre_handler();
<...>-264878 [002] 6542.580897: funcgraph_entry: 0.181 us | ptrace_pre_handler();
<...>-264879 [007] 6542.581140: funcgraph_entry: 0.288 us | ptrace_pre_handler();
<...>-264880 [007] 6542.581360: funcgraph_entry: 0.158 us | ptrace_pre_handler();
<...>-264881 [001] 6542.581808: funcgraph_entry: 0.086 us | ptrace_pre_handler();
<...>-264882 [002] 6542.582409: funcgraph_entry: 0.075 us | ptrace_pre_handler();
<...>-264883 [003] 6542.582932: funcgraph_entry: 0.086 us | ptrace_pre_handler();
<...>-264884 [005] 6542.583184: funcgraph_entry: 0.081 us | ptrace_pre_handler();
<...>-264885 [007] 6542.583413: funcgraph_entry: 0.262 us | ptrace_pre_handler();
<...>-264886 [003] 6542.583797: funcgraph_entry: 0.159 us | ptrace_pre_handler();
<...>-264887 [001] 6542.584033: funcgraph_entry: 0.285 us | ptrace_pre_handler();
<...>-264888 [004] 6542.584353: funcgraph_entry: 0.257 us | ptrace_pre_handler();
<...>-264889 [003] 6542.584790: funcgraph_entry: 0.127 us | ptrace_pre_handler();
<...>-264890 [004] 6542.585021: funcgraph_entry: 0.203 us | ptrace_pre_handler();
<...>-264891 [003] 6542.585218: funcgraph_entry: 0.231 us | ptrace_pre_handler();
<...>-264892 [000] 6542.585419: funcgraph_entry: 0.083 us | ptrace_pre_handler();
<...>-264893 [001] 6542.585895: funcgraph_entry: 0.094 us | ptrace_pre_handler();
<...>-264894 [003] 6542.586206: funcgraph_entry: 0.150 us | ptrace_pre_handler();
<...>-264895 [007] 6542.586444: funcgraph_entry: 0.192 us | ptrace_pre_handler();
<...>-264896 [005] 6542.586920: funcgraph_entry: 0.109 us | ptrace_pre_handler();
<...>-264897 [007] 6542.587172: funcgraph_entry: 0.155 us | ptrace_pre_handler();
<...>-264898 [007] 6542.587410: funcgraph_entry: 0.138 us | ptrace_pre_handler();
<...>-264899 [007] 6542.587819: funcgraph_entry: 0.105 us | ptrace_pre_handler();
<...>-264900 [007] 6542.588007: funcgraph_entry: 0.176 us | ptrace_pre_handler();
<...>-264901 [007] 6542.588177: funcgraph_entry: 0.164 us | ptrace_pre_handler();
<...>-264902 [005] 6542.588367: funcgraph_entry: 0.234 us | ptrace_pre_handler();
<...>-264903 [005] 6542.588825: funcgraph_entry: 0.257 us | ptrace_pre_handler();
<...>-264904 [007] 6542.589014: funcgraph_entry: 0.086 us | ptrace_pre_handler();
<...>-264905 [001] 6542.589271: funcgraph_entry: 0.081 us | ptrace_pre_handler();
<...>-264906 [001] 6542.589776: funcgraph_entry: 0.223 us | ptrace_pre_handler();
<...>-264907 [007] 6542.590066: funcgraph_entry: 0.128 us | ptrace_pre_handler();
<...>-264908 [005] 6542.590307: funcgraph_entry: 0.162 us | ptrace_pre_handler();
<...>-264909 [002] 6542.590514: funcgraph_entry: 0.088 us | ptrace_pre_handler();
<...>-264911 [001] 6542.596346: funcgraph_entry: 0.121 us | ptrace_pre_handler();
<...>-264911 [001] 6542.596362: funcgraph_entry: 0.081 us | ptrace_pre_handler();
<...>-264911 [001] 6542.596368: funcgraph_entry: 0.055 us | ptrace_pre_handler();
<...>-264911 [001] 6542.596388: funcgraph_entry: 0.054 us | ptrace_pre_handler();
<...>-264922 [001] 6543.219055: funcgraph_entry: 0.138 us | ptrace_pre_handler();
<...>-264922 [001] 6543.219430: funcgraph_entry: 0.092 us | ptrace_pre_handler();
<...>-264922 [001] 6543.219463: funcgraph_entry: 0.067 us | ptrace_pre_handler();
<...>-264922 [001] 6543.219470: funcgraph_entry: 0.056 us | ptrace_pre_handler();
<...>-264922 [001] 6543.219478: funcgraph_entry: 0.070 us | ptrace_pre_handler();
<...>-264927 [003] 6543.234101: funcgraph_entry: 0.085 us | ptrace_pre_handler();
<...>-264926 [004] 6543.234136: funcgraph_entry: 0.245 us | ptrace_pre_handler();
<...>-264928 [002] 6543.234454: funcgraph_entry: 0.193 us | ptrace_pre_handler();
<...>-264926 [004] 6543.234478: funcgraph_entry: 0.086 us | ptrace_pre_handler();
<...>-264929 [000] 6543.237308: funcgraph_entry: 0.164 us | ptrace_pre_handler();
<...>-264926 [001] 6543.237352: funcgraph_entry: 0.212 us | ptrace_pre_handler();
<...>-264930 [001] 6543.237671: funcgraph_entry: 0.083 us | ptrace_pre_handler();
<...>-264926 [002] 6543.237699: funcgraph_entry: 0.153 us | ptrace_pre_handler();
<...>-264932 [005] 6543.242510: funcgraph_entry: 0.095 us | ptrace_pre_handler();
<...>-264933 [000] 6543.242936: funcgraph_entry: 0.188 us | ptrace_pre_handler();
<...>-264933 [000] 6543.242943: funcgraph_entry: 0.060 us | ptrace_pre_handler();
<...>-264936 [005] 6543.251278: funcgraph_entry: 0.076 us | ptrace_pre_handler();
<...>-264937 [002] 6543.251713: funcgraph_entry: 0.138 us | ptrace_pre_handler();
<...>-264938 [004] 6543.251957: funcgraph_entry: 0.173 us | ptrace_pre_handler();
<...>-264939 [002] 6543.252166: funcgraph_entry: 0.128 us | ptrace_pre_handler();
<...>-264940 [004] 6543.252370: funcgraph_entry: 0.198 us | ptrace_pre_handler();
<...>-264941 [002] 6543.252583: funcgraph_entry: 0.206 us | ptrace_pre_handler();
<...>-264942 [004] 6543.252798: funcgraph_entry: 0.275 us | ptrace_pre_handler();
<...>-264943 [002] 6543.253008: funcgraph_entry: 0.225 us | ptrace_pre_handler();
<...>-264944 [004] 6543.253198: funcgraph_entry: 0.190 us | ptrace_pre_handler();
<...>-264945 [002] 6543.253382: funcgraph_entry: 0.324 us | ptrace_pre_handler();
<...>-264946 [004] 6543.253680: funcgraph_entry: 0.099 us | ptrace_pre_handler();
<...>-264947 [002] 6543.253887: funcgraph_entry: 0.256 us | ptrace_pre_handler();
<...>-264948 [004] 6543.254309: funcgraph_entry: 0.154 us | ptrace_pre_handler();
<...>-264949 [005] 6543.254677: funcgraph_entry: 0.161 us | ptrace_pre_handler();
<...>-264950 [002] 6543.254912: funcgraph_entry: 0.138 us | ptrace_pre_handler();
<...>-264951 [004] 6543.255235: funcgraph_entry: 0.224 us | ptrace_pre_handler();
<...>-264952 [007] 6543.255452: funcgraph_entry: 0.206 us | ptrace_pre_handler();
<...>-264953 [006] 6543.255795: funcgraph_entry: 0.238 us | ptrace_pre_handler();
<...>-264954 [002] 6543.256004: funcgraph_entry: 0.264 us | ptrace_pre_handler();
<...>-264955 [004] 6543.256198: funcgraph_entry: 0.145 us | ptrace_pre_handler();
<...>-264956 [005] 6543.256379: funcgraph_entry: 0.143 us | ptrace_pre_handler();
<...>-264957 [004] 6543.256639: funcgraph_entry: 0.187 us | ptrace_pre_handler();
<...>-264958 [005] 6543.256818: funcgraph_entry: 0.129 us | ptrace_pre_handler();
<...>-264959 [004] 6543.257003: funcgraph_entry: 0.202 us | ptrace_pre_handler();
<...>-264960 [005] 6543.257199: funcgraph_entry: 0.168 us | ptrace_pre_handler();
<...>-264961 [004] 6543.257382: funcgraph_entry: 0.158 us | ptrace_pre_handler();
<...>-264962 [005] 6543.257701: funcgraph_entry: 0.216 us | ptrace_pre_handler();
<...>-264963 [005] 6543.257892: funcgraph_entry: 0.145 us | ptrace_pre_handler();
<...>-264964 [004] 6543.258099: funcgraph_entry: 0.106 us | ptrace_pre_handler();
<...>-264965 [007] 6543.258440: funcgraph_entry: 0.203 us | ptrace_pre_handler();
<...>-264966 [000] 6543.258769: funcgraph_entry: 0.301 us | ptrace_pre_handler();
<...>-264967 [007] 6543.259038: funcgraph_entry: 0.149 us | ptrace_pre_handler();
<...>-264968 [000] 6543.259312: funcgraph_entry: 0.168 us | ptrace_pre_handler();
<...>-264969 [007] 6543.259737: funcgraph_entry: 0.227 us | ptrace_pre_handler();
<...>-264970 [000] 6543.259959: funcgraph_entry: 0.272 us | ptrace_pre_handler();
<...>-264971 [007] 6543.260238: funcgraph_entry: 0.158 us | ptrace_pre_handler();
<...>-264972 [000] 6543.260424: funcgraph_entry: 0.224 us | ptrace_pre_handler();
<...>-264973 [007] 6543.260724: funcgraph_entry: 0.130 us | ptrace_pre_handler();
<...>-264974 [002] 6543.260952: funcgraph_entry: 0.164 us | ptrace_pre_handler();
<...>-264975 [000] 6543.261140: funcgraph_entry: 0.112 us | ptrace_pre_handler();
<...>-264976 [002] 6543.261331: funcgraph_entry: 0.142 us | ptrace_pre_handler();
<...>-264977 [004] 6543.261514: funcgraph_entry: 0.158 us | ptrace_pre_handler();
<...>-264978 [005] 6543.261728: funcgraph_entry: 0.144 us | ptrace_pre_handler();
<...>-264979 [004] 6543.261902: funcgraph_entry: 0.101 us | ptrace_pre_handler();
<...>-264980 [005] 6543.262089: funcgraph_entry: 0.083 us | ptrace_pre_handler();
<...>-264981 [002] 6543.262270: funcgraph_entry: 0.207 us | ptrace_pre_handler();
<...>-264982 [004] 6543.262445: funcgraph_entry: 0.117 us | ptrace_pre_handler();
<...>-264983 [005] 6543.262775: funcgraph_entry: 0.169 us | ptrace_pre_handler();
<...>-264984 [001] 6543.262958: funcgraph_entry: 0.078 us | ptrace_pre_handler();
<...>-264985 [005] 6543.263153: funcgraph_entry: 0.211 us | ptrace_pre_handler();
<...>-264986 [002] 6543.263328: funcgraph_entry: 0.094 us | ptrace_pre_handler();
<...>-264987 [005] 6543.263513: funcgraph_entry: 0.078 us | ptrace_pre_handler();
<...>-264988 [005] 6543.263709: funcgraph_entry: 0.142 us | ptrace_pre_handler();
<...>-264989 [005] 6543.263884: funcgraph_entry: 0.219 us | ptrace_pre_handler();
<...>-264990 [005] 6543.264060: funcgraph_entry: 0.221 us | ptrace_pre_handler();
<...>-264991 [005] 6543.264236: funcgraph_entry: 0.130 us | ptrace_pre_handler();
<...>-264992 [007] 6543.264656: funcgraph_entry: 0.171 us | ptrace_pre_handler();
<...>-264993 [005] 6543.265068: funcgraph_entry: 0.158 us | ptrace_pre_handler();
<...>-264994 [005] 6543.265281: funcgraph_entry: 0.189 us | ptrace_pre_handler();
<...>-264995 [000] 6543.265507: funcgraph_entry: 0.195 us | ptrace_pre_handler();
<...>-264996 [003] 6543.266343: funcgraph_entry: 0.199 us | ptrace_pre_handler();
<...>-264997 [007] 6543.266825: funcgraph_entry: 0.161 us | ptrace_pre_handler();
<...>-264998 [007] 6543.267041: funcgraph_entry: 0.150 us | ptrace_pre_handler();
<...>-265000 [005] 6543.276182: funcgraph_entry: 0.240 us | ptrace_pre_handler();
<...>-265000 [005] 6543.276207: funcgraph_entry: 0.064 us | ptrace_pre_handler();
<...>-265000 [005] 6543.276216: funcgraph_entry: 0.061 us | ptrace_pre_handler();
<...>-265000 [005] 6543.276239: funcgraph_entry: 0.074 us | ptrace_pre_handler();
<...>-265057 [002] 6543.904272: funcgraph_entry: 0.185 us | ptrace_pre_handler();
<...>-265057 [002] 6543.904330: funcgraph_entry: 0.072 us | ptrace_pre_handler();
<...>-265057 [002] 6543.942039: funcgraph_entry: 0.877 us | ptrace_pre_handler();
<...>-265057 [002] 6543.942053: funcgraph_entry: 0.046 us | ptrace_pre_handler();
<...>-265057 [002] 6543.942059: funcgraph_entry: 0.049 us | ptrace_pre_handler();
<...>-265073 [005] 6543.952555: funcgraph_entry: 0.222 us | ptrace_pre_handler();
<...>-265072 [006] 6543.952588: funcgraph_entry: 0.109 us | ptrace_pre_handler();
<...>-265074 [006] 6543.952848: funcgraph_entry: 0.063 us | ptrace_pre_handler();
<...>-265072 [000] 6543.952875: funcgraph_entry: 0.122 us | ptrace_pre_handler();
<...>-265075 [000] 6543.953131: funcgraph_entry: 0.089 us | ptrace_pre_handler();
<...>-265072 [001] 6543.953158: funcgraph_entry: 0.116 us | ptrace_pre_handler();
<...>-265076 [000] 6543.953447: funcgraph_entry: 0.140 us | ptrace_pre_handler();
<...>-265072 [003] 6543.953470: funcgraph_entry: 0.114 us | ptrace_pre_handler();
<...>-265078 [002] 6543.959025: funcgraph_entry: 0.143 us | ptrace_pre_handler();
<...>-265079 [002] 6543.959270: funcgraph_entry: 0.190 us | ptrace_pre_handler();
<...>-265079 [002] 6543.959274: funcgraph_entry: 0.057 us | ptrace_pre_handler();
<...>-265082 [002] 6543.967530: funcgraph_entry: 0.145 us | ptrace_pre_handler();
<...>-265083 [001] 6543.967948: funcgraph_entry: 0.153 us | ptrace_pre_handler();
<...>-265084 [002] 6543.968187: funcgraph_entry: 0.174 us | ptrace_pre_handler();
<...>-265085 [000] 6543.968442: funcgraph_entry: 0.153 us | ptrace_pre_handler();
<...>-265086 [002] 6543.968916: funcgraph_entry: 0.175 us | ptrace_pre_handler();
<...>-265087 [000] 6543.969121: funcgraph_entry: 0.078 us | ptrace_pre_handler();
<...>-265088 [002] 6543.969326: funcgraph_entry: 0.093 us | ptrace_pre_handler();
<...>-265089 [000] 6543.969762: funcgraph_entry: 0.143 us | ptrace_pre_handler();
<...>-265090 [000] 6543.969995: funcgraph_entry: 0.140 us | ptrace_pre_handler();
<...>-265091 [003] 6543.970321: funcgraph_entry: 0.076 us | ptrace_pre_handler();
<...>-265092 [000] 6543.970697: funcgraph_entry: 0.127 us | ptrace_pre_handler();
<...>-265093 [001] 6543.970975: funcgraph_entry: 0.304 us | ptrace_pre_handler();
<...>-265094 [000] 6543.971198: funcgraph_entry: 0.171 us | ptrace_pre_handler();
<...>-265095 [003] 6543.971403: funcgraph_entry: 0.091 us | ptrace_pre_handler();
<...>-265096 [000] 6543.971814: funcgraph_entry: 0.227 us | ptrace_pre_handler();
<...>-265097 [000] 6543.972011: funcgraph_entry: 0.231 us | ptrace_pre_handler();
<...>-265098 [000] 6543.972199: funcgraph_entry: 0.199 us | ptrace_pre_handler();
<...>-265099 [000] 6543.972390: funcgraph_entry: 0.180 us | ptrace_pre_handler();
<...>-265100 [000] 6543.972565: funcgraph_entry: 0.156 us | ptrace_pre_handler();
<...>-265101 [000] 6543.972854: funcgraph_entry: 0.182 us | ptrace_pre_handler();
<...>-265102 [000] 6543.973023: funcgraph_entry: 0.186 us | ptrace_pre_handler();
<...>-265103 [000] 6543.973188: funcgraph_entry: 0.122 us | ptrace_pre_handler();
<...>-265104 [000] 6543.973360: funcgraph_entry: 0.205 us | ptrace_pre_handler();
<...>-265105 [000] 6543.973542: funcgraph_entry: 0.167 us | ptrace_pre_handler();
<...>-265106 [000] 6543.973714: funcgraph_entry: 0.150 us | ptrace_pre_handler();
<...>-265107 [000] 6543.973878: funcgraph_entry: 0.155 us | ptrace_pre_handler();
<...>-265108 [000] 6543.974059: funcgraph_entry: 0.210 us | ptrace_pre_handler();
<...>-265109 [000] 6543.974221: funcgraph_entry: 0.089 us | ptrace_pre_handler();
<...>-265110 [000] 6543.974390: funcgraph_entry: 0.120 us | ptrace_pre_handler();
<...>-265111 [000] 6543.974571: funcgraph_entry: 0.155 us | ptrace_pre_handler();
<...>-265112 [000] 6543.974736: funcgraph_entry: 0.250 us | ptrace_pre_handler();
<...>-265113 [000] 6543.974906: funcgraph_entry: 0.119 us | ptrace_pre_handler();
<...>-265114 [000] 6543.975072: funcgraph_entry: 0.147 us | ptrace_pre_handler();
<...>-265115 [000] 6543.975252: funcgraph_entry: 0.200 us | ptrace_pre_handler();
<...>-265116 [000] 6543.975423: funcgraph_entry: 0.281 us | ptrace_pre_handler();
<...>-265117 [000] 6543.975612: funcgraph_entry: 0.308 us | ptrace_pre_handler();
<...>-265118 [000] 6543.975799: funcgraph_entry: 0.260 us | ptrace_pre_handler();
<...>-265119 [000] 6543.975992: funcgraph_entry: 0.140 us | ptrace_pre_handler();
<...>-265120 [000] 6543.976146: funcgraph_entry: 0.214 us | ptrace_pre_handler();
<...>-265121 [000] 6543.976341: funcgraph_entry: 0.141 us | ptrace_pre_handler();
<...>-265122 [000] 6543.976547: funcgraph_entry: 0.135 us | ptrace_pre_handler();
<...>-265123 [000] 6543.976729: funcgraph_entry: 0.180 us | ptrace_pre_handler();
<...>-265124 [003] 6543.976996: funcgraph_entry: 0.224 us | ptrace_pre_handler();
<...>-265125 [002] 6543.977762: funcgraph_entry: 0.123 us | ptrace_pre_handler();
<...>-265126 [005] 6543.978033: funcgraph_entry: 0.114 us | ptrace_pre_handler();
<...>-265127 [002] 6543.978274: funcgraph_entry: 0.179 us | ptrace_pre_handler();
<...>-265128 [005] 6543.978496: funcgraph_entry: 0.226 us | ptrace_pre_handler();
<...>-265129 [005] 6543.978950: funcgraph_entry: 0.176 us | ptrace_pre_handler();
<...>-265130 [005] 6543.979144: funcgraph_entry: 0.200 us | ptrace_pre_handler();
<...>-265131 [005] 6543.979311: funcgraph_entry: 0.148 us | ptrace_pre_handler();
<...>-265132 [005] 6543.979477: funcgraph_entry: 0.147 us | ptrace_pre_handler();
<...>-265133 [005] 6543.979826: funcgraph_entry: 0.200 us | ptrace_pre_handler();
<...>-265134 [005] 6543.979988: funcgraph_entry: 0.199 us | ptrace_pre_handler();
<...>-265135 [005] 6543.980167: funcgraph_entry: 0.107 us | ptrace_pre_handler();
<...>-265136 [005] 6543.980351: funcgraph_entry: 0.086 us | ptrace_pre_handler();
<...>-265137 [005] 6543.980526: funcgraph_entry: 0.159 us | ptrace_pre_handler();
<...>-265138 [005] 6543.980914: funcgraph_entry: 0.210 us | ptrace_pre_handler();
<...>-265139 [005] 6543.981119: funcgraph_entry: 0.086 us | ptrace_pre_handler();
<...>-265140 [005] 6543.981281: funcgraph_entry: 0.075 us | ptrace_pre_handler();
<...>-265141 [005] 6543.981445: funcgraph_entry: 0.178 us | ptrace_pre_handler();
<...>-265142 [005] 6543.981636: funcgraph_entry: 0.067 us | ptrace_pre_handler();
<...>-265143 [005] 6543.981804: funcgraph_entry: 0.069 us | ptrace_pre_handler();
<...>-265144 [002] 6543.982026: funcgraph_entry: 0.211 us | ptrace_pre_handler();
<...>-265146 [006] 6543.988308: funcgraph_entry: 0.143 us | ptrace_pre_handler();
<...>-265146 [006] 6543.988322: funcgraph_entry: 0.075 us | ptrace_pre_handler();
<...>-265146 [006] 6543.988331: funcgraph_entry: 0.079 us | ptrace_pre_handler();
<...>-265146 [006] 6543.988349: funcgraph_entry: 0.072 us | ptrace_pre_handler();
<...>-265166 [000] 6544.664644: funcgraph_entry: 0.106 us | ptrace_pre_handler();
<...>-265166 [000] 6544.664676: funcgraph_entry: 0.048 us | ptrace_pre_handler();
<...>-265166 [000] 6544.664694: funcgraph_entry: 0.077 us | ptrace_pre_handler();
<...>-265166 [000] 6544.664698: funcgraph_entry: 0.054 us | ptrace_pre_handler();
<...>-265166 [000] 6544.664705: funcgraph_entry: 0.046 us | ptrace_pre_handler();
<...>-265171 [003] 6544.678801: funcgraph_entry: 0.134 us | ptrace_pre_handler();
<...>-265170 [001] 6544.678837: funcgraph_entry: 0.216 us | ptrace_pre_handler();
<...>-265172 [001] 6544.679269: funcgraph_entry: 0.514 us | ptrace_pre_handler();
<...>-265170 [002] 6544.679298: funcgraph_entry: 0.213 us | ptrace_pre_handler();
<...>-265173 [001] 6544.679707: funcgraph_entry: 0.189 us | ptrace_pre_handler();
<...>-265170 [002] 6544.679731: funcgraph_entry: 0.118 us | ptrace_pre_handler();
<...>-265174 [001] 6544.679993: funcgraph_entry: 0.121 us | ptrace_pre_handler();
<...>-265170 [002] 6544.680012: funcgraph_entry: 0.146 us | ptrace_pre_handler();
<...>-265176 [003] 6544.685105: funcgraph_entry: 0.347 us | ptrace_pre_handler();
<...>-265177 [007] 6544.685421: funcgraph_entry: 0.130 us | ptrace_pre_handler();
<...>-265177 [007] 6544.685426: funcgraph_entry: 0.054 us | ptrace_pre_handler();
<...>-265180 [006] 6544.695148: funcgraph_entry: 0.192 us | ptrace_pre_handler();
<...>-265181 [007] 6544.695754: funcgraph_entry: 0.309 us | ptrace_pre_handler();
<...>-265182 [002] 6544.696014: funcgraph_entry: 0.139 us | ptrace_pre_handler();
<...>-265183 [003] 6544.696239: funcgraph_entry: 0.213 us | ptrace_pre_handler();
<...>-265184 [002] 6544.696699: funcgraph_entry: 0.125 us | ptrace_pre_handler();
<...>-265185 [003] 6544.696925: funcgraph_entry: 0.216 us | ptrace_pre_handler();
<...>-265186 [002] 6544.697157: funcgraph_entry: 0.106 us | ptrace_pre_handler();
<...>-265187 [003] 6544.697388: funcgraph_entry: 0.203 us | ptrace_pre_handler();
<...>-265188 [002] 6544.697886: funcgraph_entry: 0.250 us | ptrace_pre_handler();
<...>-265189 [007] 6544.698158: funcgraph_entry: 0.229 us | ptrace_pre_handler();
<...>-265190 [006] 6544.698475: funcgraph_entry: 0.303 us | ptrace_pre_handler();
<...>-265191 [002] 6544.699005: funcgraph_entry: 0.145 us | ptrace_pre_handler();
<...>-265192 [007] 6544.699248: funcgraph_entry: 0.201 us | ptrace_pre_handler();
<...>-265193 [007] 6544.699528: funcgraph_entry: 0.176 us | ptrace_pre_handler();
<...>-265194 [007] 6544.700038: funcgraph_entry: 0.212 us | ptrace_pre_handler();
<...>-265195 [007] 6544.700262: funcgraph_entry: 0.179 us | ptrace_pre_handler();
<...>-265196 [007] 6544.700476: funcgraph_entry: 0.237 us | ptrace_pre_handler();
<...>-265197 [007] 6544.701135: funcgraph_entry: 0.232 us | ptrace_pre_handler();
<...>-265198 [007] 6544.701345: funcgraph_entry: 0.225 us | ptrace_pre_handler();
<...>-265199 [007] 6544.701801: funcgraph_entry: 0.164 us | ptrace_pre_handler();
<...>-265200 [003] 6544.702087: funcgraph_entry: 0.199 us | ptrace_pre_handler();
<...>-265201 [007] 6544.702307: funcgraph_entry: 0.224 us | ptrace_pre_handler();
<...>-265202 [001] 6544.702772: funcgraph_entry: 0.441 us | ptrace_pre_handler();
<...>-265203 [007] 6544.703019: funcgraph_entry: 0.221 us | ptrace_pre_handler();
<...>-265204 [007] 6544.703227: funcgraph_entry: 0.203 us | ptrace_pre_handler();
<...>-265205 [007] 6544.703424: funcgraph_entry: 0.230 us | ptrace_pre_handler();
<...>-265206 [007] 6544.703864: funcgraph_entry: 0.253 us | ptrace_pre_handler();
<...>-265207 [007] 6544.704042: funcgraph_entry: 0.175 us | ptrace_pre_handler();
<...>-265208 [007] 6544.704205: funcgraph_entry: 0.206 us | ptrace_pre_handler();
<...>-265209 [007] 6544.704375: funcgraph_entry: 0.111 us | ptrace_pre_handler();
<...>-265210 [007] 6544.704557: funcgraph_entry: 0.162 us | ptrace_pre_handler();
<...>-265211 [007] 6544.704890: funcgraph_entry: 0.153 us | ptrace_pre_handler();
<...>-265212 [007] 6544.705063: funcgraph_entry: 0.143 us | ptrace_pre_handler();
<...>-265213 [006] 6544.705260: funcgraph_entry: 0.092 us | ptrace_pre_handler();
<...>-265214 [007] 6544.705454: funcgraph_entry: 0.224 us | ptrace_pre_handler();
<...>-265215 [007] 6544.705651: funcgraph_entry: 0.205 us | ptrace_pre_handler();
<...>-265216 [007] 6544.705815: funcgraph_entry: 0.166 us | ptrace_pre_handler();
<...>-265217 [003] 6544.706019: funcgraph_entry: 0.218 us | ptrace_pre_handler();
<...>-265218 [000] 6544.706236: funcgraph_entry: 0.077 us | ptrace_pre_handler();
<...>-265219 [001] 6544.706484: funcgraph_entry: 0.104 us | ptrace_pre_handler();
<...>-265220 [007] 6544.706921: funcgraph_entry: 0.216 us | ptrace_pre_handler();
<...>-265221 [007] 6544.707130: funcgraph_entry: 0.182 us | ptrace_pre_handler();
<...>-265222 [007] 6544.708063: funcgraph_entry: 0.253 us | ptrace_pre_handler();
<...>-265223 [007] 6544.708284: funcgraph_entry: 0.207 us | ptrace_pre_handler();
<...>-265224 [007] 6544.708493: funcgraph_entry: 0.270 us | ptrace_pre_handler();
<...>-265225 [007] 6544.708952: funcgraph_entry: 0.184 us | ptrace_pre_handler();
<...>-265226 [007] 6544.709157: funcgraph_entry: 0.238 us | ptrace_pre_handler();
<...>-265227 [007] 6544.709367: funcgraph_entry: 0.252 us | ptrace_pre_handler();
<...>-265228 [007] 6544.709559: funcgraph_entry: 0.278 us | ptrace_pre_handler();
<...>-265229 [007] 6544.709860: funcgraph_entry: 0.302 us | ptrace_pre_handler();
<...>-265230 [000] 6544.710130: funcgraph_entry: 0.207 us | ptrace_pre_handler();
<...>-265231 [006] 6544.710720: funcgraph_entry: 0.217 us | ptrace_pre_handler();
<...>-265232 [003] 6544.711086: funcgraph_entry: 0.153 us | ptrace_pre_handler();
<...>-265233 [001] 6544.711331: funcgraph_entry: 0.221 us | ptrace_pre_handler();
<...>-265234 [003] 6544.711793: funcgraph_entry: 0.305 us | ptrace_pre_handler();
<...>-265235 [001] 6544.712049: funcgraph_entry: 0.273 us | ptrace_pre_handler();
<...>-265236 [003] 6544.712254: funcgraph_entry: 0.139 us | ptrace_pre_handler();
<...>-265237 [001] 6544.712477: funcgraph_entry: 0.187 us | ptrace_pre_handler();
<...>-265238 [003] 6544.712947: funcgraph_entry: 0.198 us | ptrace_pre_handler();
<...>-265239 [003] 6544.713175: funcgraph_entry: 0.343 us | ptrace_pre_handler();
<...>-265240 [003] 6544.713393: funcgraph_entry: 0.203 us | ptrace_pre_handler();
<...>-265241 [003] 6544.713876: funcgraph_entry: 0.174 us | ptrace_pre_handler();
<...>-265242 [001] 6544.714402: funcgraph_entry: 0.262 us | ptrace_pre_handler();
<...>-265244 [001] 6544.720273: funcgraph_entry: 0.668 us | ptrace_pre_handler();
<...>-265244 [001] 6544.720302: funcgraph_entry: 0.085 us | ptrace_pre_handler();
<...>-265244 [001] 6544.720314: funcgraph_entry: 0.092 us | ptrace_pre_handler();
<...>-265244 [001] 6544.720337: funcgraph_entry: 0.068 us | ptrace_pre_handler();
<...>-265255 [001] 6545.538662: funcgraph_entry: 0.125 us | ptrace_pre_handler();
<...>-265255 [001] 6545.538685: funcgraph_entry: 0.052 us | ptrace_pre_handler();
<...>-265255 [001] 6545.554020: funcgraph_entry: 0.171 us | ptrace_pre_handler();
<...>-265255 [001] 6545.554067: funcgraph_entry: 0.074 us | ptrace_pre_handler();
<...>-265255 [001] 6545.554074: funcgraph_entry: 0.069 us | ptrace_pre_handler();
<...>-265260 [002] 6545.565105: funcgraph_entry: 0.170 us | ptrace_pre_handler();
<...>-265259 [004] 6545.565147: funcgraph_entry: 0.158 us | ptrace_pre_handler();
<...>-265261 [003] 6545.565490: funcgraph_entry: 0.113 us | ptrace_pre_handler();
<...>-265259 [004] 6545.565513: funcgraph_entry: 0.123 us | ptrace_pre_handler();
<...>-265262 [000] 6545.566124: funcgraph_entry: 0.088 us | ptrace_pre_handler();
<...>-265259 [004] 6545.566177: funcgraph_entry: 0.131 us | ptrace_pre_handler();
<...>-265263 [001] 6545.566481: funcgraph_entry: 0.154 us | ptrace_pre_handler();
<...>-265259 [004] 6545.566502: funcgraph_entry: 0.071 us | ptrace_pre_handler();
<...>-265265 [004] 6545.570862: funcgraph_entry: 0.125 us | ptrace_pre_handler();
<...>-265266 [001] 6545.571107: funcgraph_entry: 0.145 us | ptrace_pre_handler();
<...>-265266 [001] 6545.571110: funcgraph_entry: 0.048 us | ptrace_pre_handler();
<...>-265269 [001] 6545.578838: funcgraph_entry: 0.159 us | ptrace_pre_handler();
<...>-265270 [001] 6545.579195: funcgraph_entry: 0.104 us | ptrace_pre_handler();
<...>-265271 [004] 6545.579471: funcgraph_entry: 0.127 us | ptrace_pre_handler();
<...>-265272 [001] 6545.579688: funcgraph_entry: 0.143 us | ptrace_pre_handler();
<...>-265273 [001] 6545.579878: funcgraph_entry: 0.171 us | ptrace_pre_handler();
<...>-265274 [001] 6545.580051: funcgraph_entry: 0.163 us | ptrace_pre_handler();
<...>-265275 [001] 6545.580241: funcgraph_entry: 0.213 us | ptrace_pre_handler();
<...>-265276 [001] 6545.580422: funcgraph_entry: 0.074 us | ptrace_pre_handler();
<...>-265277 [001] 6545.580780: funcgraph_entry: 0.152 us | ptrace_pre_handler();
<...>-265278 [001] 6545.580953: funcgraph_entry: 0.170 us | ptrace_pre_handler();
<...>-265279 [001] 6545.581172: funcgraph_entry: 0.163 us | ptrace_pre_handler();
<...>-265280 [001] 6545.581335: funcgraph_entry: 0.171 us | ptrace_pre_handler();
<...>-265281 [001] 6545.581494: funcgraph_entry: 0.130 us | ptrace_pre_handler();
<...>-265282 [001] 6545.581827: funcgraph_entry: 0.218 us | ptrace_pre_handler();
<...>-265283 [007] 6545.582079: funcgraph_entry: 0.270 us | ptrace_pre_handler();
<...>-265284 [004] 6545.582295: funcgraph_entry: 0.120 us | ptrace_pre_handler();
<...>-265285 [007] 6545.582487: funcgraph_entry: 0.151 us | ptrace_pre_handler();
<...>-265286 [007] 6545.582867: funcgraph_entry: 0.178 us | ptrace_pre_handler();
<...>-265287 [007] 6545.583039: funcgraph_entry: 0.214 us | ptrace_pre_handler();
<...>-265288 [007] 6545.583219: funcgraph_entry: 0.182 us | ptrace_pre_handler();
<...>-265289 [007] 6545.583389: funcgraph_entry: 0.207 us | ptrace_pre_handler();
<...>-265290 [007] 6545.583558: funcgraph_entry: 0.158 us | ptrace_pre_handler();
<...>-265291 [007] 6545.583869: funcgraph_entry: 0.228 us | ptrace_pre_handler();
<...>-265292 [007] 6545.584041: funcgraph_entry: 0.133 us | ptrace_pre_handler();
<...>-265293 [007] 6545.584203: funcgraph_entry: 0.212 us | ptrace_pre_handler();
<...>-265294 [007] 6545.584361: funcgraph_entry: 0.246 us | ptrace_pre_handler();
<...>-265295 [007] 6545.584789: funcgraph_entry: 0.258 us | ptrace_pre_handler();
<...>-265296 [007] 6545.584999: funcgraph_entry: 0.219 us | ptrace_pre_handler();
<...>-265297 [007] 6545.585168: funcgraph_entry: 0.149 us | ptrace_pre_handler();
<...>-265298 [007] 6545.585337: funcgraph_entry: 0.107 us | ptrace_pre_handler();
<...>-265299 [007] 6545.585512: funcgraph_entry: 0.166 us | ptrace_pre_handler();
<...>-265300 [007] 6545.585734: funcgraph_entry: 0.165 us | ptrace_pre_handler();
<...>-265301 [007] 6545.585889: funcgraph_entry: 0.152 us | ptrace_pre_handler();
<...>-265302 [007] 6545.586052: funcgraph_entry: 0.136 us | ptrace_pre_handler();
<...>-265303 [007] 6545.586202: funcgraph_entry: 0.146 us | ptrace_pre_handler();
<...>-265304 [007] 6545.586360: funcgraph_entry: 0.198 us | ptrace_pre_handler();
<...>-265305 [007] 6545.586527: funcgraph_entry: 0.168 us | ptrace_pre_handler();
<...>-265306 [007] 6545.586732: funcgraph_entry: 0.122 us | ptrace_pre_handler();
<...>-265307 [007] 6545.586883: funcgraph_entry: 0.152 us | ptrace_pre_handler();
<...>-265308 [007] 6545.587033: funcgraph_entry: 0.142 us | ptrace_pre_handler();
<...>-265309 [007] 6545.587182: funcgraph_entry: 0.061 us | ptrace_pre_handler();
<...>-265310 [007] 6545.587442: funcgraph_entry: 0.107 us | ptrace_pre_handler();
<...>-265311 [007] 6545.587724: funcgraph_entry: 0.118 us | ptrace_pre_handler();
<...>-265312 [007] 6545.587899: funcgraph_entry: 0.209 us | ptrace_pre_handler();
<...>-265313 [007] 6545.588082: funcgraph_entry: 0.213 us | ptrace_pre_handler();
<...>-265314 [007] 6545.588239: funcgraph_entry: 0.111 us | ptrace_pre_handler();
<...>-265315 [007] 6545.588401: funcgraph_entry: 0.224 us | ptrace_pre_handler();
<...>-265316 [007] 6545.588709: funcgraph_entry: 0.147 us | ptrace_pre_handler();
<...>-265317 [007] 6545.588904: funcgraph_entry: 0.210 us | ptrace_pre_handler();
<...>-265318 [004] 6545.589123: funcgraph_entry: 0.258 us | ptrace_pre_handler();
<...>-265319 [004] 6545.589482: funcgraph_entry: 0.234 us | ptrace_pre_handler();
<...>-265320 [001] 6545.589888: funcgraph_entry: 0.093 us | ptrace_pre_handler();
<...>-265321 [001] 6545.590210: funcgraph_entry: 0.086 us | ptrace_pre_handler();
<...>-265322 [001] 6545.590457: funcgraph_entry: 0.129 us | ptrace_pre_handler();
<...>-265323 [003] 6545.590871: funcgraph_entry: 0.154 us | ptrace_pre_handler();
<...>-265324 [001] 6545.591088: funcgraph_entry: 0.283 us | ptrace_pre_handler();
<...>-265325 [001] 6545.591274: funcgraph_entry: 0.291 us | ptrace_pre_handler();
<...>-265326 [001] 6545.591446: funcgraph_entry: 0.204 us | ptrace_pre_handler();
<...>-265327 [001] 6545.591724: funcgraph_entry: 0.272 us | ptrace_pre_handler();
<...>-265328 [001] 6545.591886: funcgraph_entry: 0.219 us | ptrace_pre_handler();
<...>-265329 [001] 6545.592039: funcgraph_entry: 0.120 us | ptrace_pre_handler();
<...>-265330 [001] 6545.592213: funcgraph_entry: 0.315 us | ptrace_pre_handler();
<...>-265331 [001] 6545.592418: funcgraph_entry: 0.241 us | ptrace_pre_handler();
<...>-265333 [006] 6545.599135: funcgraph_entry: 0.625 us | ptrace_pre_handler();
<...>-265333 [006] 6545.599153: funcgraph_entry: 0.114 us | ptrace_pre_handler();
<...>-265333 [006] 6545.599163: funcgraph_entry: 0.058 us | ptrace_pre_handler();
<...>-265333 [006] 6545.599190: funcgraph_entry: 0.063 us | ptrace_pre_handler();
<...>-265344 [005] 6546.262153: funcgraph_entry: 0.107 us | ptrace_pre_handler();
<...>-265344 [005] 6546.262174: funcgraph_entry: 0.080 us | ptrace_pre_handler();
<...>-265344 [005] 6546.262187: funcgraph_entry: 0.053 us | ptrace_pre_handler();