comparison vmalloc.h @ 60:7b799a46cc87

Added compiler switch to turn on and off debug-only probes, deleted time-junk
author Me
date Mon, 08 Nov 2010 03:57:46 -0800
parents 8f7141a9272e
children 13b22ffb8a2f
comparison
equal deleted inserted replaced
0:5cfc9fbfa18a 1:0dc7b0b8bf2b
32 VMS__malloc( int32 sizeRequested ); 32 VMS__malloc( int32 sizeRequested );
33 33
34 void 34 void
35 VMS__free( void *ptrToFree ); 35 VMS__free( void *ptrToFree );
36 36
37 /*Allocates memory from the external system -- higher overhead
38 */
39 void *
40 VMS__malloc_in_ext( int32 sizeRequested );
41
42 /*Frees memory that was allocated in the external system -- higher overhead
43 */
44 void
45 VMS__free_in_ext( void *ptrToFree );
46
47
37 MallocProlog * 48 MallocProlog *
38 VMS__create_free_list(); 49 VMS_ext__create_free_list();
39 50
40 void 51 void
41 VMS_ext__free_free_list( MallocProlog *freeListHead ); 52 VMS_ext__free_free_list( MallocProlog *freeListHead );