Changeset 374 for trunk/kernel/kern/rpc.c
- Timestamp:
- Aug 14, 2017, 2:51:39 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/rpc.c
r337 r374 85 85 void __attribute__((noinline)) rpc_undefined() 86 86 { 87 printk("\n[PANIC] ‰s called in cluster %x\n", __FUNCTION__ , local_cxy ); 88 hal_core_sleep(); 87 panic("called in cluster %x", local_cxy ); 89 88 } 90 89 … … 1959 1958 if( this->trdid != rpc_fifo->owner ) 1960 1959 { 1961 printk("\n[PANIC] in %s : thread %x on core[%x,%d] not owner of RPC_FIFO\n", 1962 __FUNCTION__, this->trdid, local_cxy, this->core->lid ); 1963 hal_core_sleep(); 1960 panic("thread %x on core[%x,%d] not owner of RPC_FIFO", 1961 this->trdid, local_cxy, this->core->lid ); 1964 1962 } 1965 1963
Note: See TracChangeset
for help on using the changeset viewer.