- or download this
push @{ $parent->{children} }, $child;
weaken( $child->{parent} = $parent ); # Needed to avoid memory leak.
- or download this
{
Resource res = get_resource_exclusively(res_id);
...
// ...
res.release();
}
- or download this
Resource res = get_resource_exclusively(res_id);
try {
...
res.release();
throw e;
}