Prepare to reimplement copy-on-write. previous commit stable.

This commit is contained in:
Bahadir Balban
2008-03-01 15:15:36 +00:00
parent 4f346cea53
commit e2e6c89da2
5 changed files with 24 additions and 9 deletions

13
tasks/mm0/include/proc.h Normal file
View 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