stack_depth.c00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00037
00038 #include <stdio.h>
00039 #include <stdarg.h>
00040 #include <sys/param.h>
00041 #include <sys/sio.h>
00042 #include <string.h>
00043
00044 char *stack_low = (char*) 0xffff;
00045 extern char _stack;
00046
00047 static void
00048 print_stack_size ()
00049 {
00050 unsigned short sz;
00051
00052 sz = (unsigned short) (&_stack - stack_low);
00053 printf ("Stack size = %ld\n", (long) sz);
00054 }
00055
00056 static unsigned long
00057 fact (unsigned long n)
00058 {
00059
00060 char buf[10];
00061
00062 memset (buf, 0, sizeof (buf));
00063 if (n > 1)
00064 n = n * fact (n - 1);
00065 else
00066 n = 1;
00067
00068 return n;
00069 }
00070
00071 int
00072 main ()
00073 {
00074 long i;
00075 unsigned long val;
00076
00077 serial_init ();
00078 for (i = 1; i < 10; i++)
00079 {
00080 val = fact (i);
00081 printf ("Fact %ld = %ld\t", i, val);
00082 print_stack_size ();
00083 stack_low = &_stack;
00084 }
00085 return 0;
00086 }
|