From 4297c1b2d07fec7f50b70e26e3adb4d062b19e15 Mon Sep 17 00:00:00 2001 From: gnn Date: Sat, 12 May 2012 20:38:18 +0000 Subject: Add the remaining scripts from the DTraceToolkit, version 0.99, to the vendor tree. http://www.brendangregg.com/dtrace.html#DTraceToolkit --- Code/Python/func_abc.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100755 Code/Python/func_abc.py (limited to 'Code/Python/func_abc.py') diff --git a/Code/Python/func_abc.py b/Code/Python/func_abc.py new file mode 100755 index 0000000..0d4919f --- /dev/null +++ b/Code/Python/func_abc.py @@ -0,0 +1,19 @@ +#!/usr/bin/python + +import time + +def func_c(): + print "Function C" + time.sleep(1) + +def func_b(): + print "Function B" + time.sleep(1) + func_c() + +def func_a(): + print "Function A" + time.sleep(1) + func_b() + +func_a() -- cgit v1.1