1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<title>LibU: Memory</title>
<link href="kl.css" rel="stylesheet" type="text/css">
</head><body>
<!-- Generated by Doxygen 1.3.9.1 -->
<div class="qindex"><a class="qindex" href="index.html">Main Page</a> | <a class="qindex" href="modules.html">Modules</a> | <a class="qindex" href="annotated.html">Data Structures</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="functions.html">Data Fields</a></div>
<h1>Memory</h1><table border="0" cellpadding="0" cellspacing="0">
<tr><td></td></tr>
<tr><td colspan="2"><br><h2>Functions</h2></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="ga0" doxytag="alloc::u_malloc"></a>
void * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__alloc.html#ga0">u_malloc</a> (size_t sz)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Wrapper for malloc(3). <br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="ga1" doxytag="alloc::u_calloc"></a>
void * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__alloc.html#ga1">u_calloc</a> (size_t cnt, size_t sz)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Wrapper for calloc(3). <br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="ga2" doxytag="alloc::u_zalloc"></a>
void * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__alloc.html#ga2">u_zalloc</a> (size_t sz)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Alloc a contiguous region of <code>sz</code> bytes and zero-fill it. <br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="ga3" doxytag="alloc::u_realloc"></a>
void * </td><td class="memItemRight" valign="bottom"><a class="el" href="group__alloc.html#ga3">u_realloc</a> (void *ptr, size_t sz)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Wrapper for realloc(3). <br></td></tr>
<tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="ga4" doxytag="alloc::u_free"></a>
void </td><td class="memItemRight" valign="bottom"><a class="el" href="group__alloc.html#ga4">u_free</a> (void *ptr)</td></tr>
<tr><td class="mdescLeft"> </td><td class="mdescRight">Wrapper for free(3), sanity checks the supplied pointer. <br></td></tr>
</table>
<hr>
<div>
<div style="text-align:left">
<a href="http://www.koanlogic.com/kl/cont/gb/html/products.html">←Products</a>
</div>
<div style="text-align:center;">
© 2005-2006 - <a href="http://www.koanlogic.com">KoanLogic S.r.l.</a> - All rights reserved
</div>
</div>
</body>
</html>
|