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

信息检索与抽取

开发平台:

Unix_Linux

  1. /*
  2. Name:         DSSwarm.h
  3. Description:  DSSwarm (short for: DynamicScheduleSwarm) is used for
  4.               testing for presence of dynamic scheduling bug, which used
  5.       to occur when an action is added to a Schedule from another
  6.       Schedule, to be performed after the current time, but before 
  7.       first pending action in the schedule.  Due to the bug action 
  8.       was never performed.
  9. Test suite:   activity
  10. */
  11. #import <objectbase/Swarm.h>
  12. extern int ok;
  13. @interface DSSwarm: Swarm
  14. {
  15.   id firstSchedule;
  16.   id secondSchedule;
  17. }
  18. - schedulePrintOkOnFirstSchedule;
  19. - empty;
  20. - printOk;
  21. @end