Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Unity-Technologies/bdwgc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2018-09-25Add IL2CPP_ENABLE_WRITE_BARRIER_VALIDATION to remove functions we want to pat...add-validation-definesJonas Echterhoff
2018-05-15Remove stubborn objects allocation code completelyIvan Maidanski
2018-02-28Declare all internal functions in private headers instead of .c filesIvan Maidanski
2018-02-26Avoid potential race when accessing size_map tableHans Boehm
2018-02-26Revert 'Workaround TSan false positives in extend_size_map'Ivan Maidanski
2018-02-08Change type of hb_sz field (of hblkhdr) from size_t to wordIvan Maidanski
2017-11-21Place no_sanitize attributes in a GCC-compliant wayIvan Maidanski
2017-11-16Workaround TSan false positives in extend_size_mapIvan Maidanski
2017-11-14Remove GENERAL_MALLOC internal macroIvan Maidanski
2017-10-25Make extend_size_map() staticIvan Maidanski
2017-08-09Do not call BCOPY and BZERO if size is zeroIvan Maidanski
2017-08-07Fix leak_test crash in print_callers if free() is redirectedIvan Maidanski
2016-12-07Fix '32-bit value shift followed by expansion to 64-bit' code defectIvan Maidanski
2016-11-19Fix assertion violation in GC_repeat_read if --enable-redirect-mallocIvan Maidanski
2016-11-18Ensure oom_fn callback executed on out-of-memory in callocIvan Maidanski
2016-10-24Workaround 'value of macro unknown' cppcheck info messagesIvan Maidanski
2016-10-22Workaround 'value of REDIRECT_MALLOC/FREE unknown' cppcheck info messagesIvan Maidanski
2016-10-14Eliminate more 'scope of variable can be reduced' cppcheck style warningsIvan Maidanski
2016-10-04Eliminate more 'scope of variable can be reduced' cppcheck style warningsIvan Maidanski
2016-09-27Fix GC_bytes_allocd incrementation in case of allocation failureIvan Maidanski
2016-09-23Fix malloc routines to prevent size value wrap-aroundIvan Maidanski
2016-09-21Fix 'shift count >= width of type' compiler warning in GC_SQRT_SIZE_MAXIvan Maidanski
2016-06-30Merge branch 'generalize-alloc-via-ok_freelist'Ivan Maidanski
2016-06-30Revert "Refactoring of GC_Xobjfreelist" partiallyIvan Maidanski
2016-06-30Replace GC_freelists usage with GC_obj_kinds[].ok_freelistIvan Maidanski
2016-03-18Fix 'GC_generic_malloc_inner_ignore_off_page not used' compiler warningIvan Maidanski
2016-01-28GC_malloc[_atomic] global and thread-local generalization with kindAlessandro Bruni
2016-01-15GC_malloc_[atomic_]uncollectable generalizationIvan Maidanski
2016-01-13Fix typo in GC_malloc_uncollectable commentIvan Maidanski
2016-01-05Refactoring of GC_XobjfreelistAlessandro Bruni
2015-10-22Fix lock assert violation in GC_gcollect_inner if GC_ALWAYS_MULTITHREADEDIvan Maidanski
2015-10-22Add assertion on lock status to GC_alloc_large and its callersIvan Maidanski
2015-05-11Adjust code indentation of malloc/calloc/str[n]dupIvan Maidanski
2015-05-11Recognize REDIRECT_MALLOC_IN_HEADER macroIvan Maidanski
2014-04-23Fix MS VC redefinition warning for functions declared with GC_ATTR_MALLOCIvan Maidanski
2014-03-30Define ROUNDUP_PAGESIZE, ROUNDUP_GRANULE_SIZE macros (code refactoring)Ivan Maidanski
2014-02-21Remove redundant casts in GC_generic_or_special_malloc and similarIvan Maidanski
2013-12-15Remove 'opp' local variable in GC_malloc_XIvan Maidanski
2013-08-25Replace GC_DBG_RA with GC_DBG_EXTRAS macroIvan Maidanski
2013-08-25Adjust GC_debug_malloc/realloc_replacement macro to match the API functionIvan Maidanski
2013-07-11Fix typos in commentsOndrej Bilka
2012-12-10Prepend '#' symbol to GC number in logged messagesIvan Maidanski
2012-11-08Use GC_log_printf for logging instead of GC_[err_]printfIvan Maidanski
2012-11-06Add FIXME for GC_max_large_allocd_bytes and GC_mark_stack_size growthIvan Maidanski
2012-09-11Enable 'Force GC at every GC_malloc' debug-related functionalityIvan Maidanski
2012-05-16Fix assertion in GC_malloc_[atomic_]uncollectable (THREADS case only)Ivan Maidanski
2012-04-20Code refactoring of GC_generic_malloc_inner (eliminate recursion)Ivan Maidanski
2012-03-15Speedup calloc size overflow check by preventing division if small valuesHans Boehm
2012-03-15Fix calloc-related code to prevent SIZE_MAX redefinition in sys headersIvan Maidanski
2012-03-15Fix allocation size overflows due to rounding.Xi Wang