long AtomicCompareExchange(long* atomicvar,long exchange, long compared)
return InterlockedCompareExchange(atomicvar, exchange, compared);
//long AtomicExchange(long* atomicvar,long exchange)
// return InterlockedExchange(atomicvar, exchange);
void PLC_GetTime(IEC_TIME *CURRENT_TIME)
(*CURRENT_TIME).tv_sec = timetmp.time;
(*CURRENT_TIME).tv_nsec = timetmp.millitm * 1000000;
PLC_GetTime(&__CURRENT_TIME);
void PLC_SetTimer(long long next, long long period)
/* arg 2 of SetWaitableTimer take 100 ns interval*/
liDueTime.QuadPart = next / (-100);
printf("SetTimer(%lld,%lld)\n",next, period);
if (!SetWaitableTimer(PLC_timer, &liDueTime, common_ticktime__, NULL, NULL, 0))
printf("SetWaitableTimer failed (%d)\n", GetLastError());
if (WaitForSingleObject(PLC_timer, INFINITE) != WAIT_OBJECT_0)
printf("WaitForSingleObject failed (%d)\n", GetLastError());
int main(int argc,char **argv)
/* Translate PLC's microseconds to Ttick nanoseconds */
Ttick = 1000000 * maxval(common_ticktime__,1);
/* Create a waitable timer */
PLC_timer = CreateWaitableTimer(NULL, FALSE, "WaitableTimer");
printf("CreateWaitableTimer failed (%d)\n", GetLastError());
if( __init(argc,argv) == 0 )
printf("Tick Time : %d ms\n", common_ticktime__);
PLC_SetTimer(Ttick,Ttick);