PLASMA  2.4.6
 All Data Structures Functions Groups
allocate.h
1 
14 #ifndef _PLASMA_ALLOCATE_H_
15 #define _PLASMA_ALLOCATE_H_
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
21 void *plasma_shared_alloc(plasma_context_t *plasma, size_t size, int type);
22 void plasma_shared_free(plasma_context_t *plasma, void *ptr);
23 void *plasma_private_alloc(plasma_context_t *plasma, size_t size, int type);
24 void plasma_private_free(plasma_context_t *plasma, void *ptr);
25 
26 #ifdef __cplusplus
27 }
28 #endif
29 
30 #endif