Help for this page

Select Code to Download


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