Changeset 438 for trunk/kernel/kern/do_syscall.c
- Timestamp:
- Apr 4, 2018, 2:49:02 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/do_syscall.c
r437 r438 173 173 int error = 0; 174 174 175 assert( (this == CURRENT_THREAD), __FUNCTION__, 176 "wrong <this> argument\n" ); 177 175 178 // update user time 176 179 thread_user_time_update( this ); … … 194 197 195 198 // check kernel stack overflow 196 assert( (this->signature == THREAD_SIGNATURE), __FUNCTION__, "kernel stack overflow\n" ); 199 assert( (CURRENT_THREAD->signature == THREAD_SIGNATURE), __FUNCTION__, 200 "kernel stack overflow after for thread %x in cluster %x\n", CURRENT_THREAD, local_cxy ); 197 201 198 202 // update kernel time
Note: See TracChangeset
for help on using the changeset viewer.