Changeset 669 for trunk/kernel/kern/rpc.c
- Timestamp:
- Nov 19, 2020, 11:44:34 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/rpc.c
r657 r669 102 102 void __attribute__((noinline)) rpc_undefined( xptr_t xp __attribute__ ((unused)) ) 103 103 { 104 assert( false , "called in cluster %x", local_cxy );104 assert( __FUNCTION__, false , "called in cluster %x", local_cxy ); 105 105 } 106 106 … … 231 231 232 232 // response must be available for a blocking RPC 233 assert( (*rpc->rsp == 0) , "illegal response for RPC %s\n", rpc_str[rpc->index] );233 assert( __FUNCTION__, (*rpc->rsp == 0) , "illegal response for RPC %s\n", rpc_str[rpc->index] ); 234 234 235 235 }
Note: See TracChangeset
for help on using the changeset viewer.