Changeset 415 for trunk/kernel/mm/vmm.h
- Timestamp:
- Dec 22, 2017, 1:16:59 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/mm/vmm.h
r409 r415 137 137 * - The "stack" vsegs are dynamically created by the thread_user_create() function. 138 138 * - The "file", "anon", "remote" vsegs are dynamically created by the mmap() syscall. 139 * TODO : Any error in this function gives a kernel panic => improve error handling.140 139 ********************************************************************************************* 141 140 * @ process : pointer on process descriptor 142 ********************************************************************************************/ 143 void vmm_init( struct process_s * process ); 141 * @ return 0 if success / return -1 if failure. 142 ********************************************************************************************/ 143 error_t vmm_init( struct process_s * process ); 144 144 145 145 /********************************************************************************************* … … 169 169 * @ child_process : local pointer on local child process descriptor. 170 170 * @ parent_process_xp : extended pointer on remote parent process descriptor. 171 * @ return 0 if success / return ENOMEMif failure.171 * @ return 0 if success / return -1 if failure. 172 172 ********************************************************************************************/ 173 173 error_t vmm_fork_copy( struct process_s * child_process,
Note: See TracChangeset
for help on using the changeset viewer.