mirror of
https://github.com/drasko/codezero.git
synced 2026-01-26 09:43:14 +01:00
Added same global task management mechanism from mm0 to fs0
This commit is contained in:
13
tasks/fs0/include/globals.h
Normal file
13
tasks/fs0/include/globals.h
Normal 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__ */
|
||||
Reference in New Issue
Block a user