Changeset 3975 for src/perl5

Show
Ignore:
Timestamp:
05/27/05 16:36:18 (4 years ago)
Author:
autrijus
svk:copy_cache_prev:
5515
Message:

* refactor newSVval to handler Val->PerlSV casting.
* beginning of unifying two GCs together.

Location:
src/perl5
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • src/perl5/perl5.c

    r3961 r3975  
    320320} 
    321321 
     322void perl5_finalize ( SV* sv ) 
     323{ 
     324    SvREFCNT_dec(sv); 
     325} 
  • src/perl5/perl5.h

    r3953 r3975  
    1515SV * perl5_eval(char *code, void *env, int cxt); 
    1616SV * perl5_get_sv ( const char *name ); 
     17void perl5_finalize ( SV* sv ); 
     18