diff options
Diffstat (limited to 'cddl/contrib/dtracetoolkit/Code/Shell/func_slow.sh')
-rwxr-xr-x | cddl/contrib/dtracetoolkit/Code/Shell/func_slow.sh | 35 |
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 |