OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
task_block_api.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #ifndef vnsw_agent_task_block_api_h
6 #define vnsw_agent_task_block_api_h
7 
8 #include <stdlib.h>
9 
10 typedef unsigned long block_t;
11 
12 extern block_t task_block_init(size_t size, const char *name);
13 extern void *task_block_alloc(block_t block);
14 extern void task_block_free(block_t block, void *mem);
15 
16 #endif /* vnsw_agent_task_block_api_h */
void task_block_free(block_t block, void *mem)
unsigned long block_t
block_t task_block_init(size_t size, const char *name)
void * task_block_alloc(block_t block)