}
threadNum=parseArgToInt(argv[1]);
runTime=parseArgToInt(argv[2]);
//Get the time the threads should run,runtime
//Calculate time to halt
// runTime=60;/*in seconds.*/
GetSystemTime(&now);
printf("mthread:Suite starting aty system time%d,%d,%d\n",now.wHour,now.wMinute,now.wSecond);
stopTimeSecond=(now.wSecond+(WORD)runTime)%60;
stopTimeMinute=now.wMinute+(now.wSecond+(WORD)runTime)/60;
//FOR 1 TO N
INTEGER* tmpInt;
for(i=0;i<threadNum;i++)
{
//CREATE A NEW THREAD TO EXECUTE SIMULATED WORK;
//threadWork(i);