1<html><head><meta http-equiv="Content-Type" content="text/html; charset=ANSI_X3.4-1968"><title>debug_object_free</title><meta name="generator" content="DocBook XSL Stylesheets V1.78.1"><link rel="home" href="index.html" title="Debug objects life time"><link rel="up" href="debugfunctions.html" title="Chapter 3. Debug functions"><link rel="prev" href="debug_object_destroy.html" title="debug_object_destroy"><link rel="next" href="debug_object_assert_init.html" title="debug_object_assert_init"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">debug_object_free</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="debug_object_destroy.html">Prev</a> </td><th width="60%" align="center">Chapter 3. Debug functions</th><td width="20%" align="right"> <a accesskey="n" href="debug_object_assert_init.html">Next</a></td></tr></table><hr></div><div class="sect1"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="debug_object_free"></a>debug_object_free</h2></div></div></div><p> 2 This function is called before an object is freed. 3 </p><p> 4 When the real object is tracked by debugobjects it is checked, 5 whether the object can be freed. Free is not allowed for 6 active objects. When debugobjects detects an error, then it 7 calls the fixup_free function of the object type description 8 structure if provided by the caller. The fixup function can 9 correct the problem before the real free of the object 10 happens. E.g. it can deactivate an active object in order to 11 prevent damage to the subsystem. 12 </p><p> 13 Note that debug_object_free removes the object from the 14 tracker. Later usage of the object is detected by the other 15 debug checks. 16 </p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="debug_object_destroy.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="debugfunctions.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="debug_object_assert_init.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">debug_object_destroy </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> debug_object_assert_init</td></tr></table></div></body></html> 17