Files
codezero/tasks/mm0/include/proc.h
Bahadir Balban 58b833dd7f Forks and COW situations show that we need vm objects rather than vm_files.
This is the first commit towards implementing vm object based paging with
right COW methods.
2008-03-03 22:05:01 +00:00

16 lines
406 B
C

#ifndef __MM0_PROC__
#define __MM0_PROC__
#include <vm_area.h>
struct proc_files {
struct vm_object *stack_file; /* ZI, RO: devzero, RW: private */
struct vm_object *env_file; /* NON-ZI, RO: private, RW: private */
struct vm_object *data_file; /* NON-ZI, RO: shared, RW: private */
struct vm_object *bss_file; /* ZI, RO: devzero, RW: private */
};
int task_setup_vm_objects(struct tcb *t);
#endif