aboutsummaryrefslogtreecommitdiffstats
path: root/packages/cortexa15t2hf-neon-poky-linux-gnueabi/systemtap/sysroot
blob: c8d60b323278feced9468e8a44d6f110ce8be590 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
drwxr-xr-x -          -                4096 ./sysroot-providers
-rw-r--r-- -          -                   9 ./sysroot-providers/systemtap
drwxr-xr-x -          -                4096 ./usr
drwxr-xr-x -          -                4096 ./usr/include
drwxr-xr-x -          -                4096 ./usr/include/sys
-rw-r--r-- -          -                 276 ./usr/include/sys/sdt-config.h
-rw-r--r-- -          -               19679 ./usr/include/sys/sdt.h
drwxr-xr-x -          -                4096 ./usr/lib
drwxr-xr-x -          -                4096 ./usr/lib/python3.9
drwxr-xr-x -          -                4096 ./usr/lib/python3.9/site-packages
drwxr-xr-x -          -                4096 ./usr/lib/python3.9/site-packages/HelperSDT
drwxr-xr-x -          -                4096 ./usr/lib/python3.9/site-packages/HelperSDT-0.1.0-py3.9.egg-info
-rw-r--r-- -          -                   1 ./usr/lib/python3.9/site-packages/HelperSDT-0.1.0-py3.9.egg-info/dependency_links.txt
-rw-r--r-- -          -                 331 ./usr/lib/python3.9/site-packages/HelperSDT-0.1.0-py3.9.egg-info/PKG-INFO
-rw-r--r-- -          -                  75 ./usr/lib/python3.9/site-packages/HelperSDT-0.1.0-py3.9.egg-info/SOURCES.txt
-rw-r--r-- -          -                  10 ./usr/lib/python3.9/site-packages/HelperSDT-0.1.0-py3.9.egg-info/top_level.txt
-rwxr-xr-x -          -                5964 ./usr/lib/python3.9/site-packages/HelperSDT/_HelperSDT.cpython-39-arm-linux-gnueabi.so
-rw-r--r-- -          -               11292 ./usr/lib/python3.9/site-packages/HelperSDT/__init__.py
-rw-r--r-- -          -                 348 ./usr/lib/python3.9/site-packages/HelperSDT/__main__.py
drwxr-xr-x -          -                4096 ./usr/lib/python3.9/site-packages/HelperSDT/__pycache__
-rw-r--r-- -          -                6015 ./usr/lib/python3.9/site-packages/HelperSDT/__pycache__/__init__.cpython-39.pyc
-rw-r--r-- -          -                 211 ./usr/lib/python3.9/site-packages/HelperSDT/__pycache__/__main__.cpython-39.pyc
drwxr-xr-x -          -                4096 ./usr/share
drwxr-xr-x -          -                4096 ./usr/share/systemtap
drwxr-xr-x -          -                4096 ./usr/share/systemtap/examples
drwxr-xr-x -          -                4096 ./usr/share/systemtap/examples/apps
-rw-r--r-- -          -                 513 ./usr/share/systemtap/examples/apps/gmalloc_watch.meta
-rwxr-xr-x -          -                 266 ./usr/share/systemtap/examples/apps/gmalloc_watch.stp
-rw-r--r-- -          -                  21 ./usr/share/systemtap/examples/apps/hello.php
-rw-r--r-- -          -                 764 ./usr/share/systemtap/examples/apps/libguestfs_log.meta
-rwxr-xr-x -          -                 454 ./usr/share/systemtap/examples/apps/libguestfs_log.stp
-rw-r--r-- -          -                 499 ./usr/share/systemtap/examples/apps/php-trace.meta
-rwxr-xr-x -          -                2605 ./usr/share/systemtap/examples/apps/php-trace.stp
-rw-r--r-- -          -                1031 ./usr/share/systemtap/examples/apps/stap_time.meta
-rwxr-xr-x -          -                1706 ./usr/share/systemtap/examples/apps/stap_time.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/examples/general
-rw-r--r-- -          -                 724 ./usr/share/systemtap/examples/general/alias_suffixes.meta
-rwxr-xr-x -          -                1064 ./usr/share/systemtap/examples/general/alias_suffixes.stp
-rw-r--r-- -          -                 605 ./usr/share/systemtap/examples/general/also_ran.meta
-rwxr-xr-x -          -                 809 ./usr/share/systemtap/examples/general/also_ran.stp
-rw-r--r-- -          -                 570 ./usr/share/systemtap/examples/general/ansi_colors2.meta
-rwxr-xr-x -          -                 742 ./usr/share/systemtap/examples/general/ansi_colors2.stp
-rw-r--r-- -          -                 507 ./usr/share/systemtap/examples/general/ansi_colors.meta
-rwxr-xr-x -          -                 720 ./usr/share/systemtap/examples/general/ansi_colors.stp
-rw-r--r-- -          -                 459 ./usr/share/systemtap/examples/general/badname.meta
-rwxr-xr-x -          -                1339 ./usr/share/systemtap/examples/general/badname.stp
-rw-r--r-- -          -                 126 ./usr/share/systemtap/examples/general/badname.txt
-rw-r--r-- -          -                 388 ./usr/share/systemtap/examples/general/callgraph.meta
-rwxr-xr-x -          -                 217 ./usr/share/systemtap/examples/general/callgraph.stp
-rw-r--r-- -          -                3700 ./usr/share/systemtap/examples/general/callgraph.txt
-rw-r--r-- -          -                1290 ./usr/share/systemtap/examples/general/click.wav
-rw-r--r-- -          -                 795 ./usr/share/systemtap/examples/general/cpu_throttle.meta
-rwxr-xr-x -          -                1486 ./usr/share/systemtap/examples/general/cpu_throttle.stp
-rw-r--r-- -          -                 637 ./usr/share/systemtap/examples/general/eventcount.meta
-rwxr-xr-x -          -                6936 ./usr/share/systemtap/examples/general/eventcount.stp
-rw-r--r-- -          -                1898 ./usr/share/systemtap/examples/general/eventcount.txt
-rw-r--r-- -          -                 479 ./usr/share/systemtap/examples/general/floatingpoint.meta
-rw-r--r-- -          -                 522 ./usr/share/systemtap/examples/general/floatingpoint.stp
-rw-r--r-- -          -                 156 ./usr/share/systemtap/examples/general/floatingpoint.txt
-rw-r--r-- -          -                 696 ./usr/share/systemtap/examples/general/func_time_stats.meta
-rwxr-xr-x -          -                 525 ./usr/share/systemtap/examples/general/func_time_stats.stp
-rw-r--r-- -          -                 493 ./usr/share/systemtap/examples/general/func_time_stats.txt
-rwxr-xr-x -          -                1291 ./usr/share/systemtap/examples/general/grapher.stp
-rw-r--r-- -          -                 453 ./usr/share/systemtap/examples/general/graphs.meta
-rwxr-xr-x -          -                1504 ./usr/share/systemtap/examples/general/graphs.stp
-rw-r--r-- -          -                 397 ./usr/share/systemtap/examples/general/helloworld.meta
-rwxr-xr-x -          -                  62 ./usr/share/systemtap/examples/general/helloworld.stp
-rw-r--r-- -          -                 355 ./usr/share/systemtap/examples/general/keyhack.meta
-rwxr-xr-x -          -                 293 ./usr/share/systemtap/examples/general/keyhack.stp
-rw-r--r-- -          -                 319 ./usr/share/systemtap/examples/general/key.meta
-rwxr-xr-x -          -                 419 ./usr/share/systemtap/examples/general/key.stp
-rw-r--r-- -          -                1582 ./usr/share/systemtap/examples/general/measureinterval.meta
-rwxr-xr-x -          -                 835 ./usr/share/systemtap/examples/general/measureinterval.stp
-rw-r--r-- -          -                 756 ./usr/share/systemtap/examples/general/para-callgraph.meta
-rwxr-xr-x -          -                 410 ./usr/share/systemtap/examples/general/para-callgraph.stp
-rw-r--r-- -          -                4415 ./usr/share/systemtap/examples/general/para-callgraph.txt
-rw-r--r-- -          -                 879 ./usr/share/systemtap/examples/general/para-callgraph-verbose.meta
-rwxr-xr-x -          -                 412 ./usr/share/systemtap/examples/general/para-callgraph-verbose.stp
-rw-r--r-- -          -                 489 ./usr/share/systemtap/examples/general/py2example.meta
-rw-r--r-- -          -                 765 ./usr/share/systemtap/examples/general/py2example.stp
-rw-r--r-- -          -                  79 ./usr/share/systemtap/examples/general/py2example.tcl
-rw-r--r-- -          -                 515 ./usr/share/systemtap/examples/general/py3example.meta
-rw-r--r-- -          -                 765 ./usr/share/systemtap/examples/general/py3example.stp
-rw-r--r-- -          -                  79 ./usr/share/systemtap/examples/general/py3example.tcl
-rw-r--r-- -          -                 832 ./usr/share/systemtap/examples/general/pyexample.py
-rw-r--r-- -          -                 504 ./usr/share/systemtap/examples/general/regex.meta
-rwxr-xr-x -          -                 495 ./usr/share/systemtap/examples/general/regex.stp
-rw-r--r-- -          -                6584 ./usr/share/systemtap/examples/general/return.wav
-rw-r--r-- -          -                 816 ./usr/share/systemtap/examples/general/sizeof_interactive.meta
-rw-r--r-- -          -                 577 ./usr/share/systemtap/examples/general/sizeof_interactive.stp
-rw-r--r-- -          -                 154 ./usr/share/systemtap/examples/general/sizeof_interactive.txt
-rw-r--r-- -          -                 664 ./usr/share/systemtap/examples/general/sizeof.meta
-rwxr-xr-x -          -                 487 ./usr/share/systemtap/examples/general/sizeof.stp
-rw-r--r-- -          -                 100 ./usr/share/systemtap/examples/general/sizeof.txt
-rw-r--r-- -          -                 563 ./usr/share/systemtap/examples/general/socket-events.meta
-rwxr-xr-x -          -                5456 ./usr/share/systemtap/examples/general/socket-events.stp
-rw-r--r-- -          -                 754 ./usr/share/systemtap/examples/general/stopwatches.meta
-rwxr-xr-x -          -                 962 ./usr/share/systemtap/examples/general/stopwatches.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/examples/general/tapset
-rw-r--r-- -          -               12724 ./usr/share/systemtap/examples/general/tapset/python2_local.stp
-rw-r--r-- -          -               13480 ./usr/share/systemtap/examples/general/tapset/python3_local.stp
-rw-r--r-- -          -                 226 ./usr/share/systemtap/examples/general/tapset/python_local.stpm
-rw-r--r-- -          -                 479 ./usr/share/systemtap/examples/general/tcl-funtop.meta
-rwxr-xr-x -          -                 822 ./usr/share/systemtap/examples/general/tcl-funtop.stp
-rw-r--r-- -          -                 364 ./usr/share/systemtap/examples/general/tcl-trace.meta
-rwxr-xr-x -          -                1042 ./usr/share/systemtap/examples/general/tcl-trace.stp
-rw-r--r-- -          -                 583 ./usr/share/systemtap/examples/general/varwatch.meta
-rwxr-xr-x -          -                 464 ./usr/share/systemtap/examples/general/varwatch.stp
-rw-r--r-- -          -                2678 ./usr/share/systemtap/examples/general/varwatch.txt
-rw-r--r-- -          -                 922 ./usr/share/systemtap/examples/general/watchdog.meta
-rwxr-xr-x -          -                 452 ./usr/share/systemtap/examples/general/watchdog.stp
-rw-r--r-- -          -                 481 ./usr/share/systemtap/examples/general/whythefail.meta
-rw-r--r-- -          -                2282 ./usr/share/systemtap/examples/general/whythefail.stp
-rw-r--r-- -          -                3790 ./usr/share/systemtap/examples/general/whythefail.txt
drwxr-xr-x -          -                4096 ./usr/share/systemtap/examples/html
-rw-r--r-- -          -                 970 ./usr/share/systemtap/examples/html/systemtapcorner.gif
-rw-r--r-- -          -                2987 ./usr/share/systemtap/examples/html/systemtap.css
-rw-r--r-- -          -                1860 ./usr/share/systemtap/examples/html/systemtaplogo.png
-rw-r--r-- -          -              127603 ./usr/share/systemtap/examples/index.html
-rw-r--r-- -          -               74775 ./usr/share/systemtap/examples/index.txt
drwxr-xr-x -          -                4096 ./usr/share/systemtap/examples/interrupt
-rw-r--r-- -          -                 507 ./usr/share/systemtap/examples/interrupt/interrupts-by-dev.meta
-rwxr-xr-x -          -                 838 ./usr/share/systemtap/examples/interrupt/interrupts-by-dev.stp
-rw-r--r-- -          -                 513 ./usr/share/systemtap/examples/interrupt/interrupts-by-dev.txt
-rw-r--r-- -          -                 610 ./usr/share/systemtap/examples/interrupt/scf.meta
-rwxr-xr-x -          -                 525 ./usr/share/systemtap/examples/interrupt/scf.stp
-rw-r--r-- -          -                 140 ./usr/share/systemtap/examples/interrupt/scf.tcl
drwxr-xr-x -          -                4096 ./usr/share/systemtap/examples/io
-rw-r--r-- -          -                 664 ./usr/share/systemtap/examples/io/capture_ssl_master_secrets.meta
-rwxr-xr-x -          -                1094 ./usr/share/systemtap/examples/io/capture_ssl_master_secrets.stp
-rw-r--r-- -          -                1907 ./usr/share/systemtap/examples/io/capture_ssl_master_secrets.txt
-rw-r--r-- -          -                 490 ./usr/share/systemtap/examples/io/deviceseeks.meta
-rwxr-xr-x -          -                1270 ./usr/share/systemtap/examples/io/deviceseeks.stp
-rw-r--r-- -          -                5395 ./usr/share/systemtap/examples/io/deviceseeks.txt
-rw-r--r-- -          -                 381 ./usr/share/systemtap/examples/io/disktop.meta
-rwxr-xr-x -          -                1798 ./usr/share/systemtap/examples/io/disktop.stp
-rw-r--r-- -          -                 337 ./usr/share/systemtap/examples/io/eatmydata.meta
-rwxr-xr-x -          -                1188 ./usr/share/systemtap/examples/io/eatmydata.stp
-rw-r--r-- -          -                 304 ./usr/share/systemtap/examples/io/eatmydata.txt
-rw-r--r-- -          -                 332 ./usr/share/systemtap/examples/io/enospc.meta
-rwxr-xr-x -          -                2323 ./usr/share/systemtap/examples/io/enospc.stp
-rw-r--r-- -          -                 504 ./usr/share/systemtap/examples/io/inodewatch2.meta
-rwxr-xr-x -          -                 395 ./usr/share/systemtap/examples/io/inodewatch2.stp
-rw-r--r-- -          -                 475 ./usr/share/systemtap/examples/io/inodewatch.meta
-rwxr-xr-x -          -                 250 ./usr/share/systemtap/examples/io/inodewatch.stp
-rw-r--r-- -          -                 769 ./usr/share/systemtap/examples/io/ioblktime.meta
-rwxr-xr-x -          -                 793 ./usr/share/systemtap/examples/io/ioblktime.stp
-rw-r--r-- -          -                 738 ./usr/share/systemtap/examples/io/iodevstats.meta
-rwxr-xr-x -          -                1157 ./usr/share/systemtap/examples/io/iodevstats.stp
-rw-r--r-- -          -                 528 ./usr/share/systemtap/examples/io/iodevstats.txt
-rw-r--r-- -          -                 608 ./usr/share/systemtap/examples/io/iostat-scsi.meta
-rwxr-xr-x -          -                3496 ./usr/share/systemtap/examples/io/iostat-scsi.stp
-rw-r--r-- -          -                 481 ./usr/share/systemtap/examples/io/iostat-scsi.txt
-rw-r--r-- -          -                 671 ./usr/share/systemtap/examples/io/iostats.meta
-rwxr-xr-x -          -                1159 ./usr/share/systemtap/examples/io/iostats.stp
-rw-r--r-- -          -                 361 ./usr/share/systemtap/examples/io/iostats.txt
-rw-r--r-- -          -                 508 ./usr/share/systemtap/examples/io/io_submit.meta
-rwxr-xr-x -          -                1911 ./usr/share/systemtap/examples/io/io_submit.stp
-rw-r--r-- -          -                 140 ./usr/share/systemtap/examples/io/io_submit.tcl
-rw-r--r-- -          -                1024 ./usr/share/systemtap/examples/io/iotime.meta
-rwxr-xr-x -          -                2898 ./usr/share/systemtap/examples/io/iotime.stp
-rw-r--r-- -          -                 410 ./usr/share/systemtap/examples/io/iotop.meta
-rwxr-xr-x -          -                 629 ./usr/share/systemtap/examples/io/iotop.stp
-rw-r--r-- -          -                 559 ./usr/share/systemtap/examples/io/mbrwatch.meta
-rwxr-xr-x -          -                 239 ./usr/share/systemtap/examples/io/mbrwatch.stp
-rw-r--r-- -          -                 140 ./usr/share/systemtap/examples/io/mbrwatch.tcl
-rw-r--r-- -          -                 788 ./usr/share/systemtap/examples/io/mbrwatch.txt
-rw-r--r-- -          -                 665 ./usr/share/systemtap/examples/io/nfs_func_users.meta
-rwxr-xr-x -          -                 345 ./usr/share/systemtap/examples/io/nfs_func_users.stp
-rw-r--r-- -          -                 426 ./usr/share/systemtap/examples/io/slowvfs.meta
-rwxr-xr-x -          -                 286 ./usr/share/systemtap/examples/io/slowvfs.stp
-rw-r--r-- -          -                 330 ./usr/share/systemtap/examples/io/switchfile.meta
-rw-r--r-- -          -                 237 ./usr/share/systemtap/examples/io/switchfile.stp
-rw-r--r-- -          -                 400 ./usr/share/systemtap/examples/io/traceio2.meta
-rwxr-xr-x -          -                 499 ./usr/share/systemtap/examples/io/traceio2.stp
-rw-r--r-- -          -                 403 ./usr/share/systemtap/examples/io/traceio.meta
-rwxr-xr-x -          -                1389 ./usr/share/systemtap/examples/io/traceio.stp
-rw-r--r-- -          -                 521 ./usr/share/systemtap/examples/io/ttyspy.meta
-rwxr-xr-x -          -                1686 ./usr/share/systemtap/examples/io/ttyspy.stp
-rw-r--r-- -          -                 455 ./usr/share/systemtap/examples/io/ttyspy.txt
-rw-r--r-- -          -              237789 ./usr/share/systemtap/examples/keyword-index.html
-rw-r--r-- -          -              156859 ./usr/share/systemtap/examples/keyword-index.txt
drwxr-xr-x -          -                4096 ./usr/share/systemtap/examples/locks
-rw-r--r-- -          -                1105 ./usr/share/systemtap/examples/locks/bkl.meta
-rw-r--r-- -          -                 977 ./usr/share/systemtap/examples/locks/bkl_stats.meta
-rwxr-xr-x -          -                2163 ./usr/share/systemtap/examples/locks/bkl_stats.stp
-rwxr-xr-x -          -                2124 ./usr/share/systemtap/examples/locks/bkl.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/examples/lwtools
-rw-r--r-- -          -                1424 ./usr/share/systemtap/examples/lwtools/accept2close-nd.8
-rw-r--r-- -          -                 597 ./usr/share/systemtap/examples/lwtools/accept2close-nd.meta
-rwxr-xr-x -          -                1798 ./usr/share/systemtap/examples/lwtools/accept2close-nd.stp
-rw-r--r-- -          -                3385 ./usr/share/systemtap/examples/lwtools/accept2close-nd.txt
-rw-r--r-- -          -                1671 ./usr/share/systemtap/examples/lwtools/biolatency-nd.8
-rw-r--r-- -          -                7362 ./usr/share/systemtap/examples/lwtools/biolatency-nd_example.txt
-rw-r--r-- -          -                 622 ./usr/share/systemtap/examples/lwtools/biolatency-nd.meta
-rwxr-xr-x -          -                2071 ./usr/share/systemtap/examples/lwtools/biolatency-nd.stp
-rw-r--r-- -          -                1157 ./usr/share/systemtap/examples/lwtools/bitesize-nd.8
-rw-r--r-- -          -                3426 ./usr/share/systemtap/examples/lwtools/bitesize-nd_example.txt
-rw-r--r-- -          -                 491 ./usr/share/systemtap/examples/lwtools/bitesize-nd.meta
-rwxr-xr-x -          -                1543 ./usr/share/systemtap/examples/lwtools/bitesize-nd.stp
-rw-r--r-- -          -                1235 ./usr/share/systemtap/examples/lwtools/execsnoop-nd.8
-rw-r--r-- -          -                2585 ./usr/share/systemtap/examples/lwtools/execsnoop-nd_example.txt
-rw-r--r-- -          -                 570 ./usr/share/systemtap/examples/lwtools/execsnoop-nd.meta
-rwxr-xr-x -          -                1283 ./usr/share/systemtap/examples/lwtools/execsnoop-nd.stp
-rw-r--r-- -          -                1930 ./usr/share/systemtap/examples/lwtools/fslatency-nd.8
-rw-r--r-- -          -               13384 ./usr/share/systemtap/examples/lwtools/fslatency-nd_example.txt
-rw-r--r-- -          -                 660 ./usr/share/systemtap/examples/lwtools/fslatency-nd.meta
-rwxr-xr-x -          -                3982 ./usr/share/systemtap/examples/lwtools/fslatency-nd.stp
-rw-r--r-- -          -                1753 ./usr/share/systemtap/examples/lwtools/fsslower-nd.8
-rw-r--r-- -          -                1938 ./usr/share/systemtap/examples/lwtools/fsslower-nd_example.txt
-rw-r--r-- -          -                 623 ./usr/share/systemtap/examples/lwtools/fsslower-nd.meta
-rwxr-xr-x -          -                3715 ./usr/share/systemtap/examples/lwtools/fsslower-nd.stp
-rw-r--r-- -          -                1131 ./usr/share/systemtap/examples/lwtools/killsnoop-nd.8
-rw-r--r-- -          -                1908 ./usr/share/systemtap/examples/lwtools/killsnoop-nd_example.txt
-rw-r--r-- -          -                 384 ./usr/share/systemtap/examples/lwtools/killsnoop-nd.meta
-rwxr-xr-x -          -                1281 ./usr/share/systemtap/examples/lwtools/killsnoop-nd.stp
-rw-r--r-- -          -                1268 ./usr/share/systemtap/examples/lwtools/opensnoop-nd.8
-rw-r--r-- -          -                1124 ./usr/share/systemtap/examples/lwtools/opensnoop-nd_example.txt
-rw-r--r-- -          -                 357 ./usr/share/systemtap/examples/lwtools/opensnoop-nd.meta
-rwxr-xr-x -          -                1026 ./usr/share/systemtap/examples/lwtools/opensnoop-nd.stp
-rw-r--r-- -          -                 107 ./usr/share/systemtap/examples/lwtools/README
-rw-r--r-- -          -                1146 ./usr/share/systemtap/examples/lwtools/rwtime-nd.8
-rw-r--r-- -          -                4185 ./usr/share/systemtap/examples/lwtools/rwtime-nd_example.txt
-rw-r--r-- -          -                 412 ./usr/share/systemtap/examples/lwtools/rwtime-nd.meta
-rwxr-xr-x -          -                1599 ./usr/share/systemtap/examples/lwtools/rwtime-nd.stp
-rw-r--r-- -          -                1089 ./usr/share/systemtap/examples/lwtools/syscallbypid-nd.8
-rw-r--r-- -          -                9322 ./usr/share/systemtap/examples/lwtools/syscallbypid-nd_example.txt
-rw-r--r-- -          -                 404 ./usr/share/systemtap/examples/lwtools/syscallbypid-nd.meta
-rwxr-xr-x -          -                1100 ./usr/share/systemtap/examples/lwtools/syscallbypid-nd.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/examples/memory
-rw-r--r-- -          -                 545 ./usr/share/systemtap/examples/memory/cachestat.meta
-rwxr-xr-x -          -                1323 ./usr/share/systemtap/examples/memory/cachestat.stp
-rw-r--r-- -          -                 381 ./usr/share/systemtap/examples/memory/glibc-malloc.meta
-rwxr-xr-x -          -                2491 ./usr/share/systemtap/examples/memory/glibc-malloc.stp
-rw-r--r-- -          -                 946 ./usr/share/systemtap/examples/memory/hugepage_clear_delays.meta
-rwxr-xr-x -          -                 488 ./usr/share/systemtap/examples/memory/hugepage_clear_delays.stp
-rw-r--r-- -          -                 718 ./usr/share/systemtap/examples/memory/hugepage_collapse.meta
-rwxr-xr-x -          -                 164 ./usr/share/systemtap/examples/memory/hugepage_collapse.stp
-rw-r--r-- -          -                1106 ./usr/share/systemtap/examples/memory/hugepage_cow_delays.meta
-rwxr-xr-x -          -                 480 ./usr/share/systemtap/examples/memory/hugepage_cow_delays.stp
-rw-r--r-- -          -                 756 ./usr/share/systemtap/examples/memory/hugepage_split.meta
-rwxr-xr-x -          -                 158 ./usr/share/systemtap/examples/memory/hugepage_split.stp
-rw-r--r-- -          -                 787 ./usr/share/systemtap/examples/memory/hw_watch_addr.meta
-rwxr-xr-x -          -                 172 ./usr/share/systemtap/examples/memory/hw_watch_addr.stp
-rw-r--r-- -          -                  97 ./usr/share/systemtap/examples/memory/hw_watch_addr.tcl
-rw-r--r-- -          -                 715 ./usr/share/systemtap/examples/memory/hw_watch_sym.meta
-rwxr-xr-x -          -                 172 ./usr/share/systemtap/examples/memory/hw_watch_sym.stp
-rw-r--r-- -          -                  97 ./usr/share/systemtap/examples/memory/hw_watch_sym.tcl
-rwxr-xr-x -          -                3888 ./usr/share/systemtap/examples/memory/kmalloc-top
-rw-r--r-- -          -                 695 ./usr/share/systemtap/examples/memory/kmalloc-top.meta
-rw-r--r-- -          -                 420 ./usr/share/systemtap/examples/memory/last_100_frees.meta
-rwxr-xr-x -          -                 808 ./usr/share/systemtap/examples/memory/last_100_frees.stp
-rw-r--r-- -          -                  79 ./usr/share/systemtap/examples/memory/last_100_frees.tcl
-rw-r--r-- -          -                 774 ./usr/share/systemtap/examples/memory/last_100_frees.txt
-rw-r--r-- -          -                1225 ./usr/share/systemtap/examples/memory/mmanonpage.meta
-rwxr-xr-x -          -                1821 ./usr/share/systemtap/examples/memory/mmanonpage.stp
-rw-r--r-- -          -                1033 ./usr/share/systemtap/examples/memory/mmfilepage.meta
-rwxr-xr-x -          -                3542 ./usr/share/systemtap/examples/memory/mmfilepage.stp
-rw-r--r-- -          -                 606 ./usr/share/systemtap/examples/memory/mmreclaim.meta
-rwxr-xr-x -          -                5237 ./usr/share/systemtap/examples/memory/mmreclaim.stp
-rw-r--r-- -          -                1114 ./usr/share/systemtap/examples/memory/mmwriteback.meta
-rwxr-xr-x -          -                1905 ./usr/share/systemtap/examples/memory/mmwriteback.stp
-rw-r--r-- -          -                 702 ./usr/share/systemtap/examples/memory/numa_faults.meta
-rwxr-xr-x -          -                 978 ./usr/share/systemtap/examples/memory/numa_faults.stp
-rw-r--r-- -          -                1710 ./usr/share/systemtap/examples/memory/numa_faults.txt
-rw-r--r-- -          -                 584 ./usr/share/systemtap/examples/memory/overcommit.meta
-rwxr-xr-x -          -                 222 ./usr/share/systemtap/examples/memory/overcommit.stp
-rw-r--r-- -          -                 744 ./usr/share/systemtap/examples/memory/pfaults.meta
-rwxr-xr-x -          -                 880 ./usr/share/systemtap/examples/memory/pfaults.stp
-rw-r--r-- -          -                 558 ./usr/share/systemtap/examples/memory/pfaults.txt
-rw-r--r-- -          -                 608 ./usr/share/systemtap/examples/memory/vm.tracepoints.meta
-rwxr-xr-x -          -                 419 ./usr/share/systemtap/examples/memory/vm.tracepoints.stp
-rw-r--r-- -          -                 557 ./usr/share/systemtap/examples/memory/vm.tracepoints.txt
-rw-r--r-- -          -              194560 ./usr/share/systemtap/examples/metadatabase.db
drwxr-xr-x -          -                4096 ./usr/share/systemtap/examples/network
-rw-r--r-- -          -                 397 ./usr/share/systemtap/examples/network/autofs4.meta
-rwxr-xr-x -          -                4172 ./usr/share/systemtap/examples/network/autofs4.stp
-rw-r--r-- -          -                 404 ./usr/share/systemtap/examples/network/connect_stat.meta
-rwxr-xr-x -          -                1024 ./usr/share/systemtap/examples/network/connect_stat.stp
-rw-r--r-- -          -                 494 ./usr/share/systemtap/examples/network/dropwatch.meta
-rwxr-xr-x -          -                 905 ./usr/share/systemtap/examples/network/dropwatch.stp
-rw-r--r-- -          -                 389 ./usr/share/systemtap/examples/network/netdev.meta
-rwxr-xr-x -          -                1463 ./usr/share/systemtap/examples/network/netdev.stp
-rw-r--r-- -          -                 630 ./usr/share/systemtap/examples/network/netfilter_drop.meta
-rwxr-xr-x -          -                1161 ./usr/share/systemtap/examples/network/netfilter_drop.stp
-rw-r--r-- -          -                 511 ./usr/share/systemtap/examples/network/netfilter_summary_json.meta
-rw-r--r-- -          -                1075 ./usr/share/systemtap/examples/network/netfilter_summary_json.stp
-rw-r--r-- -          -                 587 ./usr/share/systemtap/examples/network/netfilter_summary.meta
-rwxr-xr-x -          -                 596 ./usr/share/systemtap/examples/network/netfilter_summary.stp
-rw-r--r-- -          -                2873 ./usr/share/systemtap/examples/network/netfilter_summary.txt
-rw-r--r-- -          -                 519 ./usr/share/systemtap/examples/network/nettop.meta
-rwxr-xr-x -          -                 994 ./usr/share/systemtap/examples/network/nettop.stp
-rw-r--r-- -          -                 953 ./usr/share/systemtap/examples/network/nettop.txt
-rw-r--r-- -          -                 453 ./usr/share/systemtap/examples/network/net_xmit_json.meta
-rw-r--r-- -          -                1801 ./usr/share/systemtap/examples/network/net_xmit_json.stp
-rw-r--r-- -          -                 423 ./usr/share/systemtap/examples/network/nfsd-recent.meta
-rwxr-xr-x -          -                 447 ./usr/share/systemtap/examples/network/nfsd-recent.stp
-rw-r--r-- -          -                 405 ./usr/share/systemtap/examples/network/nfsdtop.meta
-rwxr-xr-x -          -                3390 ./usr/share/systemtap/examples/network/nfsdtop.stp
-rw-r--r-- -          -                 314 ./usr/share/systemtap/examples/network/nfsd-trace.meta
-rw-r--r-- -          -                 706 ./usr/share/systemtap/examples/network/nfsd-trace.stp
-rw-r--r-- -          -                 876 ./usr/share/systemtap/examples/network/nfsd-trace.txt
-rw-r--r-- -          -                 479 ./usr/share/systemtap/examples/network/nfsd_unlink.meta
-rwxr-xr-x -          -                 528 ./usr/share/systemtap/examples/network/nfsd_unlink.stp
-rw-r--r-- -          -                 550 ./usr/share/systemtap/examples/network/packet_contents.meta
-rwxr-xr-x -          -                 216 ./usr/share/systemtap/examples/network/packet_contents.stp
-rw-r--r-- -          -                2066 ./usr/share/systemtap/examples/network/packet_contents.txt
-rw-r--r-- -          -                 742 ./usr/share/systemtap/examples/network/sk_stream_wait_memory.meta
-rwxr-xr-x -          -                1004 ./usr/share/systemtap/examples/network/sk_stream_wait_memory.stp
-rw-r--r-- -          -                 702 ./usr/share/systemtap/examples/network/socket-trace.meta
-rwxr-xr-x -          -                 227 ./usr/share/systemtap/examples/network/socket-trace.stp
-rwxr-xr-x -          -                9144 ./usr/share/systemtap/examples/network/socktop
-rw-r--r-- -          -                 548 ./usr/share/systemtap/examples/network/socktop.meta
-rw-r--r-- -          -                4135 ./usr/share/systemtap/examples/network/socktop.txt
-rw-r--r-- -          -                 339 ./usr/share/systemtap/examples/network/stp_dump.meta
-rw-r--r-- -          -                 568 ./usr/share/systemtap/examples/network/stp_dump.stp
-rw-r--r-- -          -                1632 ./usr/share/systemtap/examples/network/stp_dump.txt
-rw-r--r-- -          -                 625 ./usr/share/systemtap/examples/network/tcp_connections.meta
-rwxr-xr-x -          -                 366 ./usr/share/systemtap/examples/network/tcp_connections.stp
-rw-r--r-- -          -                 381 ./usr/share/systemtap/examples/network/tcpdumplike.meta
-rwxr-xr-x -          -                 586 ./usr/share/systemtap/examples/network/tcpdumplike.stp
-rw-r--r-- -          -                 589 ./usr/share/systemtap/examples/network/tcp_init_cwnd.meta
-rwxr-xr-x -          -                 344 ./usr/share/systemtap/examples/network/tcp_init_cwnd.stp
-rw-r--r-- -          -                 725 ./usr/share/systemtap/examples/network/tcpipstat.meta
-rwxr-xr-x -          -               18252 ./usr/share/systemtap/examples/network/tcpipstat.stp
-rw-r--r-- -          -                 898 ./usr/share/systemtap/examples/network/tcpipstat.txt
-rw-r--r-- -          -                 286 ./usr/share/systemtap/examples/network/tcp_retransmission.meta
-rw-r--r-- -          -                1187 ./usr/share/systemtap/examples/network/tcp_retransmission.stp
-rw-r--r-- -          -                 684 ./usr/share/systemtap/examples/network/tcp_trace.meta
-rwxr-xr-x -          -               19100 ./usr/share/systemtap/examples/network/tcp_trace.stp
-rw-r--r-- -          -                3465 ./usr/share/systemtap/examples/network/tcp_trace.txt
-rw-r--r-- -          -                 583 ./usr/share/systemtap/examples/network/who_sent_it.meta
-rw-r--r-- -          -                 482 ./usr/share/systemtap/examples/network/who_sent_it.stp
-rw-r--r-- -          -                 803 ./usr/share/systemtap/examples/network/who_sent_it.txt
drwxr-xr-x -          -                4096 ./usr/share/systemtap/examples/process
-rw-r--r-- -          -                 429 ./usr/share/systemtap/examples/process/auditbt.meta
-rwxr-xr-x -          -                 627 ./usr/share/systemtap/examples/process/auditbt.stp
-rw-r--r-- -          -                  79 ./usr/share/systemtap/examples/process/auditbt.tcl
-rw-r--r-- -          -                 775 ./usr/share/systemtap/examples/process/chng_cpu.meta
-rwxr-xr-x -          -                1054 ./usr/share/systemtap/examples/process/chng_cpu.stp
-rw-r--r-- -          -                 140 ./usr/share/systemtap/examples/process/chng_cpu.tcl
-rw-r--r-- -          -                1082 ./usr/share/systemtap/examples/process/cycle_thief.meta
-rwxr-xr-x -          -                2898 ./usr/share/systemtap/examples/process/cycle_thief.stp
-rw-r--r-- -          -                5974 ./usr/share/systemtap/examples/process/cycle_thief.txt
-rw-r--r-- -          -                 575 ./usr/share/systemtap/examples/process/errsnoop.meta
-rwxr-xr-x -          -                1020 ./usr/share/systemtap/examples/process/errsnoop.stp
-rw-r--r-- -          -                 525 ./usr/share/systemtap/examples/process/forktracker.meta
-rwxr-xr-x -          -                 606 ./usr/share/systemtap/examples/process/forktracker.stp
-rw-r--r-- -          -                 593 ./usr/share/systemtap/examples/process/futexes2.meta
-rw-r--r-- -          -                2019 ./usr/share/systemtap/examples/process/futexes2.stp
-rw-r--r-- -          -                 520 ./usr/share/systemtap/examples/process/futexes.meta
-rwxr-xr-x -          -                1123 ./usr/share/systemtap/examples/process/futexes.stp
-rw-r--r-- -          -                 944 ./usr/share/systemtap/examples/process/futexes.txt
-rw-r--r-- -          -                 314 ./usr/share/systemtap/examples/process/ltrace.meta
-rwxr-xr-x -          -                3012 ./usr/share/systemtap/examples/process/ltrace.stp
-rw-r--r-- -          -                 122 ./usr/share/systemtap/examples/process/ltrace.tcl
-rw-r--r-- -          -                 746 ./usr/share/systemtap/examples/process/migrate.meta
-rwxr-xr-x -          -                1042 ./usr/share/systemtap/examples/process/migrate.stp
-rw-r--r-- -          -                 479 ./usr/share/systemtap/examples/process/mutex-contention.meta
-rwxr-xr-x -          -                5564 ./usr/share/systemtap/examples/process/mutex-contention.stp
-rw-r--r-- -          -                  79 ./usr/share/systemtap/examples/process/mutex-contention.tcl
-rw-r--r-- -          -                 512 ./usr/share/systemtap/examples/process/noptrace.meta
-rwxr-xr-x -          -                2235 ./usr/share/systemtap/examples/process/noptrace.stp
-rw-r--r-- -          -                1212 ./usr/share/systemtap/examples/process/noptrace.txt
-rw-r--r-- -          -                 450 ./usr/share/systemtap/examples/process/pfiles.meta
-rwxr-xr-x -          -               24523 ./usr/share/systemtap/examples/process/pfiles.stp
-rw-r--r-- -          -                 387 ./usr/share/systemtap/examples/process/plimit.meta
-rwxr-xr-x -          -                3029 ./usr/share/systemtap/examples/process/plimit.stp
-rw-r--r-- -          -                 657 ./usr/share/systemtap/examples/process/procmod_watcher.meta
-rw-r--r-- -          -                2411 ./usr/share/systemtap/examples/process/procmod_watcher.stp
-rw-r--r-- -          -                2180 ./usr/share/systemtap/examples/process/proc_snoop_parser_instructions.txt
-rw-r--r-- -          -                 818 ./usr/share/systemtap/examples/process/proc_snoop_parser.xml
-rwxr-xr-x -          -                1138 ./usr/share/systemtap/examples/process/proc_snoop.stp
-rw-r--r-- -          -                 601 ./usr/share/systemtap/examples/process/proctop.meta
-rwxr-xr-x -          -                4250 ./usr/share/systemtap/examples/process/proctop.stp
-rw-r--r-- -          -                8654 ./usr/share/systemtap/examples/process/proctop.txt
-rw-r--r-- -          -                 354 ./usr/share/systemtap/examples/process/psig.meta
-rwxr-xr-x -          -                5616 ./usr/share/systemtap/examples/process/psig.stp
-rw-r--r-- -          -                 545 ./usr/share/systemtap/examples/process/pstrace_exec.meta
-rwxr-xr-x -          -                 470 ./usr/share/systemtap/examples/process/pstrace_exec.stp
-rw-r--r-- -          -                 455 ./usr/share/systemtap/examples/process/pstree.meta
-rwxr-xr-x -          -                1962 ./usr/share/systemtap/examples/process/pstree.stp
-rw-r--r-- -          -                 319 ./usr/share/systemtap/examples/process/rlimit_nofile.meta
-rwxr-xr-x -          -                1151 ./usr/share/systemtap/examples/process/rlimit_nofile.stp
-rw-r--r-- -          -                 470 ./usr/share/systemtap/examples/process/sched-latency.meta
-rw-r--r-- -          -                 513 ./usr/share/systemtap/examples/process/sched-latency.stp
-rw-r--r-- -          -                1566 ./usr/share/systemtap/examples/process/sched-latency.txt
-rw-r--r-- -          -                 814 ./usr/share/systemtap/examples/process/schedtimes.meta
-rwxr-xr-x -          -                3949 ./usr/share/systemtap/examples/process/schedtimes.stp
-rw-r--r-- -          -                3278 ./usr/share/systemtap/examples/process/schedtimes.txt
-rw-r--r-- -          -                 267 ./usr/share/systemtap/examples/process/semop-watch.meta
-rwxr-xr-x -          -                 822 ./usr/share/systemtap/examples/process/semop-watch.stp
-rw-r--r-- -          -                 357 ./usr/share/systemtap/examples/process/sig_by_pid.meta
-rwxr-xr-x -          -                1083 ./usr/share/systemtap/examples/process/sig_by_pid.stp
-rw-r--r-- -          -                1514 ./usr/share/systemtap/examples/process/sig_by_pid.txt
-rw-r--r-- -          -                 364 ./usr/share/systemtap/examples/process/sig_by_proc.meta
-rwxr-xr-x -          -                 856 ./usr/share/systemtap/examples/process/sig_by_proc.stp
-rw-r--r-- -          -                 951 ./usr/share/systemtap/examples/process/sig_by_proc.txt
-rw-r--r-- -          -                 560 ./usr/share/systemtap/examples/process/sigkill.meta
-rwxr-xr-x -          -                 661 ./usr/share/systemtap/examples/process/sigkill.stp
-rw-r--r-- -          -                 669 ./usr/share/systemtap/examples/process/sigmon.meta
-rwxr-xr-x -          -                 937 ./usr/share/systemtap/examples/process/sigmon.stp
-rw-r--r-- -          -                 581 ./usr/share/systemtap/examples/process/sleepingBeauties.meta
-rwxr-xr-x -          -                1369 ./usr/share/systemtap/examples/process/sleepingBeauties.stp
-rw-r--r-- -          -                 140 ./usr/share/systemtap/examples/process/sleepingBeauties.tcl
-rw-r--r-- -          -                 601 ./usr/share/systemtap/examples/process/sleeptime.meta
-rwxr-xr-x -          -                1232 ./usr/share/systemtap/examples/process/sleeptime.stp
-rw-r--r-- -          -                 854 ./usr/share/systemtap/examples/process/spawn_seeker.meta
-rwxr-xr-x -          -                1531 ./usr/share/systemtap/examples/process/spawn_seeker.stp
-rw-r--r-- -          -                1318 ./usr/share/systemtap/examples/process/spawn_seeker.txt
-rw-r--r-- -          -                 385 ./usr/share/systemtap/examples/process/strace.meta
-rwxr-xr-x -          -                2081 ./usr/share/systemtap/examples/process/strace.stp
-rw-r--r-- -          -                3672 ./usr/share/systemtap/examples/process/strace.txt
-rw-r--r-- -          -                 514 ./usr/share/systemtap/examples/process/syscalls_by_pid.meta
-rwxr-xr-x -          -                 638 ./usr/share/systemtap/examples/process/syscalls_by_pid.stp
-rw-r--r-- -          -                 597 ./usr/share/systemtap/examples/process/syscalls_by_pid.txt
-rw-r--r-- -          -                 531 ./usr/share/systemtap/examples/process/syscalls_by_proc.meta
-rwxr-xr-x -          -                 697 ./usr/share/systemtap/examples/process/syscalls_by_proc.stp
-rw-r--r-- -          -                1130 ./usr/share/systemtap/examples/process/syscalls_by_proc.txt
-rwxr-xr-x -          -                6291 ./usr/share/systemtap/examples/process/syscalltimes
-rw-r--r-- -          -                 454 ./usr/share/systemtap/examples/process/syscalltimes.meta
-rw-r--r-- -          -               11459 ./usr/share/systemtap/examples/process/syscalltimes.txt
-rw-r--r-- -          -                 346 ./usr/share/systemtap/examples/process/thread-business.meta
-rwxr-xr-x -          -                 871 ./usr/share/systemtap/examples/process/thread-business.stp
-rw-r--r-- -          -                2823 ./usr/share/systemtap/examples/process/thread-business.txt
-rw-r--r-- -          -                 585 ./usr/share/systemtap/examples/process/threadstacks.meta
-rwxr-xr-x -          -                1467 ./usr/share/systemtap/examples/process/threadstacks.stp
-rw-r--r-- -          -                  79 ./usr/share/systemtap/examples/process/threadstacks.tcl
-rw-r--r-- -          -                 658 ./usr/share/systemtap/examples/process/wait4time.meta
-rwxr-xr-x -          -                1352 ./usr/share/systemtap/examples/process/wait4time.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/examples/profiling
-rw-r--r-- -          -                1064 ./usr/share/systemtap/examples/profiling/container_check.meta
-rwxr-xr-x -          -                6328 ./usr/share/systemtap/examples/profiling/container_check.stp
-rw-r--r-- -          -                 456 ./usr/share/systemtap/examples/profiling/errno.meta
-rwxr-xr-x -          -                 989 ./usr/share/systemtap/examples/profiling/errno.stp
-rw-r--r-- -          -                 783 ./usr/share/systemtap/examples/profiling/fileline-profile.meta
-rwxr-xr-x -          -                1223 ./usr/share/systemtap/examples/profiling/fileline-profile.stp
-rw-r--r-- -          -                 512 ./usr/share/systemtap/examples/profiling/fntimes.meta
-rwxr-xr-x -          -                 875 ./usr/share/systemtap/examples/profiling/fntimes.stp
-rw-r--r-- -          -                1375 ./usr/share/systemtap/examples/profiling/fntimes.txt
-rw-r--r-- -          -                 649 ./usr/share/systemtap/examples/profiling/functioncallcount.meta
-rwxr-xr-x -          -                 495 ./usr/share/systemtap/examples/profiling/functioncallcount.stp
-rw-r--r-- -          -                 399 ./usr/share/systemtap/examples/profiling/functioncallcount.tcl
-rwxr-xr-x -          -                 539 ./usr/share/systemtap/examples/profiling/graphcall.stp
-rw-r--r-- -          -                1209 ./usr/share/systemtap/examples/profiling/ioctl_handler.meta
-rwxr-xr-x -          -                 816 ./usr/share/systemtap/examples/profiling/ioctl_handler.stp
-rw-r--r-- -          -                 877 ./usr/share/systemtap/examples/profiling/latencytap.meta
-rwxr-xr-x -          -               12205 ./usr/share/systemtap/examples/profiling/latencytap.stp
-rw-r--r-- -          -                 140 ./usr/share/systemtap/examples/profiling/latencytap.tcl
-rw-r--r-- -          -                2104 ./usr/share/systemtap/examples/profiling/latencytap.txt
-rw-r--r-- -          -                 688 ./usr/share/systemtap/examples/profiling/linetimes.meta
-rwxr-xr-x -          -                1613 ./usr/share/systemtap/examples/profiling/linetimes.stp
-rw-r--r-- -          -               13936 ./usr/share/systemtap/examples/profiling/linetimes.txt
-rw-r--r-- -          -                 578 ./usr/share/systemtap/examples/profiling/perf.meta
-rwxr-xr-x -          -                1941 ./usr/share/systemtap/examples/profiling/perf.stp
-rw-r--r-- -          -                 166 ./usr/share/systemtap/examples/profiling/perf.tcl
-rw-r--r-- -          -                 895 ./usr/share/systemtap/examples/profiling/periodic.meta
-rwxr-xr-x -          -                2664 ./usr/share/systemtap/examples/profiling/periodic.stp
-rw-r--r-- -          -                 420 ./usr/share/systemtap/examples/profiling/pf2.meta
-rwxr-xr-x -          -                 375 ./usr/share/systemtap/examples/profiling/pf2.stp
-rw-r--r-- -          -                 406 ./usr/share/systemtap/examples/profiling/pf2.txt
-rw-r--r-- -          -                 439 ./usr/share/systemtap/examples/profiling/pf3.meta
-rwxr-xr-x -          -                 997 ./usr/share/systemtap/examples/profiling/pf3.stp
-rw-r--r-- -          -                 489 ./usr/share/systemtap/examples/profiling/pf3.txt
-rw-r--r-- -          -                 471 ./usr/share/systemtap/examples/profiling/pf4.meta
-rwxr-xr-x -          -                 957 ./usr/share/systemtap/examples/profiling/pf4.stp
-rw-r--r-- -          -                  79 ./usr/share/systemtap/examples/profiling/pf4.tcl
-rw-r--r-- -          -                 754 ./usr/share/systemtap/examples/profiling/pf4.txt
-rw-r--r-- -          -                 780 ./usr/share/systemtap/examples/profiling/sched_switch.meta
-rwxr-xr-x -          -                2132 ./usr/share/systemtap/examples/profiling/sched_switch.stp
-rw-r--r-- -          -                1067 ./usr/share/systemtap/examples/profiling/syscallerrorsbypid.meta
-rwxr-xr-x -          -                 955 ./usr/share/systemtap/examples/profiling/syscallerrorsbypid.stp
-rw-r--r-- -          -                1072 ./usr/share/systemtap/examples/profiling/syscalllatency.meta
-rwxr-xr-x -          -                 994 ./usr/share/systemtap/examples/profiling/syscalllatency.stp
-rw-r--r-- -          -                1020 ./usr/share/systemtap/examples/profiling/syscallsbypid.meta
-rwxr-xr-x -          -                 790 ./usr/share/systemtap/examples/profiling/syscallsbypid.stp
-rw-r--r-- -          -                 489 ./usr/share/systemtap/examples/profiling/syscallsrw.meta
-rwxr-xr-x -          -                 376 ./usr/share/systemtap/examples/profiling/syscallsrw.stp
-rw-r--r-- -          -                 384 ./usr/share/systemtap/examples/profiling/thread-times.meta
-rwxr-xr-x -          -                1246 ./usr/share/systemtap/examples/profiling/thread-times.stp
-rw-r--r-- -          -                1009 ./usr/share/systemtap/examples/profiling/thread-times.txt
-rw-r--r-- -          -                 728 ./usr/share/systemtap/examples/profiling/timeout.meta
-rwxr-xr-x -          -                2780 ./usr/share/systemtap/examples/profiling/timeout.stp
-rw-r--r-- -          -                 446 ./usr/share/systemtap/examples/profiling/topsys.meta
-rwxr-xr-x -          -                 750 ./usr/share/systemtap/examples/profiling/topsys.stp
-rw-r--r-- -          -                1065 ./usr/share/systemtap/examples/profiling/ucalls.meta
-rwxr-xr-x -          -                3549 ./usr/share/systemtap/examples/profiling/ucalls.stp
-rw-r--r-- -          -                6178 ./usr/share/systemtap/examples/README
drwxr-xr-x -          -                4096 ./usr/share/systemtap/examples/security-band-aids
-rw-r--r-- -          -                 209 ./usr/share/systemtap/examples/security-band-aids/cve-2008-0600.meta
-rw-r--r-- -          -                 144 ./usr/share/systemtap/examples/security-band-aids/cve-2008-0600.stp
-rw-r--r-- -          -                 345 ./usr/share/systemtap/examples/security-band-aids/cve-2008-0600.txt
-rw-r--r-- -          -                 209 ./usr/share/systemtap/examples/security-band-aids/cve-2011-4127.meta
-rw-r--r-- -          -                 297 ./usr/share/systemtap/examples/security-band-aids/cve-2011-4127.stp
-rw-r--r-- -          -                 209 ./usr/share/systemtap/examples/security-band-aids/cve-2012-0056.meta
-rw-r--r-- -          -                  75 ./usr/share/systemtap/examples/security-band-aids/cve-2012-0056.stp
-rw-r--r-- -          -                 209 ./usr/share/systemtap/examples/security-band-aids/cve-2013-2094.meta
-rw-r--r-- -          -                 418 ./usr/share/systemtap/examples/security-band-aids/cve-2013-2094.stp
-rw-r--r-- -          -                 209 ./usr/share/systemtap/examples/security-band-aids/cve-2014-7169.meta
-rw-r--r-- -          -                  82 ./usr/share/systemtap/examples/security-band-aids/cve-2014-7169.stp
-rw-r--r-- -          -                 209 ./usr/share/systemtap/examples/security-band-aids/cve-2015-0235.meta
-rw-r--r-- -          -                2222 ./usr/share/systemtap/examples/security-band-aids/cve-2015-0235.stp
-rw-r--r-- -          -                 209 ./usr/share/systemtap/examples/security-band-aids/cve-2015-3456.meta
-rw-r--r-- -          -                 234 ./usr/share/systemtap/examples/security-band-aids/cve-2015-3456.stp
-rw-r--r-- -          -                 209 ./usr/share/systemtap/examples/security-band-aids/cve-2015-7547.meta
-rw-r--r-- -          -                 153 ./usr/share/systemtap/examples/security-band-aids/cve-2015-7547.stp
-rw-r--r-- -          -                 209 ./usr/share/systemtap/examples/security-band-aids/cve-2016-0728.meta
-rw-r--r-- -          -                2620 ./usr/share/systemtap/examples/security-band-aids/cve-2016-0728.stp
-rw-r--r-- -          -                 209 ./usr/share/systemtap/examples/security-band-aids/cve-2016-5195.meta
-rw-r--r-- -          -                 371 ./usr/share/systemtap/examples/security-band-aids/cve-2016-5195.stp
-rw-r--r-- -          -                 209 ./usr/share/systemtap/examples/security-band-aids/cve-2017-6074.meta
-rw-r--r-- -          -                 265 ./usr/share/systemtap/examples/security-band-aids/cve-2017-6074.stp
-rw-r--r-- -          -                 218 ./usr/share/systemtap/examples/security-band-aids/cve-2018-1000001.meta
-rw-r--r-- -          -                1054 ./usr/share/systemtap/examples/security-band-aids/cve-2018-1000001.stp
-rw-r--r-- -          -                 212 ./usr/share/systemtap/examples/security-band-aids/cve-2018-14634.meta
-rw-r--r-- -          -                1191 ./usr/share/systemtap/examples/security-band-aids/cve-2018-14634.stp
-rw-r--r-- -          -                 209 ./usr/share/systemtap/examples/security-band-aids/cve-2018-6485.meta
-rw-r--r-- -          -                1377 ./usr/share/systemtap/examples/security-band-aids/cve-2018-6485.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/examples/stapgames
-rw-r--r-- -          -                 250 ./usr/share/systemtap/examples/stapgames/2048.meta
-rw-r--r-- -          -                4982 ./usr/share/systemtap/examples/stapgames/2048.stp
-rw-r--r-- -          -                 251 ./usr/share/systemtap/examples/stapgames/block.meta
-rwxr-xr-x -          -                2403 ./usr/share/systemtap/examples/stapgames/block.stp
-rw-r--r-- -          -                 187 ./usr/share/systemtap/examples/stapgames/eater.meta
-rwxr-xr-x -          -                3303 ./usr/share/systemtap/examples/stapgames/eater.stp
-rw-r--r-- -          -                 216 ./usr/share/systemtap/examples/stapgames/lifegame.meta
-rwxr-xr-x -          -                1122 ./usr/share/systemtap/examples/stapgames/lifegame.stp
-rw-r--r-- -          -                 338 ./usr/share/systemtap/examples/stapgames/pingpong.meta
-rwxr-xr-x -          -                 772 ./usr/share/systemtap/examples/stapgames/pingpong.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/examples/stapgames/tapset
-rw-r--r-- -          -                1896 ./usr/share/systemtap/examples/stapgames/tapset/audio.stp
-rw-r--r-- -          -                 962 ./usr/share/systemtap/examples/stapgames/tapset/cursor.stp
-rw-r--r-- -          -                 660 ./usr/share/systemtap/examples/stapgames/tapset/game.stp
-rw-r--r-- -          -                1175 ./usr/share/systemtap/examples/stapgames/tapset/gmtty.stp
-rw-r--r-- -          -                2402 ./usr/share/systemtap/examples/stapgames/tapset/input.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/examples/virtualization
-rw-r--r-- -          -                1210 ./usr/share/systemtap/examples/virtualization/kvm_service_time.meta
-rwxr-xr-x -          -                2774 ./usr/share/systemtap/examples/virtualization/kvm_service_time.stp
-rw-r--r-- -          -                3211 ./usr/share/systemtap/examples/virtualization/kvm_service_time.txt
-rw-r--r-- -          -                 623 ./usr/share/systemtap/examples/virtualization/qemu_count.meta
-rwxr-xr-x -          -                 469 ./usr/share/systemtap/examples/virtualization/qemu_count.stp
-rw-r--r-- -          -                 695 ./usr/share/systemtap/examples/virtualization/qemu_io.meta
-rwxr-xr-x -          -                 785 ./usr/share/systemtap/examples/virtualization/qemu_io.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/runtime
-rw-r--r-- -          -                 523 ./usr/share/systemtap/runtime/addr-map.c
-rw-r--r-- -          -                1156 ./usr/share/systemtap/runtime/addr-map.h
-rw-r--r-- -          -                 498 ./usr/share/systemtap/runtime/alloc.c
-rw-r--r-- -          -                 483 ./usr/share/systemtap/runtime/arith.c
-rw-r--r-- -          -                6576 ./usr/share/systemtap/runtime/common_probe_context.h
-rw-r--r-- -          -                 415 ./usr/share/systemtap/runtime/common_session_state.h
-rw-r--r-- -          -                3661 ./usr/share/systemtap/runtime/compatdefs.h
-rw-r--r-- -          -                 585 ./usr/share/systemtap/runtime/copy.c
-rw-r--r-- -          -                 485 ./usr/share/systemtap/runtime/debug.h
-rw-r--r-- -          -                 508 ./usr/share/systemtap/runtime/io.c
-rw-r--r-- -          -                 182 ./usr/share/systemtap/runtime/k_syms.h
drwxr-xr-x -          -               12288 ./usr/share/systemtap/runtime/linux
-rw-r--r-- -          -                4311 ./usr/share/systemtap/runtime/linux/access_process_vm.h
-rw-r--r-- -          -                9749 ./usr/share/systemtap/runtime/linux/addr-map.c
-rw-r--r-- -          -               15892 ./usr/share/systemtap/runtime/linux/alloc.c
-rw-r--r-- -          -               16799 ./usr/share/systemtap/runtime/linux/arith.c
-rw-r--r-- -          -                  90 ./usr/share/systemtap/runtime/linux/autoconf-access_ok_2args.c
-rw-r--r-- -          -                 118 ./usr/share/systemtap/runtime/linux/autoconf-alloc-percpu-align.c
-rw-r--r-- -          -                  51 ./usr/share/systemtap/runtime/linux/autoconf-asm-syscall.c
-rw-r--r-- -          -                  94 ./usr/share/systemtap/runtime/linux/autoconf-atomic_fetch_add_unless.c
-rw-r--r-- -          -                 824 ./usr/share/systemtap/runtime/linux/autoconf-bio-bi_opf.c
-rw-r--r-- -          -                 359 ./usr/share/systemtap/runtime/linux/autoconf-blk-types.c
-rw-r--r-- -          -                 448 ./usr/share/systemtap/runtime/linux/autoconf-compat_sigaction.c
-rw-r--r-- -          -                  53 ./usr/share/systemtap/runtime/linux/autoconf-compat-utimbuf.c
-rw-r--r-- -          -                  63 ./usr/share/systemtap/runtime/linux/autoconf-constant-tsc.c
-rw-r--r-- -          -                1277 ./usr/share/systemtap/runtime/linux/autoconf-cpu-clock.c
-rw-r--r-- -          -                 121 ./usr/share/systemtap/runtime/linux/autoconf-dpath-path.c
-rw-r--r-- -          -                 191 ./usr/share/systemtap/runtime/linux/autoconf-from_kuid_munged.c
-rw-r--r-- -          -                 354 ./usr/share/systemtap/runtime/linux/autoconf-fs_supers-hlist.c
-rw-r--r-- -          -                  56 ./usr/share/systemtap/runtime/linux/autoconf-generated-compile.c
-rw-r--r-- -          -                 107 ./usr/share/systemtap/runtime/linux/autoconf-get-kretprobe.c
-rw-r--r-- -          -                1549 ./usr/share/systemtap/runtime/linux/autoconf-get_user_pages-flags.c
-rw-r--r-- -          -                1301 ./usr/share/systemtap/runtime/linux/autoconf-get_user_pages-notask_struct.c
-rw-r--r-- -          -                1550 ./usr/share/systemtap/runtime/linux/autoconf-get_user_pages_remote-flags.c
-rw-r--r-- -          -                1331 ./usr/share/systemtap/runtime/linux/autoconf-get_user_pages_remote-flags_locked.c
-rw-r--r-- -          -                1438 ./usr/share/systemtap/runtime/linux/autoconf-get_user_pages_remote-notask_struct.c
-rw-r--r-- -          -                 219 ./usr/share/systemtap/runtime/linux/autoconf-grsecurity.c
-rw-r--r-- -          -                 296 ./usr/share/systemtap/runtime/linux/autoconf-hlist-4args.c
-rw-r--r-- -          -                 126 ./usr/share/systemtap/runtime/linux/autoconf-hrtimer-getset-expires.c
-rw-r--r-- -          -                  87 ./usr/share/systemtap/runtime/linux/autoconf-hrtimer-rel.c
-rw-r--r-- -          -                 315 ./usr/share/systemtap/runtime/linux/autoconf-hw_breakpoint_context.c
-rw-r--r-- -          -                 173 ./usr/share/systemtap/runtime/linux/autoconf-inode-private.c
-rw-r--r-- -          -                 172 ./usr/share/systemtap/runtime/linux/autoconf-inode-rwsem.c
-rw-r--r-- -          -                 264 ./usr/share/systemtap/runtime/linux/autoconf-inode-uretprobes.c
-rw-r--r-- -          -                1030 ./usr/share/systemtap/runtime/linux/autoconf-kernel_read-new-args.c
-rw-r--r-- -          -                  90 ./usr/share/systemtap/runtime/linux/autoconf-kprobe-symbol-name.c
-rw-r--r-- -          -                  98 ./usr/share/systemtap/runtime/linux/autoconf-ktime-get-real.c
-rw-r--r-- -          -                1678 ./usr/share/systemtap/runtime/linux/autoconf-linux-sched_headers.c
-rw-r--r-- -          -                1282 ./usr/share/systemtap/runtime/linux/autoconf-local-clock.c
-rw-r--r-- -          -                 102 ./usr/share/systemtap/runtime/linux/autoconf-lockdown-debugfs.c
-rw-r--r-- -          -                  90 ./usr/share/systemtap/runtime/linux/autoconf-lockdown-kernel.c
-rw-r--r-- -          -                 175 ./usr/share/systemtap/runtime/linux/autoconf-mmap_lock.c
-rw-r--r-- -          -                 117 ./usr/share/systemtap/runtime/linux/autoconf-mm-context-vdso-base.c
-rw-r--r-- -          -                 114 ./usr/share/systemtap/runtime/linux/autoconf-mm-context-vdso.c
-rw-r--r-- -          -                  72 ./usr/share/systemtap/runtime/linux/autoconf-mm-shmempages.c
-rw-r--r-- -          -                  51 ./usr/share/systemtap/runtime/linux/autoconf-mod_kallsyms.c
-rw-r--r-- -          -                  52 ./usr/share/systemtap/runtime/linux/autoconf-module_layout.c
-rw-r--r-- -          -                 158 ./usr/share/systemtap/runtime/linux/autoconf-module-sect-attrs.c
-rw-r--r-- -          -                  96 ./usr/share/systemtap/runtime/linux/autoconf-nameidata.c
-rw-r--r-- -          -                 602 ./usr/share/systemtap/runtime/linux/autoconf-netfilter-313b.c
-rw-r--r-- -          -                 769 ./usr/share/systemtap/runtime/linux/autoconf-netfilter-4_1.c
-rw-r--r-- -          -                1460 ./usr/share/systemtap/runtime/linux/autoconf-netfilter-4_4.c
-rw-r--r-- -          -                 422 ./usr/share/systemtap/runtime/linux/autoconf-netfilter.c
-rw-r--r-- -          -                 357 ./usr/share/systemtap/runtime/linux/autoconf-old-inode-uprobes.c
-rw-r--r-- -          -                 957 ./usr/share/systemtap/runtime/linux/autoconf-oneachcpu-retry.c
-rw-r--r-- -          -                 137 ./usr/share/systemtap/runtime/linux/autoconf-pagefault_disable.c
-rw-r--r-- -          -                 444 ./usr/share/systemtap/runtime/linux/autoconf-perf-structpid.c
-rw-r--r-- -          -                 158 ./usr/share/systemtap/runtime/linux/autoconf-procfs-owner.c
-rw-r--r-- -          -                 566 ./usr/share/systemtap/runtime/linux/autoconf-proc_ops.c
-rw-r--r-- -          -                 385 ./usr/share/systemtap/runtime/linux/autoconf-rcu_is_watching.c
-rw-r--r-- -          -                 427 ./usr/share/systemtap/runtime/linux/autoconf-real-parent.c
-rw-r--r-- -          -                 239 ./usr/share/systemtap/runtime/linux/autoconf-regset.c
-rw-r--r-- -          -                 920 ./usr/share/systemtap/runtime/linux/autoconf-relay_buf-per_cpu_ptr.c
-rw-r--r-- -          -                 730 ./usr/share/systemtap/runtime/linux/autoconf-relay-umode_t.c
-rw-r--r-- -          -                 112 ./usr/share/systemtap/runtime/linux/autoconf-ring_buffer-flags.c
-rw-r--r-- -          -                 296 ./usr/share/systemtap/runtime/linux/autoconf-ring_buffer_lost_events.c
-rw-r--r-- -          -                 181 ./usr/share/systemtap/runtime/linux/autoconf-ring_buffer_read_prepare.c
-rw-r--r-- -          -                 501 ./usr/share/systemtap/runtime/linux/autoconf-save-stack-trace.c
-rw-r--r-- -          -                 498 ./usr/share/systemtap/runtime/linux/autoconf-save-stack-trace-no-bp.c
-rw-r--r-- -          -                 221 ./usr/share/systemtap/runtime/linux/autoconf-set_fs.c
-rw-r--r-- -          -                 166 ./usr/share/systemtap/runtime/linux/autoconf-smpcall-4args.c
-rw-r--r-- -          -                 169 ./usr/share/systemtap/runtime/linux/autoconf-smpcall-5args.c
-rw-r--r-- -          -                 409 ./usr/share/systemtap/runtime/linux/autoconf-stacktrace_ops-int-address.c
-rw-r--r-- -          -                 188 ./usr/share/systemtap/runtime/linux/autoconf-stacktrace_ops-warning.c
-rw-r--r-- -          -                 176 ./usr/share/systemtap/runtime/linux/autoconf-stack-trace-save-regs.c
-rw-r--r-- -          -                 239 ./usr/share/systemtap/runtime/linux/autoconf-syscall_get_args_3args.c
-rw-r--r-- -          -                 152 ./usr/share/systemtap/runtime/linux/autoconf-task-uid.c
-rw-r--r-- -          -                 219 ./usr/share/systemtap/runtime/linux/autoconf-task_work-struct.c
-rw-r--r-- -          -                  53 ./usr/share/systemtap/runtime/linux/autoconf-time32.c
-rw-r--r-- -          -                  52 ./usr/share/systemtap/runtime/linux/autoconf-time32-old.c
-rw-r--r-- -          -                 232 ./usr/share/systemtap/runtime/linux/autoconf-timerfd.c
-rw-r--r-- -          -                 493 ./usr/share/systemtap/runtime/linux/autoconf-tracepoint-has-data.c
-rw-r--r-- -          -                 233 ./usr/share/systemtap/runtime/linux/autoconf-tracepoint-strings.c
-rw-r--r-- -          -                 151 ./usr/share/systemtap/runtime/linux/autoconf-trace-printk.c
-rw-r--r-- -          -                  28 ./usr/share/systemtap/runtime/linux/autoconf-uaccess.c
-rw-r--r-- -          -                  52 ./usr/share/systemtap/runtime/linux/autoconf-uapi-mount.c
-rw-r--r-- -          -                  90 ./usr/share/systemtap/runtime/linux/autoconf-udelay_simple.c
-rw-r--r-- -          -                  50 ./usr/share/systemtap/runtime/linux/autoconf-uidgid.c
-rw-r--r-- -          -                 326 ./usr/share/systemtap/runtime/linux/autoconf-unwind-stack-trace.c
-rw-r--r-- -          -                 374 ./usr/share/systemtap/runtime/linux/autoconf-uprobe-get-pc.c
-rw-r--r-- -          -                 273 ./usr/share/systemtap/runtime/linux/autoconf-utrace-regset.c
-rw-r--r-- -          -                1712 ./usr/share/systemtap/runtime/linux/autoconf-utrace-via-tracepoints.c
-rw-r--r-- -          -                 141 ./usr/share/systemtap/runtime/linux/autoconf-vm-area-pte.c
-rw-r--r-- -          -                 217 ./usr/share/systemtap/runtime/linux/autoconf-walk-stack.c
-rw-r--r-- -          -                  90 ./usr/share/systemtap/runtime/linux/autoconf-x86-fs.c
-rw-r--r-- -          -                  90 ./usr/share/systemtap/runtime/linux/autoconf-x86-gs.c
-rw-r--r-- -          -                 140 ./usr/share/systemtap/runtime/linux/autoconf-x86-uniregs.c
-rw-r--r-- -          -                  91 ./usr/share/systemtap/runtime/linux/autoconf-x86-xfs.c
-rw-r--r-- -          -                3008 ./usr/share/systemtap/runtime/linux/common_session_state.h
-rw-r--r-- -          -                 858 ./usr/share/systemtap/runtime/linux/compat_net.h
-rw-r--r-- -          -                4409 ./usr/share/systemtap/runtime/linux/compat_structs.h
-rw-r--r-- -          -               67872 ./usr/share/systemtap/runtime/linux/compat_unistd.h
-rw-r--r-- -          -                2717 ./usr/share/systemtap/runtime/linux/copy.c
-rw-r--r-- -          -                2978 ./usr/share/systemtap/runtime/linux/debug.h
-rw-r--r-- -          -                4831 ./usr/share/systemtap/runtime/linux/io.c
-rw-r--r-- -          -               14874 ./usr/share/systemtap/runtime/linux/itrace.c
-rw-r--r-- -          -               24270 ./usr/share/systemtap/runtime/linux/kprobes.c
-rw-r--r-- -          -               29874 ./usr/share/systemtap/runtime/linux/loc2c-runtime.h
-rw-r--r-- -          -                1220 ./usr/share/systemtap/runtime/linux/map_list.h
-rw-r--r-- -          -                4218 ./usr/share/systemtap/runtime/linux/map_runtime.h
-rw-r--r-- -          -                7128 ./usr/share/systemtap/runtime/linux/namespaces.h
-rw-r--r-- -          -                1410 ./usr/share/systemtap/runtime/linux/netfilter.c
-rw-r--r-- -          -                7596 ./usr/share/systemtap/runtime/linux/perf.c
-rw-r--r-- -          -                 336 ./usr/share/systemtap/runtime/linux/perf_event_counter_context.c
-rw-r--r-- -          -                1249 ./usr/share/systemtap/runtime/linux/perf.h
-rw-r--r-- -          -                 278 ./usr/share/systemtap/runtime/linux/perf_probe_handler_nmi.c
-rw-r--r-- -          -                 959 ./usr/share/systemtap/runtime/linux/perf_read.h
-rw-r--r-- -          -                9276 ./usr/share/systemtap/runtime/linux/print.c
-rw-r--r-- -          -                1807 ./usr/share/systemtap/runtime/linux/probe_lock.h
-rw-r--r-- -          -               13241 ./usr/share/systemtap/runtime/linux/regs.c
-rw-r--r-- -          -                3741 ./usr/share/systemtap/runtime/linux/regs-ia64.c
-rw-r--r-- -          -                4720 ./usr/share/systemtap/runtime/linux/runtime_context.h
-rw-r--r-- -          -                1041 ./usr/share/systemtap/runtime/linux/runtime_defines.h
-rw-r--r-- -          -               11940 ./usr/share/systemtap/runtime/linux/runtime.h
-rw-r--r-- -          -                 343 ./usr/share/systemtap/runtime/linux/stap_mmap_lock.h
-rw-r--r-- -          -                1774 ./usr/share/systemtap/runtime/linux/stat_runtime.h
-rw-r--r-- -          -                1181 ./usr/share/systemtap/runtime/linux/stp_tls.h
-rw-r--r-- -          -               11431 ./usr/share/systemtap/runtime/linux/stp_tracepoint.c
-rw-r--r-- -          -                2270 ./usr/share/systemtap/runtime/linux/stp_tracepoint.h
-rw-r--r-- -          -                 976 ./usr/share/systemtap/runtime/linux/syscalls-common.h
-rw-r--r-- -          -               58827 ./usr/share/systemtap/runtime/linux/task_finder2.c
-rw-r--r-- -          -               53860 ./usr/share/systemtap/runtime/linux/task_finder.c
-rw-r--r-- -          -                5194 ./usr/share/systemtap/runtime/linux/task_finder_map.c
-rw-r--r-- -          -                2442 ./usr/share/systemtap/runtime/linux/task_finder_stubs.c
-rw-r--r-- -          -                1283 ./usr/share/systemtap/runtime/linux/task_work_compatibility.h
-rw-r--r-- -          -                2200 ./usr/share/systemtap/runtime/linux/timer.c
-rw-r--r-- -          -                2317 ./usr/share/systemtap/runtime/linux/timer_compatibility.h
-rw-r--r-- -          -                1383 ./usr/share/systemtap/runtime/linux/timer.h
drwxr-xr-x -          -                4096 ./usr/share/systemtap/runtime/linux/uprobes
drwxr-xr-x -          -                4096 ./usr/share/systemtap/runtime/linux/uprobes2
-rw-r--r-- -          -                 376 ./usr/share/systemtap/runtime/linux/uprobes2/uprobes_arch.c
-rw-r--r-- -          -                 376 ./usr/share/systemtap/runtime/linux/uprobes2/uprobes_arch.h
-rw-r--r-- -          -               62599 ./usr/share/systemtap/runtime/linux/uprobes2/uprobes_arm.c
-rw-r--r-- -          -                3019 ./usr/share/systemtap/runtime/linux/uprobes2/uprobes_arm.h
-rw-r--r-- -          -               87550 ./usr/share/systemtap/runtime/linux/uprobes2/uprobes.c
-rw-r--r-- -          -               12161 ./usr/share/systemtap/runtime/linux/uprobes2/uprobes.h
-rw-r--r-- -          -               24541 ./usr/share/systemtap/runtime/linux/uprobes2/uprobes_x86.c
-rw-r--r-- -          -                3642 ./usr/share/systemtap/runtime/linux/uprobes2/uprobes_x86.h
-rw-r--r-- -          -               15573 ./usr/share/systemtap/runtime/linux/uprobes-common.c
-rw-r--r-- -          -                1653 ./usr/share/systemtap/runtime/linux/uprobes-common.h
-rw-r--r-- -          -                 484 ./usr/share/systemtap/runtime/linux/uprobes-inc.h
-rw-r--r-- -          -               34065 ./usr/share/systemtap/runtime/linux/uprobes-inode.c
-rw-r--r-- -          -                2238 ./usr/share/systemtap/runtime/linux/uprobes/Makefile
-rw-r--r-- -          -                 278 ./usr/share/systemtap/runtime/linux/uprobes/uprobes_arch.c
-rw-r--r-- -          -                 278 ./usr/share/systemtap/runtime/linux/uprobes/uprobes_arch.h
-rw-r--r-- -          -               80444 ./usr/share/systemtap/runtime/linux/uprobes/uprobes.c
-rw-r--r-- -          -               12337 ./usr/share/systemtap/runtime/linux/uprobes/uprobes.h
-rw-r--r-- -          -               12867 ./usr/share/systemtap/runtime/linux/uprobes/uprobes_i386.c
-rw-r--r-- -          -                2530 ./usr/share/systemtap/runtime/linux/uprobes/uprobes_i386.h
-rw-r--r-- -          -                8752 ./usr/share/systemtap/runtime/linux/uprobes/uprobes_ppc.c
-rw-r--r-- -          -                2330 ./usr/share/systemtap/runtime/linux/uprobes/uprobes_ppc.h
-rw-r--r-- -          -                5754 ./usr/share/systemtap/runtime/linux/uprobes/uprobes_s390.c
-rw-r--r-- -          -                2833 ./usr/share/systemtap/runtime/linux/uprobes/uprobes_s390.h
-rw-r--r-- -          -               24436 ./usr/share/systemtap/runtime/linux/uprobes/uprobes_x86_64.c
-rw-r--r-- -          -                2866 ./usr/share/systemtap/runtime/linux/uprobes/uprobes_x86_64.h
-rw-r--r-- -          -               25144 ./usr/share/systemtap/runtime/linux/uprobes/uprobes_x86.c
-rw-r--r-- -          -                3383 ./usr/share/systemtap/runtime/linux/uprobes/uprobes_x86.h
-rw-r--r-- -          -               11196 ./usr/share/systemtap/runtime/loc2c-runtime.h
-rw-r--r-- -          -               14443 ./usr/share/systemtap/runtime/map.c
-rw-r--r-- -          -               25987 ./usr/share/systemtap/runtime/map-gen.c
-rw-r--r-- -          -                5918 ./usr/share/systemtap/runtime/map.h
-rw-r--r-- -          -                3463 ./usr/share/systemtap/runtime/map-stat.c
-rw-r--r-- -          -                2644 ./usr/share/systemtap/runtime/mempool.c
-rw-r--r-- -          -                 487 ./usr/share/systemtap/runtime/namespaces.h
-rw-r--r-- -          -                8371 ./usr/share/systemtap/runtime/pmap-gen.c
-rw-r--r-- -          -                 486 ./usr/share/systemtap/runtime/print.c
-rw-r--r-- -          -                1254 ./usr/share/systemtap/runtime/print_flush.c
-rw-r--r-- -          -                 872 ./usr/share/systemtap/runtime/print.h
-rw-r--r-- -          -                 498 ./usr/share/systemtap/runtime/probe_lock.h
-rw-r--r-- -          -                3981 ./usr/share/systemtap/runtime/procfs.c
-rw-r--r-- -          -                2278 ./usr/share/systemtap/runtime/proc_fs_compatibility.h
-rw-r--r-- -          -                4582 ./usr/share/systemtap/runtime/procfs-probes.c
-rw-r--r-- -          -                 674 ./usr/share/systemtap/runtime/procfs-probes.h
-rw-r--r-- -          -                1512 ./usr/share/systemtap/runtime/ptrace_compatibility.h
-rw-r--r-- -          -                4280 ./usr/share/systemtap/runtime/regs.c
-rw-r--r-- -          -                2203 ./usr/share/systemtap/runtime/regs.h
-rw-r--r-- -          -                 669 ./usr/share/systemtap/runtime/runtime_context.h
-rw-r--r-- -          -                3582 ./usr/share/systemtap/runtime/runtime_defines.h
-rw-r--r-- -          -                 928 ./usr/share/systemtap/runtime/runtime.h
drwxr-xr-x -          -                4096 ./usr/share/systemtap/runtime/softfloat
-rw-r--r-- -          -               76770 ./usr/share/systemtap/runtime/softfloat.c
-rw-r--r-- -          -                5125 ./usr/share/systemtap/runtime/softfloat.h
-rw-r--r-- -          -                4620 ./usr/share/systemtap/runtime/softfloat/internals.h
-rw-r--r-- -          -                4291 ./usr/share/systemtap/runtime/softfloat/opt-GCC.h
-rw-r--r-- -          -                2086 ./usr/share/systemtap/runtime/softfloat/platform.h
-rw-r--r-- -          -               17502 ./usr/share/systemtap/runtime/softfloat/primitives.h
-rw-r--r-- -          -                3401 ./usr/share/systemtap/runtime/softfloat/primitiveTypes.h
-rw-r--r-- -          -                4049 ./usr/share/systemtap/runtime/softfloat/softfloat_types.h
-rw-r--r-- -          -                8201 ./usr/share/systemtap/runtime/softfloat/specialize.h
-rw-r--r-- -          -                1688 ./usr/share/systemtap/runtime/stack-arm.c
-rw-r--r-- -          -               21265 ./usr/share/systemtap/runtime/stack.c
-rw-r--r-- -          -                1083 ./usr/share/systemtap/runtime/stack-ia64.c
-rw-r--r-- -          -                 125 ./usr/share/systemtap/runtime/stack-mips.c
-rw-r--r-- -          -                2362 ./usr/share/systemtap/runtime/stack-s390.c
-rw-r--r-- -          -                7421 ./usr/share/systemtap/runtime/stat.c
-rw-r--r-- -          -                8486 ./usr/share/systemtap/runtime/stat-common.c
-rw-r--r-- -          -                1964 ./usr/share/systemtap/runtime/stat.h
-rw-r--r-- -          -                3669 ./usr/share/systemtap/runtime/stp_helper_lock.h
-rw-r--r-- -          -                8632 ./usr/share/systemtap/runtime/stp_string.c
-rw-r--r-- -          -                 598 ./usr/share/systemtap/runtime/stp_string.h
-rw-r--r-- -          -                3511 ./usr/share/systemtap/runtime/stp_task_work.c
-rw-r--r-- -          -               94585 ./usr/share/systemtap/runtime/stp_utrace.c
-rw-r--r-- -          -               14010 ./usr/share/systemtap/runtime/stp_utrace.h
-rw-r--r-- -          -               39602 ./usr/share/systemtap/runtime/sym.c
-rw-r--r-- -          -                6539 ./usr/share/systemtap/runtime/sym.h
-rw-r--r-- -          -               16985 ./usr/share/systemtap/runtime/syscall.h
-rw-r--r-- -          -               11846 ./usr/share/systemtap/runtime/task_finder_vma.c
-rw-r--r-- -          -               14026 ./usr/share/systemtap/runtime/time.c
-rw-r--r-- -          -                 481 ./usr/share/systemtap/runtime/timer.c
-rw-r--r-- -          -                 482 ./usr/share/systemtap/runtime/timer.h
drwxr-xr-x -          -                4096 ./usr/share/systemtap/runtime/transport
-rw-r--r-- -          -               23301 ./usr/share/systemtap/runtime/transport/control.c
-rw-r--r-- -          -                1212 ./usr/share/systemtap/runtime/transport/control.h
-rw-r--r-- -          -                6995 ./usr/share/systemtap/runtime/transport/debugfs.c
-rw-r--r-- -          -               10619 ./usr/share/systemtap/runtime/transport/procfs.c
-rw-r--r-- -          -                 536 ./usr/share/systemtap/runtime/transport/relay_compat.h
-rw-r--r-- -          -               11484 ./usr/share/systemtap/runtime/transport/relay_v2.c
-rw-r--r-- -          -               19447 ./usr/share/systemtap/runtime/transport/symbols.c
-rw-r--r-- -          -               22553 ./usr/share/systemtap/runtime/transport/transport.c
-rw-r--r-- -          -                5269 ./usr/share/systemtap/runtime/transport/transport.h
-rw-r--r-- -          -                5117 ./usr/share/systemtap/runtime/transport/transport_msgs.h
-rw-r--r-- -          -                 603 ./usr/share/systemtap/runtime/uidgid_compatibility.h
drwxr-xr-x -          -                4096 ./usr/share/systemtap/runtime/unwind
-rw-r--r-- -          -                3027 ./usr/share/systemtap/runtime/unwind/arm64.h
-rw-r--r-- -          -                1861 ./usr/share/systemtap/runtime/unwind/arm.h
-rw-r--r-- -          -               47887 ./usr/share/systemtap/runtime/unwind.c
-rw-r--r-- -          -                4024 ./usr/share/systemtap/runtime/unwind/i386.h
-rw-r--r-- -          -                2112 ./usr/share/systemtap/runtime/unwind/mips.h
-rw-r--r-- -          -                3057 ./usr/share/systemtap/runtime/unwind/ppc64.h
-rw-r--r-- -          -                1831 ./usr/share/systemtap/runtime/unwind/s390x.h
-rw-r--r-- -          -               13944 ./usr/share/systemtap/runtime/unwind/unwind.h
-rw-r--r-- -          -                5443 ./usr/share/systemtap/runtime/unwind/x86_64.h
-rw-r--r-- -          -                3148 ./usr/share/systemtap/runtime/utrace_compatibility.h
-rw-r--r-- -          -                9498 ./usr/share/systemtap/runtime/vma.c
-rw-r--r-- -          -               23934 ./usr/share/systemtap/runtime/vsprintf.c
-rw-r--r-- -          -                1502 ./usr/share/systemtap/runtime/vsprintf.h
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset
-rw-r--r-- -          -                4178 ./usr/share/systemtap/tapset/ansi.stp
-rw-r--r-- -          -                2721 ./usr/share/systemtap/tapset/argv.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/arm
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/arm64
-rw-r--r-- -          -                9240 ./usr/share/systemtap/tapset/arm64/registers.stp
-rw-r--r-- -          -                6967 ./usr/share/systemtap/tapset/arm/registers.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/bpf
-rw-r--r-- -          -                6039 ./usr/share/systemtap/tapset/bpf/context.stp
-rw-r--r-- -          -                4727 ./usr/share/systemtap/tapset/bpf/conversions.stp
-rw-r--r-- -          -                2583 ./usr/share/systemtap/tapset/bpf/exit.stp
-rw-r--r-- -          -                 213 ./usr/share/systemtap/tapset/bpf/syscalls.stpm
-rw-r--r-- -          -                1403 ./usr/share/systemtap/tapset/bpf/target.stp
-rw-r--r-- -          -                 583 ./usr/share/systemtap/tapset/bpf/task.stp
-rw-r--r-- -          -                2178 ./usr/share/systemtap/tapset/bpf/timestamp_gtod.stp
-rw-r--r-- -          -                 539 ./usr/share/systemtap/tapset/bpf/time.stp
-rw-r--r-- -          -                8053 ./usr/share/systemtap/tapset/bpf/uconversions.stp
-rw-r--r-- -          -                 208 ./usr/share/systemtap/tapset/choose_defined.stpm
-rw-r--r-- -          -                 235 ./usr/share/systemtap/tapset/container_of.stpm
-rw-r--r-- -          -                5068 ./usr/share/systemtap/tapset/context.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/dyninst
-rw-r--r-- -          -                 645 ./usr/share/systemtap/tapset/dyninst/context-envvar.stp
-rw-r--r-- -          -                3172 ./usr/share/systemtap/tapset/dyninst/context.stp
-rw-r--r-- -          -                 909 ./usr/share/systemtap/tapset/dyninst/ctime.stp
-rw-r--r-- -          -                 717 ./usr/share/systemtap/tapset/dyninst/endian.stp
-rw-r--r-- -          -                  57 ./usr/share/systemtap/tapset/dyninst/errno.stpm
-rw-r--r-- -          -                 561 ./usr/share/systemtap/tapset/dyninst/guru-delay.stp
-rw-r--r-- -          -                 796 ./usr/share/systemtap/tapset/dyninst/inet.stp
-rw-r--r-- -          -                 213 ./usr/share/systemtap/tapset/dyninst/syscalls.stpm
-rw-r--r-- -          -                 643 ./usr/share/systemtap/tapset/dyninst/target_set.stp
-rw-r--r-- -          -                 852 ./usr/share/systemtap/tapset/dyninst/timestamp_gtod.stp
-rw-r--r-- -          -                 573 ./usr/share/systemtap/tapset/dyninst/tzinfo.stp
-rw-r--r-- -          -                9118 ./usr/share/systemtap/tapset/errno.stp
-rw-r--r-- -          -                6936 ./usr/share/systemtap/tapset/floatingpoint.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/i386
-rw-r--r-- -          -                9019 ./usr/share/systemtap/tapset/i386/registers.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/ia64
-rw-r--r-- -          -                2459 ./usr/share/systemtap/tapset/ia64/registers.stp
-rw-r--r-- -          -                  59 ./usr/share/systemtap/tapset/indent-default.stp
-rw-r--r-- -          -                4590 ./usr/share/systemtap/tapset/indent.stp
-rw-r--r-- -          -                 269 ./usr/share/systemtap/tapset/init.stp
-rw-r--r-- -          -                 263 ./usr/share/systemtap/tapset/input.stp
-rw-r--r-- -          -                1346 ./usr/share/systemtap/tapset/java.stp
drwxr-xr-x -          -               20480 ./usr/share/systemtap/tapset/linux
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/linux/arm
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/linux/arm64
-rw-r--r-- -          -                1481 ./usr/share/systemtap/tapset/linux/arm64/aux_syscalls.stp
-rw-r--r-- -          -               56260 ./usr/share/systemtap/tapset/linux/arm64/syscall_num.stp
-rw-r--r-- -          -                2084 ./usr/share/systemtap/tapset/linux/arm/aux_syscalls.stp
-rw-r--r-- -          -               30478 ./usr/share/systemtap/tapset/linux/arm/syscall_num.stp
-rw-r--r-- -          -                1782 ./usr/share/systemtap/tapset/linux/arm/sysc_execve.stp
-rw-r--r-- -          -                1563 ./usr/share/systemtap/tapset/linux/atomic.stp
-rw-r--r-- -          -              151247 ./usr/share/systemtap/tapset/linux/aux_syscalls.stp
-rw-r--r-- -          -                3148 ./usr/share/systemtap/tapset/linux/context-caller.stp
-rw-r--r-- -          -                1761 ./usr/share/systemtap/tapset/linux/context-envvar.stp
-rw-r--r-- -          -               19013 ./usr/share/systemtap/tapset/linux/context.stp
-rw-r--r-- -          -                 125 ./usr/share/systemtap/tapset/linux/context.stpm
-rw-r--r-- -          -               12276 ./usr/share/systemtap/tapset/linux/context-symbols.stp
-rw-r--r-- -          -                3283 ./usr/share/systemtap/tapset/linux/context-unwind.stp
-rw-r--r-- -          -                5876 ./usr/share/systemtap/tapset/linux/conversions-guru.stp
-rw-r--r-- -          -               15925 ./usr/share/systemtap/tapset/linux/conversions.stp
-rw-r--r-- -          -                5750 ./usr/share/systemtap/tapset/linux/ctime.stp
-rw-r--r-- -          -               10667 ./usr/share/systemtap/tapset/linux/dentry.stp
-rw-r--r-- -          -                2074 ./usr/share/systemtap/tapset/linux/dev.stp
-rw-r--r-- -          -                 602 ./usr/share/systemtap/tapset/linux/endian.stp
-rw-r--r-- -          -                  57 ./usr/share/systemtap/tapset/linux/errno.stpm
-rw-r--r-- -          -                1230 ./usr/share/systemtap/tapset/linux/guru-delay.stp
-rw-r--r-- -          -                1092 ./usr/share/systemtap/tapset/linux/guru-signal.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/linux/i386
-rw-r--r-- -          -                3007 ./usr/share/systemtap/tapset/linux/i386/aux_syscalls.stp
-rw-r--r-- -          -               29556 ./usr/share/systemtap/tapset/linux/i386/syscall_num.stp
-rw-r--r-- -          -                1986 ./usr/share/systemtap/tapset/linux/i386/sysc_execve.stp
-rw-r--r-- -          -                2362 ./usr/share/systemtap/tapset/linux/i386/sysc_get_thread_area.stp
-rw-r--r-- -          -                2459 ./usr/share/systemtap/tapset/linux/i386/sysc_iopl.stp
-rw-r--r-- -          -                1527 ./usr/share/systemtap/tapset/linux/i386/sysc_ipc.stp
-rw-r--r-- -          -                2474 ./usr/share/systemtap/tapset/linux/i386/sysc_mmap2.stp
-rw-r--r-- -          -                2291 ./usr/share/systemtap/tapset/linux/i386/sysc_set_thread_area.stp
-rw-r--r-- -          -                1569 ./usr/share/systemtap/tapset/linux/i386/sysc_set_zone_reclaim.stp
-rw-r--r-- -          -                2691 ./usr/share/systemtap/tapset/linux/i386/sysc_sigaltstack.stp
-rw-r--r-- -          -                1153 ./usr/share/systemtap/tapset/linux/i386/sysc_vm86old.stp
-rw-r--r-- -          -                1075 ./usr/share/systemtap/tapset/linux/i386/sysc_vm86.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/linux/ia64
-rw-r--r-- -          -                1549 ./usr/share/systemtap/tapset/linux/ia64/aux_syscalls.stp
-rw-r--r-- -          -                1650 ./usr/share/systemtap/tapset/linux/ia64/sysc_execve.stp
-rw-r--r-- -          -                1672 ./usr/share/systemtap/tapset/linux/ia64/sysc_mmap2.stp
-rw-r--r-- -          -                1732 ./usr/share/systemtap/tapset/linux/ia64/sysc_mmap.stp
-rw-r--r-- -          -                1732 ./usr/share/systemtap/tapset/linux/ia64/sysc_sigaltstack.stp
-rw-r--r-- -          -                1098 ./usr/share/systemtap/tapset/linux/ia64/sysc_sysctl32.stp
-rw-r--r-- -          -                1282 ./usr/share/systemtap/tapset/linux/inet_sock.stp
-rw-r--r-- -          -                1456 ./usr/share/systemtap/tapset/linux/inet.stp
-rw-r--r-- -          -                 383 ./usr/share/systemtap/tapset/linux/inet.stpm
-rw-r--r-- -          -               15534 ./usr/share/systemtap/tapset/linux/ioblock.stp
-rw-r--r-- -          -               12263 ./usr/share/systemtap/tapset/linux/ioscheduler.stp
-rw-r--r-- -          -                 965 ./usr/share/systemtap/tapset/linux/ipmib-filter-default.stp
-rw-r--r-- -          -               12981 ./usr/share/systemtap/tapset/linux/ipmib.stp
-rw-r--r-- -          -                5483 ./usr/share/systemtap/tapset/linux/ip.stp
-rw-r--r-- -          -                5120 ./usr/share/systemtap/tapset/linux/irq.stp
-rw-r--r-- -          -                9194 ./usr/share/systemtap/tapset/linux/json.stp
-rw-r--r-- -          -                6256 ./usr/share/systemtap/tapset/linux/json.stpm
-rw-r--r-- -          -                4750 ./usr/share/systemtap/tapset/linux/kprocess.stp
-rw-r--r-- -          -                2153 ./usr/share/systemtap/tapset/linux/kretprobe.stp
-rw-r--r-- -          -                 876 ./usr/share/systemtap/tapset/linux/linuxmib-filter-default.stp
-rw-r--r-- -          -                3718 ./usr/share/systemtap/tapset/linux/linuxmib.stp
-rw-r--r-- -          -                1995 ./usr/share/systemtap/tapset/linux/loadavg.stp
-rw-r--r-- -          -                2585 ./usr/share/systemtap/tapset/linux/logging.stp
-rw-r--r-- -          -               19219 ./usr/share/systemtap/tapset/linux/memory.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/linux/mips
-rw-r--r-- -          -                2014 ./usr/share/systemtap/tapset/linux/mips/aux_syscalls.stp
-rw-r--r-- -          -               81794 ./usr/share/systemtap/tapset/linux/mips/syscall_num.stp
-rw-r--r-- -          -               36356 ./usr/share/systemtap/tapset/linux/netfilter.stp
-rw-r--r-- -          -                9602 ./usr/share/systemtap/tapset/linux/networking.stp
-rw-r--r-- -          -               11979 ./usr/share/systemtap/tapset/linux/nfsderrno.stp
-rw-r--r-- -          -               47381 ./usr/share/systemtap/tapset/linux/nfsd.stp
-rw-r--r-- -          -               57637 ./usr/share/systemtap/tapset/linux/nfs_proc.stp
-rw-r--r-- -          -                1213 ./usr/share/systemtap/tapset/linux/nfs_proc.stpm
-rw-r--r-- -          -               38973 ./usr/share/systemtap/tapset/linux/nfs.stp
-rw-r--r-- -          -                1092 ./usr/share/systemtap/tapset/linux/panic.stp
-rw-r--r-- -          -                5284 ./usr/share/systemtap/tapset/linux/perf.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/linux/powerpc
-rw-r--r-- -          -                4963 ./usr/share/systemtap/tapset/linux/powerpc/aux_syscalls.stp
-rw-r--r-- -          -               58982 ./usr/share/systemtap/tapset/linux/powerpc/syscall_num.stp
-rw-r--r-- -          -                1592 ./usr/share/systemtap/tapset/linux/powerpc/sysc_compat_clock_settime.stp
-rw-r--r-- -          -                5239 ./usr/share/systemtap/tapset/linux/powerpc/sysc_compat_fadvise64.stp
-rw-r--r-- -          -                2652 ./usr/share/systemtap/tapset/linux/powerpc/sysc_compat_fallocate.stp
-rw-r--r-- -          -                1579 ./usr/share/systemtap/tapset/linux/powerpc/sysc_compat_ftruncate64.stp
-rw-r--r-- -          -                1835 ./usr/share/systemtap/tapset/linux/powerpc/sysc_compat_get_mempolicy.stp
-rw-r--r-- -          -                3217 ./usr/share/systemtap/tapset/linux/powerpc/sysc_compat_lookup_dcookie.stp
-rw-r--r-- -          -                1652 ./usr/share/systemtap/tapset/linux/powerpc/sysc_compat_mbind.stp
-rw-r--r-- -          -                1632 ./usr/share/systemtap/tapset/linux/powerpc/sysc_compat_readahead.stp
-rw-r--r-- -          -                1662 ./usr/share/systemtap/tapset/linux/powerpc/sysc_compat_set_mempolicy.stp
-rw-r--r-- -          -                1601 ./usr/share/systemtap/tapset/linux/powerpc/sysc_compat_timer_gettime.stp
-rw-r--r-- -          -                1809 ./usr/share/systemtap/tapset/linux/powerpc/sysc_compat_timer_settime.stp
-rw-r--r-- -          -                1643 ./usr/share/systemtap/tapset/linux/powerpc/sysc_compat_truncate64.stp
-rw-r--r-- -          -                3414 ./usr/share/systemtap/tapset/linux/powerpc/sysc_execve.stp
-rw-r--r-- -          -                1507 ./usr/share/systemtap/tapset/linux/powerpc/sysc_ipc.stp
-rw-r--r-- -          -                2350 ./usr/share/systemtap/tapset/linux/powerpc/sysc_mmap2.stp
-rw-r--r-- -          -                1898 ./usr/share/systemtap/tapset/linux/powerpc/sysc_mmap.stp
-rw-r--r-- -          -                1685 ./usr/share/systemtap/tapset/linux/powerpc/sysc_ppc32_timer_create.stp
-rw-r--r-- -          -                1614 ./usr/share/systemtap/tapset/linux/powerpc/sysc_ppc64_newuname.stp
-rw-r--r-- -          -                2252 ./usr/share/systemtap/tapset/linux/powerpc/sysc_ppc64_personality.stp
-rw-r--r-- -          -                1390 ./usr/share/systemtap/tapset/linux/powerpc/sysc_ppc64_sys32_stime.stp
-rw-r--r-- -          -                1359 ./usr/share/systemtap/tapset/linux/powerpc/sysc_ppc64_sys_stime.stp
-rw-r--r-- -          -                1154 ./usr/share/systemtap/tapset/linux/powerpc/sysc_ppc_rtas.stp
-rw-r--r-- -          -                3450 ./usr/share/systemtap/tapset/linux/powerpc/sysc_sigaltstack.stp
-rw-r--r-- -          -                1300 ./usr/share/systemtap/tapset/linux/powerpc/sysc_sys32_adjtimex.stp
-rw-r--r-- -          -                1473 ./usr/share/systemtap/tapset/linux/powerpc/sysc_sys32_getdents.stp
-rw-r--r-- -          -                1433 ./usr/share/systemtap/tapset/linux/powerpc/sysc_sys32_ptrace.stp
-rw-r--r-- -          -                1561 ./usr/share/systemtap/tapset/linux/powerpc/sysc_sys32_rt_sigpending.stp
-rw-r--r-- -          -                1692 ./usr/share/systemtap/tapset/linux/powerpc/sysc_sys32_rt_sigqueueinfo.stp
-rw-r--r-- -          -                1858 ./usr/share/systemtap/tapset/linux/powerpc/sysc_sys32_rt_sigtimedwait.stp
-rw-r--r-- -          -                1790 ./usr/share/systemtap/tapset/linux/powerpc/sysc_sys32_sched_rr_get_interval.stp
-rw-r--r-- -          -                1568 ./usr/share/systemtap/tapset/linux/powerpc/sysc_sys32_sched_setparam.stp
-rw-r--r-- -          -                1578 ./usr/share/systemtap/tapset/linux/powerpc/sysc_sys32_sendfile64.stp
-rw-r--r-- -          -                1566 ./usr/share/systemtap/tapset/linux/powerpc/sysc_sys32_sigreturn.stp
-rw-r--r-- -          -                1822 ./usr/share/systemtap/tapset/linux/powerpc/sysc_sys32_swapcontext.stp
-rw-r--r-- -          -                1306 ./usr/share/systemtap/tapset/linux/powerpc/sysc_sys32_sysinfo.stp
-rw-r--r-- -          -                1427 ./usr/share/systemtap/tapset/linux/powerpc/sysc_sys32_utimes.stp
-rw-r--r-- -          -                1122 ./usr/share/systemtap/tapset/linux/powerpc/sysc_sys64_time.stp
-rw-r--r-- -          -                2359 ./usr/share/systemtap/tapset/linux/powerpc/sysc_sysctl32.stp
-rw-r--r-- -          -               12702 ./usr/share/systemtap/tapset/linux/proc_mem.stp
-rw-r--r-- -          -                 773 ./usr/share/systemtap/tapset/linux/pstrace.stp
-rw-r--r-- -          -                 928 ./usr/share/systemtap/tapset/linux/rcu.stp
-rw-r--r-- -          -                1382 ./usr/share/systemtap/tapset/linux/rlimit.stp
-rw-r--r-- -          -               38578 ./usr/share/systemtap/tapset/linux/rpc.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/linux/s390
-rw-r--r-- -          -                5541 ./usr/share/systemtap/tapset/linux/s390/aux_syscalls.stp
-rw-r--r-- -          -               53750 ./usr/share/systemtap/tapset/linux/s390/syscall_num.stp
-rw-r--r-- -          -                6584 ./usr/share/systemtap/tapset/linux/s390/sysc_compat_fadvise64.stp
-rw-r--r-- -          -                3218 ./usr/share/systemtap/tapset/linux/s390/sysc_compat_fallocate.stp
-rw-r--r-- -          -                1826 ./usr/share/systemtap/tapset/linux/s390/sysc_compat_ftruncate64.stp
-rw-r--r-- -          -                3097 ./usr/share/systemtap/tapset/linux/s390/sysc_compat_lookup_dcookie.stp
-rw-r--r-- -          -                1917 ./usr/share/systemtap/tapset/linux/s390/sysc_compat_readahead.stp
-rw-r--r-- -          -                1879 ./usr/share/systemtap/tapset/linux/s390/sysc_compat_truncate64.stp
-rw-r--r-- -          -                4776 ./usr/share/systemtap/tapset/linux/s390/sysc_execve.stp
-rw-r--r-- -          -                1820 ./usr/share/systemtap/tapset/linux/s390/sysc_getresgid16.stp
-rw-r--r-- -          -                1701 ./usr/share/systemtap/tapset/linux/s390/sysc_getresuid16.stp
-rw-r--r-- -          -                1419 ./usr/share/systemtap/tapset/linux/s390/sysc_ipc.stp
-rw-r--r-- -          -                3129 ./usr/share/systemtap/tapset/linux/s390/sysc_mmap2.stp
-rw-r--r-- -          -                3298 ./usr/share/systemtap/tapset/linux/s390/sysc_mmap.stp
-rw-r--r-- -          -                3042 ./usr/share/systemtap/tapset/linux/s390/sysc_sigaltstack.stp
-rw-r--r-- -          -                1142 ./usr/share/systemtap/tapset/linux/s390/sysc_sysctl32.stp
-rw-r--r-- -          -               11636 ./usr/share/systemtap/tapset/linux/scheduler.stp
-rw-r--r-- -          -                9721 ./usr/share/systemtap/tapset/linux/scsi.stp
-rw-r--r-- -          -               29371 ./usr/share/systemtap/tapset/linux/signal.stp
-rw-r--r-- -          -               35024 ./usr/share/systemtap/tapset/linux/socket.stp
-rw-r--r-- -          -                7864 ./usr/share/systemtap/tapset/linux/sysc_accept4.stp
-rw-r--r-- -          -                7868 ./usr/share/systemtap/tapset/linux/sysc_accept.stp
-rw-r--r-- -          -                2911 ./usr/share/systemtap/tapset/linux/sysc_access.stp
-rw-r--r-- -          -                2583 ./usr/share/systemtap/tapset/linux/sysc_acct.stp
-rw-r--r-- -          -                3532 ./usr/share/systemtap/tapset/linux/sysc_add_key.stp
-rw-r--r-- -          -                5672 ./usr/share/systemtap/tapset/linux/sysc_adjtimex.stp
-rw-r--r-- -          -                2833 ./usr/share/systemtap/tapset/linux/sysc_alarm.stp
-rw-r--r-- -          -                1560 ./usr/share/systemtap/tapset/linux/syscall_any.stp
-rw-r--r-- -          -                 111 ./usr/share/systemtap/tapset/linux/syscalls_cfg_trunc.stp
-rw-r--r-- -          -               14624 ./usr/share/systemtap/tapset/linux/syscalls.stpm
-rw-r--r-- -          -                1475 ./usr/share/systemtap/tapset/linux/syscall_table.stp
-rw-r--r-- -          -                3113 ./usr/share/systemtap/tapset/linux/sysc_bdflush.stp
-rw-r--r-- -          -                6965 ./usr/share/systemtap/tapset/linux/sysc_bind.stp
-rw-r--r-- -          -                2738 ./usr/share/systemtap/tapset/linux/sysc_bpf.stp
-rw-r--r-- -          -                2629 ./usr/share/systemtap/tapset/linux/sysc_brk.stp
-rw-r--r-- -          -                3101 ./usr/share/systemtap/tapset/linux/sysc_capget.stp
-rw-r--r-- -          -                3102 ./usr/share/systemtap/tapset/linux/sysc_capset.stp
-rw-r--r-- -          -                2616 ./usr/share/systemtap/tapset/linux/sysc_chdir.stp
-rw-r--r-- -          -                2959 ./usr/share/systemtap/tapset/linux/sysc_chmod.stp
-rw-r--r-- -          -                3115 ./usr/share/systemtap/tapset/linux/sysc_chown16.stp
-rw-r--r-- -          -                3775 ./usr/share/systemtap/tapset/linux/sysc_chown.stp
-rw-r--r-- -          -                2679 ./usr/share/systemtap/tapset/linux/sysc_chroot.stp
-rw-r--r-- -          -                5243 ./usr/share/systemtap/tapset/linux/sysc_clock_adjtime.stp
-rw-r--r-- -          -                4248 ./usr/share/systemtap/tapset/linux/sysc_clock_getres.stp
-rw-r--r-- -          -                4035 ./usr/share/systemtap/tapset/linux/sysc_clock_gettime.stp
-rw-r--r-- -          -                8041 ./usr/share/systemtap/tapset/linux/sysc_clock_nanosleep.stp
-rw-r--r-- -          -                5554 ./usr/share/systemtap/tapset/linux/sysc_clock_settime.stp
-rw-r--r-- -          -                6708 ./usr/share/systemtap/tapset/linux/sysc_clone.stp
-rw-r--r-- -          -                2771 ./usr/share/systemtap/tapset/linux/sysc_close.stp
-rw-r--r-- -          -                7452 ./usr/share/systemtap/tapset/linux/sysc_connect.stp
-rw-r--r-- -          -                3769 ./usr/share/systemtap/tapset/linux/sysc_copy_file_range.stp
-rw-r--r-- -          -                2728 ./usr/share/systemtap/tapset/linux/sysc_creat.stp
-rw-r--r-- -          -                3366 ./usr/share/systemtap/tapset/linux/sysc_delete_module.stp
-rw-r--r-- -          -                2991 ./usr/share/systemtap/tapset/linux/sysc_dup2.stp
-rw-r--r-- -          -                3073 ./usr/share/systemtap/tapset/linux/sysc_dup3.stp
-rw-r--r-- -          -                2383 ./usr/share/systemtap/tapset/linux/sysc_dup.stp
-rw-r--r-- -          -                5742 ./usr/share/systemtap/tapset/linux/sysc_epoll_create.stp
-rw-r--r-- -          -                3998 ./usr/share/systemtap/tapset/linux/sysc_epoll_ctl.stp
-rw-r--r-- -          -                4157 ./usr/share/systemtap/tapset/linux/sysc_epoll_pwait.stp
-rw-r--r-- -          -                4850 ./usr/share/systemtap/tapset/linux/sysc_epoll_wait.stp
-rw-r--r-- -          -                5411 ./usr/share/systemtap/tapset/linux/sysc_eventfd.stp
-rw-r--r-- -          -                6942 ./usr/share/systemtap/tapset/linux/sysc_execveat.stp
-rw-r--r-- -          -                6257 ./usr/share/systemtap/tapset/linux/sysc_execve.stp
-rw-r--r-- -          -                2146 ./usr/share/systemtap/tapset/linux/sysc_exit_group.stp
-rw-r--r-- -          -                1984 ./usr/share/systemtap/tapset/linux/sysc_exit.stp
-rw-r--r-- -          -                3736 ./usr/share/systemtap/tapset/linux/sysc_faccessat.stp
-rw-r--r-- -          -                8639 ./usr/share/systemtap/tapset/linux/sysc_fadvise64.stp
-rw-r--r-- -          -                3918 ./usr/share/systemtap/tapset/linux/sysc_fallocate.stp
-rw-r--r-- -          -                3432 ./usr/share/systemtap/tapset/linux/sysc_fanotify_init.stp
-rw-r--r-- -          -                7572 ./usr/share/systemtap/tapset/linux/sysc_fanotify_mark.stp
-rw-r--r-- -          -                2525 ./usr/share/systemtap/tapset/linux/sysc_fchdir.stp
-rw-r--r-- -          -                3734 ./usr/share/systemtap/tapset/linux/sysc_fchmodat.stp
-rw-r--r-- -          -                2880 ./usr/share/systemtap/tapset/linux/sysc_fchmod.stp
-rw-r--r-- -          -                3023 ./usr/share/systemtap/tapset/linux/sysc_fchown16.stp
-rw-r--r-- -          -                3903 ./usr/share/systemtap/tapset/linux/sysc_fchownat.stp
-rw-r--r-- -          -                3722 ./usr/share/systemtap/tapset/linux/sysc_fchown.stp
-rw-r--r-- -          -                4806 ./usr/share/systemtap/tapset/linux/sysc_fcntl.stp
-rw-r--r-- -          -                2692 ./usr/share/systemtap/tapset/linux/sysc_fdatasync.stp
-rw-r--r-- -          -                3720 ./usr/share/systemtap/tapset/linux/sysc_fgetxattr.stp
-rw-r--r-- -          -                3382 ./usr/share/systemtap/tapset/linux/sysc_finit_module.stp
-rw-r--r-- -          -                3000 ./usr/share/systemtap/tapset/linux/sysc_flistxattr.stp
-rw-r--r-- -          -                2579 ./usr/share/systemtap/tapset/linux/sysc_flock.stp
-rw-r--r-- -          -                2586 ./usr/share/systemtap/tapset/linux/sysc_fork.stp
-rw-r--r-- -          -                3229 ./usr/share/systemtap/tapset/linux/sysc_fremovexattr.stp
-rw-r--r-- -          -                4187 ./usr/share/systemtap/tapset/linux/sysc_fsetxattr.stp
-rw-r--r-- -          -                5789 ./usr/share/systemtap/tapset/linux/sysc_fstatat.stp
-rw-r--r-- -          -                3240 ./usr/share/systemtap/tapset/linux/sysc_fstatfs64.stp
-rw-r--r-- -          -                3266 ./usr/share/systemtap/tapset/linux/sysc_fstatfs.stp
-rw-r--r-- -          -                6163 ./usr/share/systemtap/tapset/linux/sysc_fstat.stp
-rw-r--r-- -          -                2419 ./usr/share/systemtap/tapset/linux/sysc_fsync.stp
-rw-r--r-- -          -                6212 ./usr/share/systemtap/tapset/linux/sysc_ftruncate.stp
-rw-r--r-- -          -                5810 ./usr/share/systemtap/tapset/linux/sysc_futex.stp
-rw-r--r-- -          -                6639 ./usr/share/systemtap/tapset/linux/sysc_futimesat.stp
-rw-r--r-- -          -                3034 ./usr/share/systemtap/tapset/linux/sysc_getcpu.stp
-rw-r--r-- -          -                2747 ./usr/share/systemtap/tapset/linux/sysc_getcwd.stp
-rw-r--r-- -          -                5618 ./usr/share/systemtap/tapset/linux/sysc_getdents.stp
-rw-r--r-- -          -                3542 ./usr/share/systemtap/tapset/linux/sysc_getegid.stp
-rw-r--r-- -          -                3484 ./usr/share/systemtap/tapset/linux/sysc_geteuid.stp
-rw-r--r-- -          -                3402 ./usr/share/systemtap/tapset/linux/sysc_getgid.stp
-rw-r--r-- -          -                4274 ./usr/share/systemtap/tapset/linux/sysc_getgroups.stp
-rw-r--r-- -          -                1249 ./usr/share/systemtap/tapset/linux/sysc_gethostname.stp
-rw-r--r-- -          -                5355 ./usr/share/systemtap/tapset/linux/sysc_getitimer.stp
-rw-r--r-- -          -                4671 ./usr/share/systemtap/tapset/linux/sysc_get_mempolicy.stp
-rw-r--r-- -          -                7522 ./usr/share/systemtap/tapset/linux/sysc_getpeername.stp
-rw-r--r-- -          -                2859 ./usr/share/systemtap/tapset/linux/sysc_getpgid.stp
-rw-r--r-- -          -                2090 ./usr/share/systemtap/tapset/linux/sysc_getpgrp.stp
-rw-r--r-- -          -                2031 ./usr/share/systemtap/tapset/linux/sysc_getpid.stp
-rw-r--r-- -          -                2112 ./usr/share/systemtap/tapset/linux/sysc_getppid.stp
-rw-r--r-- -          -                2943 ./usr/share/systemtap/tapset/linux/sysc_getpriority.stp
-rw-r--r-- -          -                3184 ./usr/share/systemtap/tapset/linux/sysc_getrandom.stp
-rw-r--r-- -          -                4172 ./usr/share/systemtap/tapset/linux/sysc_getresgid.stp
-rw-r--r-- -          -                3972 ./usr/share/systemtap/tapset/linux/sysc_getresuid.stp
-rw-r--r-- -          -                4460 ./usr/share/systemtap/tapset/linux/sysc_getrlimit.stp
-rw-r--r-- -          -                4572 ./usr/share/systemtap/tapset/linux/sysc_get_robust_list.stp
-rw-r--r-- -          -                3803 ./usr/share/systemtap/tapset/linux/sysc_getrusage.stp
-rw-r--r-- -          -                2509 ./usr/share/systemtap/tapset/linux/sysc_getsid.stp
-rw-r--r-- -          -                7550 ./usr/share/systemtap/tapset/linux/sysc_getsockname.stp
-rw-r--r-- -          -                8520 ./usr/share/systemtap/tapset/linux/sysc_getsockopt.stp
-rw-r--r-- -          -                2057 ./usr/share/systemtap/tapset/linux/sysc_gettid.stp
-rw-r--r-- -          -                4078 ./usr/share/systemtap/tapset/linux/sysc_gettimeofday.stp
-rw-r--r-- -          -                3427 ./usr/share/systemtap/tapset/linux/sysc_getuid.stp
-rw-r--r-- -          -                3812 ./usr/share/systemtap/tapset/linux/sysc_getxattr.stp
-rw-r--r-- -          -                3241 ./usr/share/systemtap/tapset/linux/sysc_init_module.stp
-rw-r--r-- -          -                3861 ./usr/share/systemtap/tapset/linux/sysc_inotify_add_watch.stp
-rw-r--r-- -          -                5548 ./usr/share/systemtap/tapset/linux/sysc_inotify_init.stp
-rw-r--r-- -          -                3277 ./usr/share/systemtap/tapset/linux/sysc_inotify_rm_watch.stp
-rw-r--r-- -          -                3318 ./usr/share/systemtap/tapset/linux/sysc_io_cancel.stp
-rw-r--r-- -          -                3536 ./usr/share/systemtap/tapset/linux/sysc_ioctl.stp
-rw-r--r-- -          -                2816 ./usr/share/systemtap/tapset/linux/sysc_io_destroy.stp
-rw-r--r-- -          -                4994 ./usr/share/systemtap/tapset/linux/sysc_io_getevents.stp
-rw-r--r-- -          -                2819 ./usr/share/systemtap/tapset/linux/sysc_ioperm.stp
-rw-r--r-- -          -                3018 ./usr/share/systemtap/tapset/linux/sysc_ioprio_get.stp
-rw-r--r-- -          -                3247 ./usr/share/systemtap/tapset/linux/sysc_ioprio_set.stp
-rw-r--r-- -          -                3838 ./usr/share/systemtap/tapset/linux/sysc_io_setup.stp
-rw-r--r-- -          -                3983 ./usr/share/systemtap/tapset/linux/sysc_io_submit.stp
-rw-r--r-- -          -                3007 ./usr/share/systemtap/tapset/linux/sysc_kcmp.stp
-rw-r--r-- -          -                4041 ./usr/share/systemtap/tapset/linux/sysc_kexec_file_load.stp
-rw-r--r-- -          -                4513 ./usr/share/systemtap/tapset/linux/sysc_kexec_load.stp
-rw-r--r-- -          -                3722 ./usr/share/systemtap/tapset/linux/sysc_keyctl.stp
-rw-r--r-- -          -                2591 ./usr/share/systemtap/tapset/linux/sysc_kill.stp
-rw-r--r-- -          -                3194 ./usr/share/systemtap/tapset/linux/sysc_lchown16.stp
-rw-r--r-- -          -                3880 ./usr/share/systemtap/tapset/linux/sysc_lchown.stp
-rw-r--r-- -          -                3912 ./usr/share/systemtap/tapset/linux/sysc_lgetxattr.stp
-rw-r--r-- -          -                4005 ./usr/share/systemtap/tapset/linux/sysc_linkat.stp
-rw-r--r-- -          -                2885 ./usr/share/systemtap/tapset/linux/sysc_link.stp
-rw-r--r-- -          -                6624 ./usr/share/systemtap/tapset/linux/sysc_listen.stp
-rw-r--r-- -          -                3318 ./usr/share/systemtap/tapset/linux/sysc_listxattr.stp
-rw-r--r-- -          -                3379 ./usr/share/systemtap/tapset/linux/sysc_llistxattr.stp
-rw-r--r-- -          -                3371 ./usr/share/systemtap/tapset/linux/sysc_llseek.stp
-rw-r--r-- -          -                4089 ./usr/share/systemtap/tapset/linux/sysc_lookup_dcookie.stp
-rw-r--r-- -          -                4001 ./usr/share/systemtap/tapset/linux/sysc_lremovexattr.stp
-rw-r--r-- -          -                4500 ./usr/share/systemtap/tapset/linux/sysc_lseek.stp
-rw-r--r-- -          -                4097 ./usr/share/systemtap/tapset/linux/sysc_lsetxattr.stp
-rw-r--r-- -          -                6455 ./usr/share/systemtap/tapset/linux/sysc_lstat.stp
-rw-r--r-- -          -                2976 ./usr/share/systemtap/tapset/linux/sysc_madvise.stp
-rw-r--r-- -          -                4303 ./usr/share/systemtap/tapset/linux/sysc_mbind.stp
-rw-r--r-- -          -                3017 ./usr/share/systemtap/tapset/linux/sysc_membarrier.stp
-rw-r--r-- -          -                3247 ./usr/share/systemtap/tapset/linux/sysc_memfd_create.stp
-rw-r--r-- -          -                4374 ./usr/share/systemtap/tapset/linux/sysc_migrate_pages.stp
-rw-r--r-- -          -                2900 ./usr/share/systemtap/tapset/linux/sysc_mincore.stp
-rw-r--r-- -          -                3445 ./usr/share/systemtap/tapset/linux/sysc_mkdirat.stp
-rw-r--r-- -          -                2897 ./usr/share/systemtap/tapset/linux/sysc_mkdir.stp
-rw-r--r-- -          -                3644 ./usr/share/systemtap/tapset/linux/sysc_mknodat.stp
-rw-r--r-- -          -                2958 ./usr/share/systemtap/tapset/linux/sysc_mknod.stp
-rw-r--r-- -          -                2882 ./usr/share/systemtap/tapset/linux/sysc_mlock2.stp
-rw-r--r-- -          -                2771 ./usr/share/systemtap/tapset/linux/sysc_mlockall.stp
-rw-r--r-- -          -                2618 ./usr/share/systemtap/tapset/linux/sysc_mlock.stp
-rw-r--r-- -          -                6229 ./usr/share/systemtap/tapset/linux/sysc_mmap2.stp
-rw-r--r-- -          -                3112 ./usr/share/systemtap/tapset/linux/sysc_modify_ldt.stp
-rw-r--r-- -          -                4499 ./usr/share/systemtap/tapset/linux/sysc_mount.stp
-rw-r--r-- -          -                4725 ./usr/share/systemtap/tapset/linux/sysc_move_pages.stp
-rw-r--r-- -          -                2966 ./usr/share/systemtap/tapset/linux/sysc_mprotect.stp
-rw-r--r-- -          -                4460 ./usr/share/systemtap/tapset/linux/sysc_mq_getsetattr.stp
-rw-r--r-- -          -                3936 ./usr/share/systemtap/tapset/linux/sysc_mq_notify.stp
-rw-r--r-- -          -                5385 ./usr/share/systemtap/tapset/linux/sysc_mq_open.stp
-rw-r--r-- -          -                6183 ./usr/share/systemtap/tapset/linux/sysc_mq_timedreceive.stp
-rw-r--r-- -          -                5928 ./usr/share/systemtap/tapset/linux/sysc_mq_timedsend.stp
-rw-r--r-- -          -                3018 ./usr/share/systemtap/tapset/linux/sysc_mq_unlink.stp
-rw-r--r-- -          -                3577 ./usr/share/systemtap/tapset/linux/sysc_mremap.stp
-rw-r--r-- -          -                8255 ./usr/share/systemtap/tapset/linux/sysc_msgctl.stp
-rw-r--r-- -          -                4423 ./usr/share/systemtap/tapset/linux/sysc_msgget.stp
-rw-r--r-- -          -               10689 ./usr/share/systemtap/tapset/linux/sysc_msgrcv.stp
-rw-r--r-- -          -                8866 ./usr/share/systemtap/tapset/linux/sysc_msgsnd.stp
-rw-r--r-- -          -                2851 ./usr/share/systemtap/tapset/linux/sysc_msync.stp
-rw-r--r-- -          -                2342 ./usr/share/systemtap/tapset/linux/sysc_munlockall.stp
-rw-r--r-- -          -                2744 ./usr/share/systemtap/tapset/linux/sysc_munlock.stp
-rw-r--r-- -          -                2709 ./usr/share/systemtap/tapset/linux/sysc_munmap.stp
-rw-r--r-- -          -                4150 ./usr/share/systemtap/tapset/linux/sysc_name_to_handle_at.stp
-rw-r--r-- -          -                5824 ./usr/share/systemtap/tapset/linux/sysc_nanosleep.stp
-rw-r--r-- -          -                2284 ./usr/share/systemtap/tapset/linux/sysc_nfsservctl.stp
-rw-r--r-- -          -                2440 ./usr/share/systemtap/tapset/linux/sysc_nice.stp
-rw-r--r-- -          -                1433 ./usr/share/systemtap/tapset/linux/sysc_ni_syscall.stp
-rw-r--r-- -          -                3916 ./usr/share/systemtap/tapset/linux/sysc_openat.stp
-rw-r--r-- -          -                4298 ./usr/share/systemtap/tapset/linux/sysc_open_by_handle_at.stp
-rw-r--r-- -          -                4329 ./usr/share/systemtap/tapset/linux/sysc_open.stp
-rw-r--r-- -          -                2564 ./usr/share/systemtap/tapset/linux/sysc_pause.stp
-rw-r--r-- -          -                3808 ./usr/share/systemtap/tapset/linux/sysc_perf_event_open.stp
-rw-r--r-- -          -                3077 ./usr/share/systemtap/tapset/linux/sysc_personality.stp
-rw-r--r-- -          -               10596 ./usr/share/systemtap/tapset/linux/sysc_pipe.stp
-rw-r--r-- -          -                3314 ./usr/share/systemtap/tapset/linux/sysc_pivot_root.stp
-rw-r--r-- -          -                3057 ./usr/share/systemtap/tapset/linux/sysc_pkey_alloc.stp
-rw-r--r-- -          -                2719 ./usr/share/systemtap/tapset/linux/sysc_pkey_free.stp
-rw-r--r-- -          -                3392 ./usr/share/systemtap/tapset/linux/sysc_pkey_mprotect.stp
-rw-r--r-- -          -                2769 ./usr/share/systemtap/tapset/linux/sysc_poll.stp
-rw-r--r-- -          -                6493 ./usr/share/systemtap/tapset/linux/sysc_ppoll.stp
-rw-r--r-- -          -                2993 ./usr/share/systemtap/tapset/linux/sysc_prctl.stp
-rw-r--r-- -          -                5427 ./usr/share/systemtap/tapset/linux/sysc_pread.stp
-rw-r--r-- -          -                5667 ./usr/share/systemtap/tapset/linux/sysc_preadv2.stp
-rw-r--r-- -          -                5283 ./usr/share/systemtap/tapset/linux/sysc_preadv.stp
-rw-r--r-- -          -                3495 ./usr/share/systemtap/tapset/linux/sysc_prlimit64.stp
-rw-r--r-- -          -                4775 ./usr/share/systemtap/tapset/linux/sysc_process_vm_readv.stp
-rw-r--r-- -          -                4897 ./usr/share/systemtap/tapset/linux/sysc_process_vm_writev.stp
-rw-r--r-- -          -                6457 ./usr/share/systemtap/tapset/linux/sysc_pselect6.stp
-rw-r--r-- -          -                3668 ./usr/share/systemtap/tapset/linux/sysc_pselect7.stp
-rw-r--r-- -          -                3661 ./usr/share/systemtap/tapset/linux/sysc_ptrace.stp
-rw-r--r-- -          -                7239 ./usr/share/systemtap/tapset/linux/sysc_pwrite.stp
-rw-r--r-- -          -                5774 ./usr/share/systemtap/tapset/linux/sysc_pwritev2.stp
-rw-r--r-- -          -                5414 ./usr/share/systemtap/tapset/linux/sysc_pwritev.stp
-rw-r--r-- -          -                4691 ./usr/share/systemtap/tapset/linux/sysc_quotactl.stp
-rw-r--r-- -          -                3601 ./usr/share/systemtap/tapset/linux/sysc_readahead.stp
-rw-r--r-- -          -                4043 ./usr/share/systemtap/tapset/linux/sysc_readdir.stp
-rw-r--r-- -          -                3833 ./usr/share/systemtap/tapset/linux/sysc_readlinkat.stp
-rw-r--r-- -          -                3114 ./usr/share/systemtap/tapset/linux/sysc_readlink.stp
-rw-r--r-- -          -                3721 ./usr/share/systemtap/tapset/linux/sysc_read.stp
-rw-r--r-- -          -                3502 ./usr/share/systemtap/tapset/linux/sysc_readv.stp
-rw-r--r-- -          -                3253 ./usr/share/systemtap/tapset/linux/sysc_reboot.stp
-rw-r--r-- -          -                8554 ./usr/share/systemtap/tapset/linux/sysc_recvfrom.stp
-rw-r--r-- -          -                6462 ./usr/share/systemtap/tapset/linux/sysc_recvmmsg.stp
-rw-r--r-- -          -               10962 ./usr/share/systemtap/tapset/linux/sysc_recvmsg.stp
-rw-r--r-- -          -                7260 ./usr/share/systemtap/tapset/linux/sysc_recv.stp
-rw-r--r-- -          -                3935 ./usr/share/systemtap/tapset/linux/sysc_remap_file_pages.stp
-rw-r--r-- -          -                3320 ./usr/share/systemtap/tapset/linux/sysc_removexattr.stp
-rw-r--r-- -          -                4500 ./usr/share/systemtap/tapset/linux/sysc_renameat2.stp
-rw-r--r-- -          -                4191 ./usr/share/systemtap/tapset/linux/sysc_renameat.stp
-rw-r--r-- -          -                3038 ./usr/share/systemtap/tapset/linux/sysc_rename.stp
-rw-r--r-- -          -                4138 ./usr/share/systemtap/tapset/linux/sysc_request_key.stp
-rw-r--r-- -          -                2565 ./usr/share/systemtap/tapset/linux/sysc_restart_syscall.stp
-rw-r--r-- -          -                2657 ./usr/share/systemtap/tapset/linux/sysc_rmdir.stp
-rw-r--r-- -          -                6952 ./usr/share/systemtap/tapset/linux/sysc_rt_sigaction.stp
-rw-r--r-- -          -                4799 ./usr/share/systemtap/tapset/linux/sysc_rt_sigpending.stp
-rw-r--r-- -          -                9105 ./usr/share/systemtap/tapset/linux/sysc_rt_sigprocmask.stp
-rw-r--r-- -          -                4750 ./usr/share/systemtap/tapset/linux/sysc_rt_sigqueueinfo.stp
-rw-r--r-- -          -                1639 ./usr/share/systemtap/tapset/linux/sysc_rt_sigreturn.stp
-rw-r--r-- -          -                3879 ./usr/share/systemtap/tapset/linux/sysc_rt_sigsuspend.stp
-rw-r--r-- -          -                6024 ./usr/share/systemtap/tapset/linux/sysc_rt_sigtimedwait.stp
-rw-r--r-- -          -                4460 ./usr/share/systemtap/tapset/linux/sysc_rt_tgsigqueueinfo.stp
-rw-r--r-- -          -                4102 ./usr/share/systemtap/tapset/linux/sysc_sched_getaffinity.stp
-rw-r--r-- -          -                3569 ./usr/share/systemtap/tapset/linux/sysc_sched_getattr.stp
-rw-r--r-- -          -                3236 ./usr/share/systemtap/tapset/linux/sysc_sched_getparam.stp
-rw-r--r-- -          -                3640 ./usr/share/systemtap/tapset/linux/sysc_sched_get_priority_max.stp
-rw-r--r-- -          -                3640 ./usr/share/systemtap/tapset/linux/sysc_sched_get_priority_min.stp
-rw-r--r-- -          -                3296 ./usr/share/systemtap/tapset/linux/sysc_sched_getscheduler.stp
-rw-r--r-- -          -                4864 ./usr/share/systemtap/tapset/linux/sysc_sched_rr_get_interval.stp
-rw-r--r-- -          -                3960 ./usr/share/systemtap/tapset/linux/sysc_sched_setaffinity.stp
-rw-r--r-- -          -                3445 ./usr/share/systemtap/tapset/linux/sysc_sched_setattr.stp
-rw-r--r-- -          -                3221 ./usr/share/systemtap/tapset/linux/sysc_sched_setparam.stp
-rw-r--r-- -          -                3666 ./usr/share/systemtap/tapset/linux/sysc_sched_setscheduler.stp
-rw-r--r-- -          -                2315 ./usr/share/systemtap/tapset/linux/sysc_sched_yield.stp
-rw-r--r-- -          -                3365 ./usr/share/systemtap/tapset/linux/sysc_seccomp.stp
-rw-r--r-- -          -                6359 ./usr/share/systemtap/tapset/linux/sysc_select.stp
-rw-r--r-- -          -                8206 ./usr/share/systemtap/tapset/linux/sysc_semctl.stp
-rw-r--r-- -          -                4596 ./usr/share/systemtap/tapset/linux/sysc_semget.stp
-rw-r--r-- -          -                5770 ./usr/share/systemtap/tapset/linux/sysc_semop.stp
-rw-r--r-- -          -                9936 ./usr/share/systemtap/tapset/linux/sysc_semtimedop.stp
-rw-r--r-- -          -                4912 ./usr/share/systemtap/tapset/linux/sysc_sendfile.stp
-rw-r--r-- -          -                9305 ./usr/share/systemtap/tapset/linux/sysc_sendmmsg.stp
-rw-r--r-- -          -               12110 ./usr/share/systemtap/tapset/linux/sysc_sendmsg.stp
-rw-r--r-- -          -                7369 ./usr/share/systemtap/tapset/linux/sysc_send.stp
-rw-r--r-- -          -                8357 ./usr/share/systemtap/tapset/linux/sysc_sendto.stp
-rw-r--r-- -          -                3729 ./usr/share/systemtap/tapset/linux/sysc_setdomainname.stp
-rw-r--r-- -          -                4796 ./usr/share/systemtap/tapset/linux/sysc_setfsgid.stp
-rw-r--r-- -          -                4839 ./usr/share/systemtap/tapset/linux/sysc_setfsuid.stp
-rw-r--r-- -          -                4573 ./usr/share/systemtap/tapset/linux/sysc_setgid.stp
-rw-r--r-- -          -                4519 ./usr/share/systemtap/tapset/linux/sysc_setgroups.stp
-rw-r--r-- -          -                3274 ./usr/share/systemtap/tapset/linux/sysc_sethostname.stp
-rw-r--r-- -          -                6286 ./usr/share/systemtap/tapset/linux/sysc_setitimer.stp
-rw-r--r-- -          -                4171 ./usr/share/systemtap/tapset/linux/sysc_set_mempolicy.stp
-rw-r--r-- -          -                2688 ./usr/share/systemtap/tapset/linux/sysc_setns.stp
-rw-r--r-- -          -                2760 ./usr/share/systemtap/tapset/linux/sysc_setpgid.stp
-rw-r--r-- -          -                3218 ./usr/share/systemtap/tapset/linux/sysc_setpriority.stp
-rw-r--r-- -          -                6660 ./usr/share/systemtap/tapset/linux/sysc_setregid.stp
-rw-r--r-- -          -                7040 ./usr/share/systemtap/tapset/linux/sysc_setresgid.stp
-rw-r--r-- -          -                7055 ./usr/share/systemtap/tapset/linux/sysc_setresuid.stp
-rw-r--r-- -          -                6630 ./usr/share/systemtap/tapset/linux/sysc_setreuid.stp
-rw-r--r-- -          -                4030 ./usr/share/systemtap/tapset/linux/sysc_setrlimit.stp
-rw-r--r-- -          -                4358 ./usr/share/systemtap/tapset/linux/sysc_set_robust_list.stp
-rw-r--r-- -          -                2101 ./usr/share/systemtap/tapset/linux/sysc_setsid.stp
-rw-r--r-- -          -                8444 ./usr/share/systemtap/tapset/linux/sysc_setsockopt.stp
-rw-r--r-- -          -                3195 ./usr/share/systemtap/tapset/linux/sysc_set_tid_address.stp
-rw-r--r-- -          -                6646 ./usr/share/systemtap/tapset/linux/sysc_settimeofday.stp
-rw-r--r-- -          -                4572 ./usr/share/systemtap/tapset/linux/sysc_setuid.stp
-rw-r--r-- -          -                3993 ./usr/share/systemtap/tapset/linux/sysc_setxattr.stp
-rw-r--r-- -          -                2169 ./usr/share/systemtap/tapset/linux/sysc_sgetmask.stp
-rw-r--r-- -          -                6777 ./usr/share/systemtap/tapset/linux/sysc_shmat.stp
-rw-r--r-- -          -                8139 ./usr/share/systemtap/tapset/linux/sysc_shmctl.stp
-rw-r--r-- -          -                3982 ./usr/share/systemtap/tapset/linux/sysc_shmdt.stp
-rw-r--r-- -          -                4501 ./usr/share/systemtap/tapset/linux/sysc_shmget.stp
-rw-r--r-- -          -                6909 ./usr/share/systemtap/tapset/linux/sysc_shutdown.stp
-rw-r--r-- -          -                5782 ./usr/share/systemtap/tapset/linux/sysc_sigaction.stp
-rw-r--r-- -          -                4267 ./usr/share/systemtap/tapset/linux/sysc_sigaltstack.stp
-rw-r--r-- -          -               12286 ./usr/share/systemtap/tapset/linux/sysc_signalfd.stp
-rw-r--r-- -          -                2867 ./usr/share/systemtap/tapset/linux/sysc_signal.stp
-rw-r--r-- -          -                3532 ./usr/share/systemtap/tapset/linux/sysc_sigpending.stp
-rw-r--r-- -          -                4172 ./usr/share/systemtap/tapset/linux/sysc_sigprocmask.stp
-rw-r--r-- -          -                1461 ./usr/share/systemtap/tapset/linux/sysc_sigreturn.stp
-rw-r--r-- -          -                4575 ./usr/share/systemtap/tapset/linux/sysc_sigsuspend.stp
-rw-r--r-- -          -                8297 ./usr/share/systemtap/tapset/linux/sysc_socketpair.stp
-rw-r--r-- -          -                7438 ./usr/share/systemtap/tapset/linux/sysc_socket.stp
-rw-r--r-- -          -                3363 ./usr/share/systemtap/tapset/linux/sysc_splice.stp
-rw-r--r-- -          -                2810 ./usr/share/systemtap/tapset/linux/sysc_ssetmask.stp
-rw-r--r-- -          -                3459 ./usr/share/systemtap/tapset/linux/sysc_statfs64.stp
-rw-r--r-- -          -                3491 ./usr/share/systemtap/tapset/linux/sysc_statfs.stp
-rw-r--r-- -          -                6535 ./usr/share/systemtap/tapset/linux/sysc_stat.stp
-rw-r--r-- -          -                4118 ./usr/share/systemtap/tapset/linux/sysc_statx.stp
-rw-r--r-- -          -                3083 ./usr/share/systemtap/tapset/linux/sysc_stime.stp
-rw-r--r-- -          -                2875 ./usr/share/systemtap/tapset/linux/sysc_swapoff.stp
-rw-r--r-- -          -                3121 ./usr/share/systemtap/tapset/linux/sysc_swapon.stp
-rw-r--r-- -          -                4060 ./usr/share/systemtap/tapset/linux/sysc_symlinkat.stp
-rw-r--r-- -          -                3028 ./usr/share/systemtap/tapset/linux/sysc_symlink.stp
-rw-r--r-- -          -                6011 ./usr/share/systemtap/tapset/linux/sysc_sync_file_range.stp
-rw-r--r-- -          -                2571 ./usr/share/systemtap/tapset/linux/sysc_syncfs.stp
-rw-r--r-- -          -                1925 ./usr/share/systemtap/tapset/linux/sysc_sync.stp
-rw-r--r-- -          -                3095 ./usr/share/systemtap/tapset/linux/sysc_sysctl.stp
-rw-r--r-- -          -                3648 ./usr/share/systemtap/tapset/linux/sysc_sysfs.stp
-rw-r--r-- -          -                3286 ./usr/share/systemtap/tapset/linux/sysc_sysinfo.stp
-rw-r--r-- -          -                2826 ./usr/share/systemtap/tapset/linux/sysc_syslog.stp
-rw-r--r-- -          -                2743 ./usr/share/systemtap/tapset/linux/sysc_tee.stp
-rw-r--r-- -          -                2883 ./usr/share/systemtap/tapset/linux/sysc_tgkill.stp
-rw-r--r-- -          -                4975 ./usr/share/systemtap/tapset/linux/sysc_timer_create.stp
-rw-r--r-- -          -                2942 ./usr/share/systemtap/tapset/linux/sysc_timer_delete.stp
-rw-r--r-- -          -                3394 ./usr/share/systemtap/tapset/linux/sysc_timerfd_create.stp
-rw-r--r-- -          -                4219 ./usr/share/systemtap/tapset/linux/sysc_timerfd_gettime.stp
-rw-r--r-- -          -                5282 ./usr/share/systemtap/tapset/linux/sysc_timerfd_settime.stp
-rw-r--r-- -          -                1829 ./usr/share/systemtap/tapset/linux/sysc_timerfd.stp
-rw-r--r-- -          -                3207 ./usr/share/systemtap/tapset/linux/sysc_timer_getoverrun.stp
-rw-r--r-- -          -                4670 ./usr/share/systemtap/tapset/linux/sysc_timer_gettime.stp
-rw-r--r-- -          -                6075 ./usr/share/systemtap/tapset/linux/sysc_timer_settime.stp
-rw-r--r-- -          -                3167 ./usr/share/systemtap/tapset/linux/sysc_times.stp
-rw-r--r-- -          -                3505 ./usr/share/systemtap/tapset/linux/sysc_time.stp
-rw-r--r-- -          -                2695 ./usr/share/systemtap/tapset/linux/sysc_tkill.stp
-rw-r--r-- -          -                7031 ./usr/share/systemtap/tapset/linux/sysc_truncate.stp
-rw-r--r-- -          -                1068 ./usr/share/systemtap/tapset/linux/sysc_tux.stp
-rw-r--r-- -          -                2522 ./usr/share/systemtap/tapset/linux/sysc_umask.stp
-rw-r--r-- -          -                5360 ./usr/share/systemtap/tapset/linux/sysc_umount.stp
-rw-r--r-- -          -                5145 ./usr/share/systemtap/tapset/linux/sysc_uname.stp
-rw-r--r-- -          -                3380 ./usr/share/systemtap/tapset/linux/sysc_unlinkat.stp
-rw-r--r-- -          -                2866 ./usr/share/systemtap/tapset/linux/sysc_unlink.stp
-rw-r--r-- -          -                2814 ./usr/share/systemtap/tapset/linux/sysc_unshare.stp
-rw-r--r-- -          -                2871 ./usr/share/systemtap/tapset/linux/sysc_uselib.stp
-rw-r--r-- -          -                3005 ./usr/share/systemtap/tapset/linux/sysc_userfaultfd.stp
-rw-r--r-- -          -                5333 ./usr/share/systemtap/tapset/linux/sysc_ustat.stp
-rw-r--r-- -          -                7044 ./usr/share/systemtap/tapset/linux/sysc_utimensat.stp
-rw-r--r-- -          -                6331 ./usr/share/systemtap/tapset/linux/sysc_utimes.stp
-rw-r--r-- -          -                6173 ./usr/share/systemtap/tapset/linux/sysc_utime.stp
-rw-r--r-- -          -                2029 ./usr/share/systemtap/tapset/linux/sysc_vfork.stp
-rw-r--r-- -          -                2128 ./usr/share/systemtap/tapset/linux/sysc_vhangup.stp
-rw-r--r-- -          -                6249 ./usr/share/systemtap/tapset/linux/sysc_vmsplice.stp
-rw-r--r-- -          -                5097 ./usr/share/systemtap/tapset/linux/sysc_wait4.stp
-rw-r--r-- -          -                4253 ./usr/share/systemtap/tapset/linux/sysc_waitid.stp
-rw-r--r-- -          -                3460 ./usr/share/systemtap/tapset/linux/sysc_waitpid.stp
-rw-r--r-- -          -                3939 ./usr/share/systemtap/tapset/linux/sysc_write.stp
-rw-r--r-- -          -                3656 ./usr/share/systemtap/tapset/linux/sysc_writev.stp
-rw-r--r-- -          -                1769 ./usr/share/systemtap/tapset/linux/target_set.stp
-rw-r--r-- -          -                1621 ./usr/share/systemtap/tapset/linux/task_ancestry.stp
-rw-r--r-- -          -               22754 ./usr/share/systemtap/tapset/linux/task.stp
-rw-r--r-- -          -                 253 ./usr/share/systemtap/tapset/linux/task.stpm
-rw-r--r-- -          -                7861 ./usr/share/systemtap/tapset/linux/task_time.stp
-rw-r--r-- -          -                 885 ./usr/share/systemtap/tapset/linux/tcpmib-filter-default.stp
-rw-r--r-- -          -               10824 ./usr/share/systemtap/tapset/linux/tcpmib.stp
-rw-r--r-- -          -               22642 ./usr/share/systemtap/tapset/linux/tcp.stp
-rw-r--r-- -          -                1629 ./usr/share/systemtap/tapset/linux/timestamp_gtod.stp
-rw-r--r-- -          -                5589 ./usr/share/systemtap/tapset/linux/timestamp_monotonic.stp
-rw-r--r-- -          -                1761 ./usr/share/systemtap/tapset/linux/timestamp.stp
-rw-r--r-- -          -                7351 ./usr/share/systemtap/tapset/linux/tty.stp
-rw-r--r-- -          -                 803 ./usr/share/systemtap/tapset/linux/tzinfo.stp
-rw-r--r-- -          -                2237 ./usr/share/systemtap/tapset/linux/ucontext.stp
-rw-r--r-- -          -                8842 ./usr/share/systemtap/tapset/linux/ucontext-symbols.stp
-rw-r--r-- -          -                7645 ./usr/share/systemtap/tapset/linux/ucontext-unwind.stp
-rw-r--r-- -          -                6097 ./usr/share/systemtap/tapset/linux/udp.stp
-rw-r--r-- -          -                1363 ./usr/share/systemtap/tapset/linux/utrace.stp
-rw-r--r-- -          -               33445 ./usr/share/systemtap/tapset/linux/vfs.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/linux/x86_64
-rw-r--r-- -          -                3665 ./usr/share/systemtap/tapset/linux/x86_64/aux_syscalls.stp
-rw-r--r-- -          -               55364 ./usr/share/systemtap/tapset/linux/x86_64/syscall_num.stp
-rw-r--r-- -          -                3594 ./usr/share/systemtap/tapset/linux/x86_64/sysc_arch_prctl.stp
-rw-r--r-- -          -                1631 ./usr/share/systemtap/tapset/linux/x86_64/sysc_compat_execve.stp
-rw-r--r-- -          -                8099 ./usr/share/systemtap/tapset/linux/x86_64/sysc_compat_fadvise64.stp
-rw-r--r-- -          -                4159 ./usr/share/systemtap/tapset/linux/x86_64/sysc_compat_fallocate.stp
-rw-r--r-- -          -                3755 ./usr/share/systemtap/tapset/linux/x86_64/sysc_compat_ftruncate64.stp
-rw-r--r-- -          -                4272 ./usr/share/systemtap/tapset/linux/x86_64/sysc_compat_lookup_dcookie.stp
-rw-r--r-- -          -                3692 ./usr/share/systemtap/tapset/linux/x86_64/sysc_compat_readahead.stp
-rw-r--r-- -          -                4085 ./usr/share/systemtap/tapset/linux/x86_64/sysc_compat_truncate64.stp
-rw-r--r-- -          -                1655 ./usr/share/systemtap/tapset/linux/x86_64/sysc_execve.stp
-rw-r--r-- -          -                3555 ./usr/share/systemtap/tapset/linux/x86_64/sysc_get_thread_area.stp
-rw-r--r-- -          -                2571 ./usr/share/systemtap/tapset/linux/x86_64/sysc_iopl.stp
-rw-r--r-- -          -                2683 ./usr/share/systemtap/tapset/linux/x86_64/sysc_mmap2.stp
-rw-r--r-- -          -                4136 ./usr/share/systemtap/tapset/linux/x86_64/sysc_mmap.stp
-rw-r--r-- -          -                1572 ./usr/share/systemtap/tapset/linux/x86_64/sysc_pipe32.stp
-rw-r--r-- -          -                3499 ./usr/share/systemtap/tapset/linux/x86_64/sysc_set_thread_area.stp
-rw-r--r-- -          -                2296 ./usr/share/systemtap/tapset/linux/x86_64/sysc_sigaltstack.stp
-rw-r--r-- -          -                1143 ./usr/share/systemtap/tapset/linux/x86_64/sysc_sysctl32.stp
-rw-r--r-- -          -                1200 ./usr/share/systemtap/tapset/linux/x86_64/sysc_vm86_warning.stp
-rw-r--r-- -          -                5146 ./usr/share/systemtap/tapset/logging.stp
-rw-r--r-- -          -                 562 ./usr/share/systemtap/tapset/macros.stpm
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/mips
-rw-r--r-- -          -               10702 ./usr/share/systemtap/tapset/mips/registers.stp
-rw-r--r-- -          -                  17 ./usr/share/systemtap/tapset/null.stp
-rw-r--r-- -          -                 173 ./usr/share/systemtap/tapset/offsetof.stpm
-rw-r--r-- -          -                  38 ./usr/share/systemtap/tapset/oneshot.stp
-rw-r--r-- -          -                1588 ./usr/share/systemtap/tapset/pn.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/powerpc
-rw-r--r-- -          -                5888 ./usr/share/systemtap/tapset/powerpc/registers.stp
-rw-r--r-- -          -                1719 ./usr/share/systemtap/tapset/print_stats.stpm
-rw-r--r-- -          -                  80 ./usr/share/systemtap/tapset/private30.stpm
-rw-r--r-- -          -                 129 ./usr/share/systemtap/tapset/prometheus.stp
-rw-r--r-- -          -                8380 ./usr/share/systemtap/tapset/prometheus.stpm
-rw-r--r-- -          -               29435 ./usr/share/systemtap/tapset/python2.stp
-rw-r--r-- -          -               29010 ./usr/share/systemtap/tapset/python3.stp
-rw-r--r-- -          -                9487 ./usr/share/systemtap/tapset/queue_stats.stp
-rw-r--r-- -          -                 432 ./usr/share/systemtap/tapset/random.stp
-rw-r--r-- -          -                 371 ./usr/share/systemtap/tapset/README
-rw-r--r-- -          -                4107 ./usr/share/systemtap/tapset/regex.stp
-rw-r--r-- -          -               11081 ./usr/share/systemtap/tapset/registers.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/s390
-rw-r--r-- -          -                8149 ./usr/share/systemtap/tapset/s390/registers.stp
-rw-r--r-- -          -                 212 ./usr/share/systemtap/tapset/sizeof.stpm
-rw-r--r-- -          -                1746 ./usr/share/systemtap/tapset/speculative.stp
-rw-r--r-- -          -                 263 ./usr/share/systemtap/tapset/sreg_arch.stpm
-rw-r--r-- -          -                9670 ./usr/share/systemtap/tapset/stap_staticmarkers.stp
-rw-r--r-- -          -                3063 ./usr/share/systemtap/tapset/stopwatch.stp
-rw-r--r-- -          -                7514 ./usr/share/systemtap/tapset/string.stp
-rw-r--r-- -          -                 612 ./usr/share/systemtap/tapset/switchfile.stp
-rw-r--r-- -          -                 593 ./usr/share/systemtap/tapset/system.stp
-rw-r--r-- -          -                 160 ./usr/share/systemtap/tapset/this.stp
-rw-r--r-- -          -                 924 ./usr/share/systemtap/tapset/timers.stp
-rw-r--r-- -          -                8105 ./usr/share/systemtap/tapset/tls.stp
-rw-r--r-- -          -                2124 ./usr/share/systemtap/tapset/tokenize.stp
-rw-r--r-- -          -                 768 ./usr/share/systemtap/tapset/try_assign.stpm
-rw-r--r-- -          -                 363 ./usr/share/systemtap/tapset/type_defined.stpm
-rw-r--r-- -          -                 930 ./usr/share/systemtap/tapset/tzinfo.stp
-rw-r--r-- -          -                6078 ./usr/share/systemtap/tapset/uconversions-guru.stp
-rw-r--r-- -          -               36640 ./usr/share/systemtap/tapset/uconversions.stp
drwxr-xr-x -          -                4096 ./usr/share/systemtap/tapset/x86_64
-rw-r--r-- -          -               14091 ./usr/share/systemtap/tapset/x86_64/registers.stp