Changeset 16 for trunk/kernel/kern/rpc.c
- Timestamp:
- May 10, 2017, 5:04:01 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/rpc.c
r14 r16 745 745 746 746 ///////////////////////////////////////////////////////////////////////////////////////// 747 // Marshaling functions attached to RPC_VMM_GET_ VSEG747 // Marshaling functions attached to RPC_VMM_GET_REF_VSEG 748 748 ///////////////////////////////////////////////////////////////////////////////////////// 749 749 … … 797 797 798 798 // set output argument to client RPC descriptor 799 vseg_xp = XPTR( local_cxy , vseg_ptr ); 799 if( vseg_ptr == NULL ) vseg_xp = XPTR_NULL; 800 else vseg_xp = XPTR( local_cxy , vseg_ptr ); 800 801 hal_remote_swd( XPTR( client_cxy , &desc->args[2] ) , (uint64_t)vseg_xp ); 801 802 }
Note: See TracChangeset
for help on using the changeset viewer.