Mercurial > cgi-bin > hgwebdir.cgi > VMS > VMS_Implementations > VMS_impls > VMS__MC_shared_impl
diff VMS.c @ 120:d4c881c7f03a
Added fn to send inter-master requests, and cleaned up code
| author | Me@portablequad |
|---|---|
| date | Sat, 03 Sep 2011 20:41:51 -0700 |
| parents | efb55f1b5fb9 |
| children | dbfc8382d546 |
line diff
1.1 --- a/VMS.c Tue Aug 30 21:55:04 2011 -0700 1.2 +++ b/VMS.c Sat Sep 03 20:41:51 2011 -0700 1.3 @@ -497,6 +497,19 @@ 1.4 VMS__suspend_procr( callingPr ); 1.5 } 1.6 1.7 +void inline 1.8 +VMS__send_inter_plugin_req( void *reqData, int32 targetMaster, 1.9 + VirtProcr *requestingMaster ) 1.10 + { _VMSMasterEnv->interMasterRequestsFor[targetMaster] = 1.11 + (InterMasterReqst *) reqData; 1.12 + } 1.13 + 1.14 +void inline 1.15 +VMS__send_inter_VMSCore_req( InterVMSCoreReqst *reqData, 1.16 + int32 targetMaster, VirtProcr *requestingMaster ) 1.17 + { _VMSMasterEnv->interMasterRequestsFor[targetMaster] = 1.18 + (InterMasterReqst *) reqData; 1.19 + } 1.20 1.21 /* 1.22 */
