]> git.vpit.fr Git - perl/modules/Variable-Magic.git/history - Magic.xs
This is 0.64
[perl/modules/Variable-Magic.git] / Magic.xs
2009-11-27 Vincent PitMake the wizard store the MGWIZ address as an IV
2009-11-26 Vincent PitEmpty the global pointer table at the end of a thread
2009-11-26 Vincent PitRemove unused variables
2009-11-26 Vincent PitFactor the V::M magic searching logic into a new vmg_find()
2009-11-26 Vincent PitRemove all signature-related features
2009-10-22 Vincent PitCompatibility fix for 5.11.1
2009-10-04 Vincent PitIntroduce VMG_COMPAT_ARRAY_PUSH_NOLEN_VOID and fix...
2009-08-25 Vincent PitIntroduce VMG_FORKSAFE
2009-06-23 Vincent PitMake getdata() return an empty list when no magic is...
2009-05-15 Vincent PitDrop support for 5.9.5
2009-04-27 Vincent PitStore the last popped stack index for after call_sv()
2009-04-24 Vincent PitRemove the fake context namesv workaround introduced...
2009-04-19 Vincent PitPrevent call_sv() in vmg_svt_free() to clobber the...
2009-03-26 Vincent PitSimplify the current temp test in the unmortalizer
2009-03-26 Vincent PitProperly unmortalize the wizard after removing it from...
2009-03-03 Vincent PitMake getsig() croak if the supplied wizard is incorrect
2009-03-03 Vincent PitClean up the remaining if (...) { ... } tests
2009-03-01 Vincent PitHide the 'too many sigs' test from coverage
2009-03-01 Vincent PitThe current op is always non-null in our vmg_opclass()
2009-03-01 Vincent PitStore a placeholder in the wizards set for every manual...
2009-02-28 Vincent PitInitialize the global op names cache in a critical...
2009-02-28 Vincent PitWe don't need a (wrong) compatibility macro for NewOp...
2009-02-28 Vincent Pithv_exists() is enough for vmg_wizard_sig()
2009-02-28 Vincent PitCheck the number of allocated wizards in vmg_gensig()
2009-02-28 Vincent PitDon't store the sig in the mg_private field
2009-02-24 Vincent PitFix the B stashes cache cloning, and really use it...
2009-02-22 Vincent PitHide an uncoverable line
2009-02-20 Vincent PitBless the op info object into the right class (stealing...
2009-02-19 Vincent PitExplicitely pass the flags to vmg_cb_call(). Also pass...
2009-02-19 Vincent PitInline the 'eval' specific part of vmg_cb_call() into...
2009-02-19 Vincent PitFactor the callback retval retrieval logic into a new...
2009-02-19 Vincent PitFix and test segfaults and wrong "Unknown error" except...
2009-02-16 Vincent PitMake op_info thread safe
2009-02-14 Vincent PitReference count vmg_op_name_len
2009-02-12 Vincent Pitcroak() if storing the wizard in the context fails...
2009-02-12 Vincent Pitgetdata() handles the stack itself, so make it return...
2009-02-12 Vincent PitReorder a bit the wizard duplication logic to silence...
2009-02-09 Vincent PitReally skip free callbacks during global destruction
2009-02-08 Vincent PitAdd compatibility macro for SvPV_const
2009-02-08 Vincent PitGet current op information in magic callbacks
2009-02-08 Vincent PitmPUSHi is no longer needed, but mPUSHu does
2009-02-07 Vincent PitSet $_[2] to the default length for len magic on scalars
2009-01-29 Vincent PitDon't even define a CLONE sub when the module isn't...
2009-01-25 Vincent Pitsv_mortalcopy() is more efficient than sv_2mortal(newSV...
2009-01-25 Vincent PitComment revamp in vmg_svt_free()
2009-01-24 Vincent Pitcount isn't used anymore in vmg_svt_len()
2009-01-24 Vincent PitA more reliable logic for turning off the GMAGICAL...
2009-01-24 Vincent PitFix segfaults when using get or uvar magic simultaneous...
2009-01-23 Vincent PitAllow editing the key SV in uvar callbacks by passing...
2009-01-20 Vincent PitFix refcount of scalars with free callback
2009-01-20 Vincent PitDon't call the free callback in global destruction
2009-01-20 Vincent PitSpacing
2009-01-19 Vincent PitA better fix for handling exceptions at compile time.
2009-01-19 Vincent PitRemove an unused variable
2009-01-18 Vincent PitFix segfaults that seems to happen when one croak in...
2008-12-27 Vincent PitFix an offset of 1 with len magic on scalars
2008-12-17 Vincent PitDon't redefine VMG_COMPAT_ARRAY_PUSH_NOLEN
2008-12-02 Vincent PitThe context is actually used in vmg_sv_magicuvar()...
2008-11-29 Vincent PitFix leaks of cloned coderefs that access lexicals
2008-11-27 Vincent PitIntroduce VMG_COMPAT_ARRAY_UNSHIFT_NOLEN_VOID to cover...
2008-11-13 Vincent PitFix building for maint-5.8
2008-11-12 Vincent PitImprove logic for the SvREFCNT_inc workaround in vmg_da...
2008-11-12 Vincent PitVersion macro overhaul. Enable correct behaviour for...
2008-10-12 Vincent PitReally fix building on perls with multiplicity but...
2008-10-11 Vincent Pitw->cb_dup is currently always NULL
2008-10-10 Vincent PitOnly build clone functions when VMG_THREADSAFE is set
2008-09-29 Vincent PitDisable thread safety for 5.8.x on Windows
2008-09-27 Vincent PitHide previously deleted magic tokens in vmg_svt_free...
2008-09-21 Vincent PitAdd some parenthesis to appease the compiler
2008-09-21 Vincent PitRemove two unused variables
2008-09-21 Vincent PitSilence three 'mixed declaration and code' warnings
2008-09-21 Vincent PitShrink the context data by getting rid of the mostly...
2008-09-21 Vincent PitEnable thread-safety for perls that just lacks MY_CXT_CLONE
2008-09-20 Vincent PitReally don't try to read the context before we're sure...
2008-09-20 Vincent PitMove vmg_clone() upwards
2008-09-20 Vincent PitFactor signature/wizard checks into proper functions...
2008-09-20 Vincent PitAllocate context hash iterators as soon as they are...
2008-09-20 Vincent PitClone wizards across threads
2008-09-20 Vincent PitUse 0 (store as-is) as the len when casting magic on...
2008-09-20 Vincent PitRemove refcount debugging macro
2008-09-20 Vincent PitThread detection macros overhaul
2008-09-20 Vincent PitSkip wizard destructor during global destruction
2008-09-20 Vincent PitTurn READONLY on onto wizard objects
2008-09-19 Vincent PitMake the module threadsafe by adding a CLONE method...
2008-09-05 Vincent PitOnly enable turn the MGf_* flags on when the correspond...
2008-08-27 Vincent PitReplace XPUSHs by EXTEND/PUSHs
2008-07-05 Vincent PitForce temps cleanup after removing the wizard from...
2008-07-05 Vincent PitExport the patchlevel with the new VMG_PERL_PATCHLEVEL...
2008-07-05 Vincent PitRemove PERL_API_* macros
2008-07-05 Vincent Pit'uvar' magic will never be backported to 5.8, enable...
2008-07-05 Vincent PitEnforce the API change for copy callbacks only in 5...
2008-07-05 Vincent PitReplace old version tests by VMG_HAS_PERL_OR
2008-07-05 Vincent PitAdd the VMG_HAS_PERL_{AND,OR} macros to test for a...
2008-07-04 Vincent PitSet VMG_COMPAT_ARRAY_PUSH_NOLEN for Windows ActiveState...
2008-07-04 Vincent PitEnable uvar magic when patchlevel >= 28419
2008-06-29 Vincent PitImporting Variable-Magic-0.17.tar.gz v0.17
2008-06-29 Vincent PitImporting Variable-Magic-0.16.tar.gz v0.16
2008-06-29 Vincent PitImporting Variable-Magic-0.15.tar.gz v0.15
2008-06-29 Vincent PitImporting Variable-Magic-0.14.tar.gz v0.14
2008-06-29 Vincent PitImporting Variable-Magic-0.11.tar.gz v0.11
next