Help for this page

Select Code to Download


  1. or download this
    #define PERL_NO_GET_CONTEXT
    sv_foo(a, b, c);
    
  2. or download this
    Perl_sv_foo(my_perl, a, b, c);
    
  3. or download this
    Perl_sv_foo(((PerlInterpreter *)pthread_getspecific(PL_thr_key)),
        a, b, c);
    
  4. or download this
    Perl_sv_foo(a, b, c);
    
  5. or download this
    PerlInterpreter * my_perl =
        (PerlInterpreter *)pthread_getspecific(PL_thr_key);