コード例 #1
0
ファイル: dbg_mlc.c プロジェクト: GWRon/brl.mod-NG
GC_API GC_ATTR_MALLOC void * GC_CALL
    GC_debug_malloc_atomic_ignore_off_page(size_t lb, GC_EXTRA_PARAMS)
{
    void * result = GC_malloc_atomic_ignore_off_page(
                                SIZET_SAT_ADD(lb, DEBUG_BYTES));

    return store_debug_info(result, lb,
                            "GC_debug_malloc_atomic_ignore_off_page",
                            OPT_RA s, i);
}
コード例 #2
0
ファイル: dbg_mlc.c プロジェクト: Amaury/Trantor
GC_API void * GC_CALL GC_debug_malloc_atomic_ignore_off_page(size_t lb,
                                                             GC_EXTRA_PARAMS)
{
    void * result = GC_malloc_atomic_ignore_off_page(lb + DEBUG_BYTES);

    if (result == 0) {
        GC_err_printf("GC_debug_malloc_atomic_ignore_off_page(%lu)"
                      " returning NULL (%s:%d)\n", (unsigned long)lb, s, i);
        return(0);
    }
    if (!GC_debugging_started) {
        GC_start_debugging();
    }
    ADD_CALL_CHAIN(result, ra);
    return (GC_store_debug_info(result, (word)lb, s, i));
}
コード例 #3
0
ファイル: SimpleArray_UB32_1.hpp プロジェクト: gnooth/xcl
 void * operator new(size_t size, INDEX capacity)
 {
     return GC_malloc_atomic_ignore_off_page(sizeof(SimpleArray_UB32_1) + capacity * sizeof(unsigned int));
 }