Mercurial > cgi-bin > hgwebdir.cgi > VMS > VMS_Implementations > VMS_impls > VMS__MC_shared_impl
diff vmalloc.h @ 57:85b731b290f8
Merge between VCilk and SSR intermediate Nov 4
| author | Me |
|---|---|
| date | Thu, 04 Nov 2010 18:27:27 -0700 |
| parents | 8f7141a9272e |
| children | 13b22ffb8a2f |
line diff
1.1 --- a/vmalloc.h Thu Nov 04 17:57:39 2010 -0700 1.2 +++ b/vmalloc.h Thu Nov 04 18:27:27 2010 -0700 1.3 @@ -34,8 +34,19 @@ 1.4 void 1.5 VMS__free( void *ptrToFree ); 1.6 1.7 +/*Allocates memory from the external system -- higher overhead 1.8 + */ 1.9 +void * 1.10 +VMS__malloc_in_ext( int32 sizeRequested ); 1.11 + 1.12 +/*Frees memory that was allocated in the external system -- higher overhead 1.13 + */ 1.14 +void 1.15 +VMS__free_in_ext( void *ptrToFree ); 1.16 + 1.17 + 1.18 MallocProlog * 1.19 -VMS__create_free_list(); 1.20 +VMS_ext__create_free_list(); 1.21 1.22 void 1.23 VMS_ext__free_free_list( MallocProlog *freeListHead );
