save some syscalls
authorBrendan Gregg <brendan.d.gregg@gmail.com>
Tue, 18 Aug 2015 23:53:41 +0000 (16:53 -0700)
committerBrendan Gregg <brendan.d.gregg@gmail.com>
Tue, 18 Aug 2015 23:53:41 +0000 (16:53 -0700)
examples/bitehist.py
examples/disksnoop.py
examples/vfsreadlat.py
tools/pidpersec
tools/syncsnoop
tools/vfscount
tools/vfsstat

index f8c0b1f..5662d4e 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python
 #
 # bitehist.py  Block I/O size histogram.
 #              For Linux, uses BCC, eBPF. See .c file.
index f7b1806..c9f4fb0 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python
 #
 # disksnoop.py Trace block device I/O: basic version of iosnoop.
 #              For Linux, uses BCC, eBPF. See .c file.
index 4df6e39..4707b03 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python
 #
 # vfsreadlat.py                VFS read latency distribution.
 #                      For Linux, uses BCC, eBPF. See .c file.
index 6a3ca8c..bb022a5 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python
 #
 # pidpersec    Count new processes (via fork).
 #              For Linux, uses BCC, eBPF. See .c file.
index 5490bcc..3c4714b 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python
 #
 # syncsnoop    Trace sync() syscall.
 #              For Linux, uses BCC, eBPF. Embedded C.
index 2f5002e..0d2dc70 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python
 #
 # vfscount     Count some VFS calls.
 #              For Linux, uses BCC, eBPF. See .c file.
index c735be4..0be8cec 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python
 #
 # vfsstat      Count some VFS calls.
 #              For Linux, uses BCC, eBPF. See .c file.