summaryrefslogtreecommitdiffstats
path: root/cddl/contrib/dtracetoolkit/Code/Shell/func_slow.sh
diff options
context:
space:
mode:
Diffstat (limited to 'cddl/contrib/dtracetoolkit/Code/Shell/func_slow.sh')
-rwxr-xr-xcddl/contrib/dtracetoolkit/Code/Shell/func_slow.sh35
1 files changed, 0 insertions, 35 deletions
diff --git a/cddl/contrib/dtracetoolkit/Code/Shell/func_slow.sh b/cddl/contrib/dtracetoolkit/Code/Shell/func_slow.sh
deleted file mode 100755
index 3407646..0000000
--- a/cddl/contrib/dtracetoolkit/Code/Shell/func_slow.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!./sh
-
-func_c()
-{
- echo "Function C"
- i=0
- while [ $i -lt 300 ]
- do
- i=`expr $i + 1`
- done
-}
-
-func_b()
-{
- echo "Function B"
- i=0
- while [ $i -lt 200 ]
- do
- i=`expr $i + 1`
- done
- func_c
-}
-
-func_a()
-{
- echo "Function A"
- i=0
- while [ $i -lt 100 ]
- do
- i=`expr $i + 1`
- done
- func_b
-}
-
-func_a
OpenPOWER on IntegriCloud