alloc.h

Go to the documentation of this file.
00001 
00004 #define PAGINA_SIZE 4096
00005 
00006 void *malloc_page(void);
00007 void *malloc(unsigned nbytes);
00008 void free (void *ap);
00009 
00010 typedef long Align;
00011 
00012 typedef union header {
00013     struct {
00014         union header *ptr;
00015         unsigned size;
00016     } s;
00017     Align x;
00018 } Header;
00019 
00020 Header *morecore(void);

Generated on Sun May 30 18:38:34 2004 for Routix OS by doxygen 1.3.6