]> git.vpit.fr Git - perl/modules/Lexical-Types.git/history - Types.xs
This is 0.16
[perl/modules/Lexical-Types.git] / Types.xs
2015-12-21 Vincent PitUpdate XS helpers to ae9dac2a
2015-11-09 Vincent PitFix a declaration-after-code error
2015-11-05 Vincent PitThe Big Boilerplate Factorization
2015-07-31 Vincent PitRevamp module setup/teardown
2015-07-31 Vincent PitRemove one extraneous line feed
2015-07-31 Vincent PitReplace one remaining STATIC into static
2015-07-31 Vincent PitUpdate ptable.h
2015-03-14 Vincent PitReplace STATIC by static
2015-02-06 Vincent PitReally be compatible with the OP_PARENT feature
2015-02-06 Father ChrysostomosCompatibility fix for perl 5.21.6 rt100202
2014-10-04 Vincent PitAdd support for PERL_OP_PARENT
2014-10-04 Vincent PitDo nothing after that the thread local storage has...
2014-10-04 Vincent PitNullify thread local storage entries when they are...
2014-10-04 Vincent PitProperly decrement the refcount of the default method...
2014-10-04 Vincent PitDon't cleanup thread local storage before END blocks...
2013-09-06 Vincent PitAdd support for padrange ops, introduced in perl 5...
2013-09-06 Vincent PitRename <lt_op_info>, lt_op_map to <lt_op_padxv_info...
2013-09-06 Vincent PitMove the run-time initializer call into a new lt_op_inf...
2013-09-06 Vincent PitRename lt_op_info.old_pp_padsv to .old_pp
2013-08-22 Vincent PitReplace check functions in a thread-safe way
2011-09-06 Vincent PitSilence some "unused result" compiler warnings
2011-08-24 Vincent PitThe last argument to hv_fetch is the lvalue flag, not...
2011-02-26 Vincent PitAlways skip seen ops in our peep replacement rt66146
2011-01-03 Vincent PitFix building on Windows
2011-01-03 Vincent PitIntroduce LT_FORKSAFE
2011-01-03 Vincent PitUse TARG in lt_pp_padsv
2011-01-01 Vincent PitRemove the #ifdef wrapping the mutex locks/unlocks
2011-01-01 Vincent PitOnly declare dMY_CXT when really needed
2011-01-01 Vincent PitGet rid of CALL_FPTR
2011-01-01 Vincent PitSet the ppaddr member of padsv ops at peep time
2010-12-31 Vincent PitUse cop_hints_fetch_pvn() whenever possible
2010-12-31 Vincent PitUse the new CLONE_PARAMS API with perl 5.13.2
2010-12-31 Vincent PitUpdate ptable.h
2010-12-31 Vincent PitGet rid of ENTERn/LEAVEn
2010-06-01 Vincent PitIdentify the require scope by the outmost cv outside...
2010-06-01 Vincent PitFix the thread destructor trick for 5.13.1
2010-04-15 Vincent Pit{ENTER,LEAVE}_with_name are no longer needed starting...
2010-01-02 Vincent PitTrailing whitespace
2010-01-02 Vincent PitDo not mix declarations and code
2010-01-02 Vincent PitCLONE doesn't need to return anything, so make it use...
2010-01-02 Vincent PitAdd the missing return type to lt_setup()
2010-01-02 Vincent PitRename the pp_padsv member to old_pp_padsv
2009-12-29 Vincent PitAlso call FREETMPS/LEAVE when skipping a typed declaration
2009-12-29 Vincent PitFix for {ENTER,LEAVE}_with_name
2009-09-30 Vincent PitOnly look up to the first require scope for the require...
2009-09-11 Vincent PitReset the callbacks when the root interpreter is destroyed
2009-09-11 Vincent PitOnly remap the hint through the pointer table for threa...
2009-07-04 Vincent PitStore the default method name in the thread local stora...
2009-07-04 Vincent PitIncrement the refcount after cloning
2009-07-04 Vincent PitCorrect the refcount of the source SVs that aren't...
2009-07-04 Vincent PitDecide to use shared op info according to MULTIPLICITY
2009-07-04 Vincent PitStop leaking the op specific info
2009-07-03 Vincent PitFactor the cloning logic in a new lt_clone() function
2009-07-03 Vincent PitStore the overriden pp_padsv into thread-local storage
2009-06-30 Vincent PitWork around the hints propagation in requires on perl...
2009-06-30 Vincent PitClean up map entries associated to uncatched OPs
2009-05-24 Vincent PitRename 'id' to 'hint' for consistency
2009-05-15 Vincent Pit5.9.5 fix
2009-05-01 Vincent PitDon't let [ap]PTBL_? values propagate outside ptable.h
2009-05-01 Vincent PitEnhance thread safety
2009-03-27 Vincent PitFix building with PERL_IMPLICIT_SYS
2009-03-07 Vincent PitNewx is no longer needed
2009-03-07 Vincent PitProtect the access to lt_op_map by a mutex
2009-03-07 Vincent PitUse a pointer table allocated on shared memory
2009-03-07 Vincent PitFix the refcount of orig_pkg when type_pkg defaults...
2009-03-07 Vincent PitMove __PACKAGE__ to a more proper place
2009-02-26 Vincent PitRefine the PL_ppaddr[OP_PADSV] localization logic so...
2009-02-25 Vincent PitDon't decrement the refcount of the default method...
2009-02-25 Vincent PitMake the package and method names passed to callbacks...
2009-02-25 Vincent PitAllow skipping declarations by returning an empty list...
2009-02-24 Vincent PitInitial import