Changeset 429
- Timestamp:
- Jan 29, 2018, 6:08:40 PM (7 years ago)
- Location:
- trunk/kernel/mm
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/mm/kmem.c
r407 r429 268 268 if( req->type >= KMEM_TYPES_NR ) 269 269 { 270 panic("illegal request type");270 assert( false , __FUNCTION__ , "illegal request type\n" ); 271 271 } 272 272 -
trunk/kernel/mm/vmm.c
r416 r429 191 191 bool_t mapping ) 192 192 { 193 assert( (process->ref_xp == XPTR( local_cxy , process )) , __FUNCTION__, 194 "this function must be executed in reference cluster" ); 195 193 196 vmm_t * vmm = &process->vmm; 194 197 gpt_t * gpt = &vmm->gpt; -
trunk/kernel/mm/vmm.h
r415 r429 145 145 /********************************************************************************************* 146 146 * This function displays on TXY0 the list or registered vsegs for a given <process>. 147 * If the <mapping> argument is true, it displays for each vesg all mapped PTEs in GPT. 147 * It must be executed by a thread running in reference cluster. 148 * If the <mapping> argument is true, it displays for each vseg all mapped PTEs in GPT. 148 149 ********************************************************************************************* 149 150 * @ process : pointer on process descriptor. -
trunk/kernel/mm/vseg.c
r408 r429 161 161 else 162 162 { 163 panic("illegal vseg type");163 assert( false , __FUNCTION__ , "illegal vseg type\n" ); 164 164 } 165 165
Note: See TracChangeset
for help on using the changeset viewer.