DSRSwarm.h
上传用户:shenzhenrh
上传日期:2013-05-12
资源大小:2904k
文件大小:0k
源码类别:

信息检索与抽取

开发平台:

Unix_Linux

  1. /*
  2. Name:         DSRSwarm.h
  3. Description:  DSRSwarm (short for: DynamicScheduleRepeatSwarm) is used for
  4.               testing for presence of dynamic scheduling bug in schedule with
  5.       repeat cycle. 
  6. Test suite:   activity
  7. */
  8. #import <objectbase/Swarm.h>
  9. extern int stimes[10];
  10. @interface DSRSwarm: Swarm
  11. {
  12.   id firstSchedule;
  13.   id secondSchedule;
  14. }
  15. - printOk;
  16. - stopRunning;
  17. - schedulePrintOkOnFirstScheduleAfterCurrentTime;
  18. - schedulePrintOkOnFirstScheduleBeforeCurrentTime;
  19. @end