Mercurial > cgi-bin > hgwebdir.cgi > VMS > VMS_Implementations > VMS_impls > VMS__MC_shared_impl
changeset 283:7aa806812466 Common_Ancestor
fix format for predefined slave fn
| author | Nina Engelhardt <nengel@mailbox.tu-berlin.de> |
|---|---|
| date | Wed, 29 May 2013 16:05:38 +0200 |
| parents | b58fb1343377 |
| children | 039ac4b71fe5 |
| files | VMS__startup_and_shutdown.c |
| diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line diff
1.1 --- a/VMS__startup_and_shutdown.c Fri May 17 17:49:35 2013 +0200 1.2 +++ b/VMS__startup_and_shutdown.c Wed May 29 16:05:38 2013 +0200 1.3 @@ -41,7 +41,7 @@ 1.4 create_free_list(); 1.5 1.6 void 1.7 -endOSThreadFn( void *initData, SlaveVP *animatingSlv ); 1.8 +endOSThreadFn( void *initData ); 1.9 1.10 1.11 //=========================================================================== 1.12 @@ -532,12 +532,12 @@ 1.13 * processors). 1.14 */ 1.15 void 1.16 -endOSThreadFn( void *initData, SlaveVP *animatingSlv ) 1.17 +endOSThreadFn( void *initData ) 1.18 { 1.19 #ifdef DEBUG__TURN_ON_SEQUENTIAL_MODE 1.20 - asmTerminateCoreCtlrSeq(animatingSlv); 1.21 + asmTerminateCoreCtlrSeq(currVP); 1.22 #else 1.23 - asmTerminateCoreCtlr(animatingSlv); 1.24 + asmTerminateCoreCtlr(currVP); 1.25 #endif 1.26 } 1.27
