Annotation of parser3/src/targets/isapi/pa_pool.C, revision 1.1

1.1     ! paf         1: /*
        !             2:        Parser
        !             3:        Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com)
        !             4:        Author: Alexander Petrosyan <paf@design.ru> (http://design.ru/paf)
        !             5: 
        !             6:        $Id: pa_pool.C,v 1.1 2001/03/13 17:22:13 paf Exp $
        !             7: */
        !             8: 
        !             9: #include <stdlib.h>
        !            10: 
        !            11: #include "pa_pool.h"
        !            12: 
        !            13: void *Pool::real_malloc(size_t size) {
        !            14:        // todo: log
        !            15:        return ::malloc(size);
        !            16: }
        !            17: 
        !            18: void *Pool::real_calloc(size_t size) {
        !            19:        // todo: log
        !            20:        return ::calloc(size, 1);
        !            21: }
        !            22: 
        !            23: Pool::~Pool() {
        !            24:        // todo: free 
        !            25: }

E-mail: