Added same global task management mechanism from mm0 to fs0

This commit is contained in:
Bahadir Balban
2008-10-24 14:59:25 +03:00
parent e875344149
commit 46fcdc9b31
2 changed files with 37 additions and 11 deletions

View File

@@ -0,0 +1,13 @@
#ifndef __GLOBALS_H__
#define __GLOBALS_H__
struct global_list {
int total;
struct list_head list;
};
extern struct global_list global_vm_files;
extern struct global_list global_vm_objects;
extern struct global_list global_tasks;
#endif /* __GLOBALS_H__ */