Beefy Boxes and Bandwidth Generously Provided by pair Networks Ovid
"be consistent"
 
PerlMonks  

Re: XS malloc and free

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

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


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 14: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
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.