summaryrefslogtreecommitdiffstats
path: root/sbe/sbefw/pool.C
blob: 6f5acf243ba3f23c44b24512ef1d9d63b9cf613b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include <stdint.h>
#include <sbetrace.H>
#include <stddef.h>
#include<pool.H>
#include "assert.h"

namespace SBEVECTORPOOL
{

vectorMemPool_t g_pool[G_POOLSIZE];

vectorMemPool_t * allocMem()
{
    vectorMemPool_t *pool = NULL;
    for( size_t idx = 0; idx < G_POOLSIZE; idx++ )
    {
        if( 0 == g_pool[idx].refCount )
        {
            pool = g_pool + idx;
            g_pool[idx].refCount++;
            break;
        }
    }
    SBE_TRACE(" Giving pool 0x%08X", pool);
    return pool;
}

void releaseMem( vectorMemPool_t * i_pool )
{
    do
    {
        if ( NULL == i_pool )   break;

       // Assert here.  This pool was not supposed to be in use.
        assert( 0 != i_pool->refCount )
        SBE_TRACE(" Releasing pool 0x%08X", i_pool);
        i_pool->refCount--;
        SBE_TRACE(" In releaseMem() RefCount:%u", i_pool->refCount);
    }while(0);
}

} // namesspace SBEVECTORPOOL
OpenPOWER on IntegriCloud