Changeset 492 for trunk/kernel/syscalls
- Timestamp:
- Aug 22, 2018, 11:55:48 PM (6 years ago)
- Location:
- trunk/kernel/syscalls
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/sys_exec.c
r457 r492 174 174 pid_t pid = process->pid; 175 175 176 assert( (CXY_FROM_PID( pid ) == local_cxy) , __FUNCTION__ ,176 assert( (CXY_FROM_PID( pid ) == local_cxy) , 177 177 "must be called in the owner cluster\n"); 178 178 179 assert( (LTID_FROM_TRDID( this->trdid ) == 0) , __FUNCTION__ ,179 assert( (LTID_FROM_TRDID( this->trdid ) == 0) , 180 180 "must be called by the main thread\n"); 181 181 182 assert( (args == NULL) , __FUNCTION__ ,182 assert( (args == NULL) , 183 183 "args not supported yet\n" ); 184 184 185 assert( (envs == NULL) , __FUNCTION__ ,185 assert( (envs == NULL) , 186 186 "args not supported yet\n" ); 187 187 … … 252 252 } 253 253 254 assert( false , __FUNCTION__,"we should not execute this code" );254 assert( false , "we should not execute this code" ); 255 255 256 256 return 0; -
trunk/kernel/syscalls/sys_read.c
r469 r492 209 209 { 210 210 nbytes = 0; 211 assert( false , __FUNCTION__ ,"file type %d non supported yet\n", type );211 assert( false , "file type %d non supported yet\n", type ); 212 212 } 213 213 -
trunk/kernel/syscalls/sys_write.c
r469 r492 173 173 { 174 174 nbytes = 0; 175 assert( false , __FUNCTION__ ,"file type %d non supported\n", type );175 assert( false , "file type %d non supported\n", type ); 176 176 } 177 177
Note: See TracChangeset
for help on using the changeset viewer.