Ignore:
Timestamp:
Jan 29, 2018, 6:08:07 PM (6 years ago)
Author:
alain
Message:

blip

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/kern/rpc.h

    r416 r428  
    9090    RPC_SCHED_DISPLAY          = 27,
    9191    RPC_VMM_SET_COW            = 28,
     92    RPC_VMM_DISPLAY            = 29,
    9293
    9394    RPC_MAX_INDEX              = 30,
     
    698699void rpc_vmm_set_cow_server( xptr_t xp );
    699700
     701/***********************************************************************************
     702 * [29] The RPC_VMM_DISPLAY allows any client thread to display the VMM state
     703 * of a remote reference process identified by the <cxy> and <process> arguments.
     704 * The type of display is defined by the <detailed> boolean argument.
     705 ***********************************************************************************
     706 * @ cxy         : server cluster identifier.
     707 * @ process     : [in]  local pointer on reference process descriptor.
     708 * @ detailed    : [in]  detailed display if true.
     709 **********************************************************************************/
     710void rpc_vmm_display_client( cxy_t              cxy,
     711                             struct process_s * process,
     712                             bool_t             detailed );
     713
     714void rpc_vmm_display_server( xptr_t xp );
     715
     716
    700717#endif
Note: See TracChangeset for help on using the changeset viewer.