73d4c99d78
This is upgrading code as-is. The build will fail. Signed-off-by: Ying Xie <ying.xie@microsoft.com>
37 lines
1.1 KiB
C
37 lines
1.1 KiB
C
/*
|
|
* Copyright 2017 Broadcom
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License, version 2, as
|
|
* published by the Free Software Foundation (the "GPL").
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* General Public License version 2 (GPLv2) for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* version 2 (GPLv2) along with this source code.
|
|
*/
|
|
/*
|
|
* $Id: mpool.h,v 1.2 Broadcom SDK $
|
|
* $Copyright: (c) 2005 Broadcom Corp.
|
|
* All Rights Reserved.$
|
|
*/
|
|
|
|
#ifndef __MPOOL_H__
|
|
#define __MPOOL_H__
|
|
|
|
struct mpool_mem_s;
|
|
typedef struct mpool_mem_s* mpool_handle_t;
|
|
|
|
extern int mpool_init(void);
|
|
extern mpool_handle_t mpool_create(void* base_address, int size);
|
|
extern void* mpool_alloc(mpool_handle_t pool, int size);
|
|
extern void mpool_free(mpool_handle_t pool, void* ptr);
|
|
extern int mpool_destroy(mpool_handle_t pool);
|
|
|
|
extern int mpool_usage(mpool_handle_t pool);
|
|
|
|
#endif /* __MPOOL_H__ */
|