Files
codezero/conts/posix/mm0/include/globals.h
Bahadir Balban f0bb0a4657 Added posix code
2009-09-29 21:55:59 +03:00

14 lines
257 B
C

#ifndef __GLOBALS_H__
#define __GLOBALS_H__
struct global_list {
int total;
struct link list;
};
extern struct global_list global_vm_files;
extern struct global_list global_vm_objects;
extern struct global_list global_tasks;
#endif /* __GLOBALS_H__ */