mirror of
https://github.com/drasko/codezero.git
synced 2026-03-04 03:23:16 +01:00
Prepare to reimplement copy-on-write. previous commit stable.
This commit is contained in:
13
tasks/mm0/include/proc.h
Normal file
13
tasks/mm0/include/proc.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#ifndef __MM0_PROC__
|
||||
#define __MM0_PROC__
|
||||
|
||||
struct proc_files {
|
||||
struct vm_file *stackfile; /* ZI, private, devzero, then autogenerated */
|
||||
struct vm_file *envfile; /* NON-ZI, private, autogenerated, then autogenerated */
|
||||
struct vm_file *datafile; /* NON-ZI, private, real file, then autogenerated */
|
||||
struct vm_file *bssfile; /* ZI private, devzero, then autogenerated */
|
||||
};
|
||||
|
||||
int task_prepare_procfiles(struct tcb *t);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user