Query: rdsfree
OS: debian
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
RDSFREE(3) RDS PHYSICAL FUNCTIONS RDSFREE(3)NAMErdsfree - free memory placeORIGINThis software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.frSYNOPSYS#include "rdsnnn.h" void rdsfree( Pointer, Size ) char *Pointer; unsigned int Size;PARAMETERPointer pointer to the memory to free. Size Size of the memory to free.DESCRIPTIONThe rdsfree function deletes memory of size='Size' allocated with rdsalloc function. If the parameter Size is set to ZERO (or RDS_ALLOC_BLOCK) then the memory is deleted by BLOCK else the memory is deleted by HEAP. Note : A memory allocated by BLOCK (resp. by HEAP) must be deleted by BLOCK (resp. by HEAP).RETURN VALUEnothingERRORSnoneEXAMPLE#include "rdsnnn.h" main() { rdsrec_list *Rectangle; rdsfig_list *Figure; Figure = allocrdsfig (); Rectangle = allocrdsrec (); Rectangle->X = 20; Rectangle->Y = 20; Rectangle->DX = 48; Rectangle->DY = 8; ... /* */ rdsfree ( Rectangle, sizeof (rdsrec_list)); /* deletes a figure allocated by block */ /* */ rdsfree ( Figure , RDS_ALLOC_BLOCK); }SEE ALSOlibrds, rdsallocBUG REPORTThis tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools.ASIM/LIP6 October 1, 1997 RDSFREE(3)
Related Man Pages |
---|
delrdsrecwindow(3) - debian |
freerdsins(3) - debian |
freerdsrec(3) - debian |
rdsfree(3) - debian |
viewrdsfig(3) - debian |
Similar Topics in the Unix Linux Community |
---|
Command for "Resident memory Size" |
Need to delete previous line after successful seearch |
Checking BLOCK Size |
C++, format of function call |