comparison VSs.c @ 5:8188c5b4bfd7

implemented taskwait
author Nina Engelhardt <nengel@mailbox.tu-berlin.de>
date Fri, 13 Jul 2012 17:35:49 +0200
parents 13af59ed7ea5
children 1780f6b00e3d
comparison
equal deleted inserted replaced
3:b7ea637e1c74 4:2e6293a1eccc
499 499
500 VMS_WL__send_sem_request( &reqData, animSlv ); 500 VMS_WL__send_sem_request( &reqData, animSlv );
501 } 501 }
502 502
503 503
504 void
505 VSs__taskwait(SlaveVP *animSlv)
506 {
507 VSsSemReq reqData;
508
509 reqData.reqType = taskwait;
510 reqData.callingSlv = animSlv;
511
512 VMS_WL__send_sem_request( &reqData, animSlv );
513 }
514
515
516
504 //========================== send and receive ============================ 517 //========================== send and receive ============================
505 // 518 //
506 519
507 inline int32 * 520 inline int32 *
508 VSs__give_self_taskID( SlaveVP *animSlv ) 521 VSs__give_self_taskID( SlaveVP *animSlv )