From e32551b18f4560056d2d482f5e1505b1b98fa82a Mon Sep 17 00:00:00 2001 From: hunt Date: Tue, 29 Mar 2005 18:07:58 +0000 Subject: *** empty log message *** --- runtime/docs/html/alloc_8c.html | 45 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 runtime/docs/html/alloc_8c.html (limited to 'runtime/docs/html/alloc_8c.html') diff --git a/runtime/docs/html/alloc_8c.html b/runtime/docs/html/alloc_8c.html new file mode 100644 index 00000000..358cb6a8 --- /dev/null +++ b/runtime/docs/html/alloc_8c.html @@ -0,0 +1,45 @@ + + +SystemTap: alloc.c File Reference + + + +
Main Page | Modules | Data Structures | Directories | File List | Data Fields | Globals | Related Pages
+

alloc.c File Reference

Memory functions. More... +

+ +

+Go to the source code of this file. + + + + + + + + + + + + + + + + + + + + + + + +

Enumerations

enum  errorcode { ERR_NONE = 0, +ERR_NO_MEM + }

Functions

void * _stp_alloc (size_t len)
 Allocates memory within a probe.
void * _stp_calloc (size_t len)
 Allocates and clears memory within a probe.
void * _stp_valloc (size_t len)
 Allocates and clears memory outside a probe.
void _stp_free (void *ptr)
 Frees memory allocated by _stp_alloc or _stp_calloc.
void _stp_vfree (void *ptr)
 Frees memory allocated by _stp_valloc.

Variables

+enum errorcode _stp_error = ERR_NONE
+


Detailed Description

+Memory functions. +

+ +

+Definition in file alloc.c. -- cgit