# HG changeset patch
# User roug
# Date 1036144954 0
# Node ID ed2a3bb12458ca3bcba63036ded0c62f0d64234e
# Parent 28cf27294683edbe7b67ca5af9227962618a2edd
All function prototypes are added.
diff -r 28cf27294683 -r ed2a3bb12458 docs/ccguide/signal.refentry
--- a/docs/ccguide/signal.refentry Fri Nov 01 10:02:34 2002 +0000
+++ b/docs/ccguide/signal.refentry Fri Nov 01 10:02:34 2002 +0000
@@ -8,10 +8,14 @@
#include <signal.h>
+
+typedef int (*sighandler_t)(int);
- signal
- type arg1
+ sighandler_t signal
+ int interrupt
+ sighandler_t address
+
diff -r 28cf27294683 -r ed2a3bb12458 docs/ccguide/stacksize.refentry
--- a/docs/ccguide/stacksize.refentry Fri Nov 01 10:02:34 2002 +0000
+++ b/docs/ccguide/stacksize.refentry Fri Nov 01 10:02:34 2002 +0000
@@ -21,7 +21,18 @@
Description
-Placeholder
+For a description of the meaning and use of this call, the user
+is referred to the Memory Management section of this manual.
+
+
+If the stack check code is in effect, a call to stacksize will
+return the maximum number of bytes of stack used at the time of
+the call. This call can be used to determine the stack size
+required by a program.
+
+
+Freemem() will return the number of bytes of the stack that has
+not been used.