Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: XS malloc and free

by Courage (Parson)
on Feb 07, 2006 at 16:21 UTC ( [id://528552]=note: print w/replies, xml ) Need Help??


in reply to XS malloc and free

from perldoc perlguts
To free an SV that you've created, call "SvREFCNT_dec(SV*)". Norma +lly this call is not necessary (see "Reference Counts and Mortality").
You do not free SV, you decrement its usage, and, when refcount goes to zero, it will be destroyed, and may be some destruction-time action will be activated

addition to free memory out from external library, consult that library's logic. Perl do not uses external char*, it will copy its data into newly created SV

Best regards,
Courage, the Cowardly Dog

Replies are listed 'Best First'.
Re^2: XS malloc and free
by ikegami (Patriarch) on Feb 07, 2006 at 19:02 UTC

    He's not asking about freeing the SV. He asking about freeing the string from which he created an SV.

    Furthermore, SvREFCNT_dec should not be used here. Making the SV mortal (using sv_2mortal) will automatically free the SV at the end of the XSUB. Think of sv_2mortal as a delayed SvREFCNT_dec.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://528552]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (3)
As of 2024-04-19 23:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found