예제 #1
0
파일: fnet_netbuf.c 프로젝트: 8bitgeek/fnet
/************************************************************************
* NAME: fnet_malloc_max
*
* DESCRIPTION: Returns a maximum size of posible allocated memory chunk.
*              
*************************************************************************/
fnet_size_t fnet_malloc_max( void )
{
    return fnet_mempool_malloc_max( fnet_mempool_main  );
}
예제 #2
0
파일: fnet_netbuf.c 프로젝트: ErikZalm/fnet
/************************************************************************
* NAME: fnet_malloc_max
*
* DESCRIPTION: Returns a maximum size of posible allocated memory chunk.
*              
*************************************************************************/
unsigned long fnet_malloc_max( void )
{
    return fnet_mempool_malloc_max( fnet_mempool_main  );
}
예제 #3
0
파일: fnet_netbuf.c 프로젝트: 8bitgeek/fnet
/************************************************************************
* NAME: fnet_malloc_max
*
* DESCRIPTION: Returns a maximum size of posible allocated memory chunk.
*              
*************************************************************************/
fnet_size_t fnet_malloc_max_netbuf( void )
{
    return fnet_mempool_malloc_max( fnet_mempool_netbuf  );
}
예제 #4
0
파일: fnet_netbuf.c 프로젝트: ErikZalm/fnet
/************************************************************************
* NAME: fnet_malloc_max
*
* DESCRIPTION: Returns a maximum size of posible allocated memory chunk.
*              
*************************************************************************/
unsigned long fnet_malloc_max_netbuf( void )
{
    return fnet_mempool_malloc_max( fnet_mempool_netbuf  );
}