Lab5
 All Data Structures Functions Variables Groups
lmlib.h
1 #ifndef __LMLIB_H
2 #define __LMLIB_H
3 
16 typedef struct {
17  phys_bytes phys;
18  void *virtual;
19  unsigned long size;
20 } mmap_t;
21 
29 void *lm_init(void);
30 
42 void *lm_alloc(unsigned long size, mmap_t *map);
43 
53 void lm_free(mmap_t *map);
54 
55 #endif /*__LMLIB_H */