basic async mechanism
[vg.git] / vg_mem.h
index 8f3da6361396d97577c1334e401bf1b251462206..49d9e37e86b8af8d515a64a164d64873e6d6f59f 100644 (file)
--- a/vg_mem.h
+++ b/vg_mem.h
@@ -19,8 +19,7 @@ typedef struct vg_allocation_meta vg_allocation_meta;
 struct
 {
    void *rtmemory,
-        *scratch,
-        *async;
+        *scratch;
 
    int   use_libc_malloc;
    u32   quota;
@@ -385,9 +384,6 @@ VG_STATIC void vg_alloc_quota(void)
    vg_mem.scratch = vg_create_linear_allocator( vg_mem.rtmemory, 
                                                 size_scratch,
                                                 VG_MEMORY_SYSTEM );
-
-   vg_mem.async = vg_create_linear_allocator( NULL, 50*1024*1024, 
-                                              VG_MEMORY_REALTIME );
 }
 
 #endif /* VG_MEM_H */