Changeset 441 for trunk/kernel/kern/rpc.c
- Timestamp:
- May 9, 2018, 3:13:56 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/kern/rpc.c
r440 r441 1666 1666 1667 1667 ///////////////////////////////////////////////////////////////////////////////////////// 1668 // [21] Marshaling functions attached to RPC_VMM_GET_ VSEG(blocking)1668 // [21] Marshaling functions attached to RPC_VMM_GET_PTE (blocking) 1669 1669 ///////////////////////////////////////////////////////////////////////////////////////// 1670 1670 … … 1689 1689 // initialise RPC descriptor header 1690 1690 rpc_desc_t rpc; 1691 rpc.index = RPC_VMM_GET_ VSEG;1691 rpc.index = RPC_VMM_GET_PTE; 1692 1692 rpc.blocking = true; 1693 1693 rpc.responses = 1; … … 1769 1769 // initialise RPC descriptor header 1770 1770 rpc_desc_t rpc; 1771 rpc.index = RPC_ THREAD_USER_CREATE;1771 rpc.index = RPC_KCM_ALLOC; 1772 1772 rpc.blocking = true; 1773 1773 rpc.responses = 1; … … 1819 1819 // initialise RPC descriptor header 1820 1820 rpc_desc_t rpc; 1821 rpc.index = RPC_ THREAD_USER_CREATE;1821 rpc.index = RPC_KCM_FREE; 1822 1822 rpc.blocking = true; 1823 1823 rpc.responses = 1;
Note: See TracChangeset
for help on using the changeset viewer.