Changeset 3a321e23 in rtems
- Timestamp:
- 10/06/97 21:32:47 (26 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 0c618b67
- Parents:
- ffa6183
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/tests/libtests/rtems++/System.h
rffa6183 r3a321e23 38 38 : public rtemsTask 39 39 { 40 rtemsEvent end_init;41 42 rtemsEvent end_init;43 44 rtemsEvent end_init;45 46 40 void print_mode(rtems_mode mode, rtems_mode mask); 47 41 … … 53 47 void screen6(void); 54 48 55 void set_end_event(rtemsEvent& end_event) { end_init = end_event; }56 49 protected: 57 50 virtual void body(rtems_task_argument argument); 58 void set_end_event(rtemsEvent& end_event) { end_init = end_event; }59 51 60 52 public: 61 void set_end_event(rtemsEvent& end_event) { end_init = end_event; }62 53 }; 63 54 … … 79 70 : public rtemsTask 80 71 { 72 void screen6(void); 73 74 protected: 75 virtual void body(rtems_task_argument argument); 76 77 public: 78 Task3(const char* name, 79 const rtems_task_priority initial_priority, 80 const rtems_unsigned32 stack_size); 81 81 }; 82 82 … … 91 91 const rtems_task_priority initial_priority, 92 92 const rtems_unsigned32 stack_size); 93 void screen6(void);94 95 protected:96 virtual void body(rtems_task_argument argument);97 98 public:99 Task3(const char* name,100 const rtems_task_priority initial_priority,101 const rtems_unsigned32 stack_size);102 93 }; 103 94 -
testsuites/libtests/rtems++/System.h
rffa6183 r3a321e23 38 38 : public rtemsTask 39 39 { 40 rtemsEvent end_init;41 42 rtemsEvent end_init;43 44 rtemsEvent end_init;45 46 40 void print_mode(rtems_mode mode, rtems_mode mask); 47 41 … … 53 47 void screen6(void); 54 48 55 void set_end_event(rtemsEvent& end_event) { end_init = end_event; }56 49 protected: 57 50 virtual void body(rtems_task_argument argument); 58 void set_end_event(rtemsEvent& end_event) { end_init = end_event; }59 51 60 52 public: 61 void set_end_event(rtemsEvent& end_event) { end_init = end_event; }62 53 }; 63 54 … … 79 70 : public rtemsTask 80 71 { 72 void screen6(void); 73 74 protected: 75 virtual void body(rtems_task_argument argument); 76 77 public: 78 Task3(const char* name, 79 const rtems_task_priority initial_priority, 80 const rtems_unsigned32 stack_size); 81 81 }; 82 82 … … 91 91 const rtems_task_priority initial_priority, 92 92 const rtems_unsigned32 stack_size); 93 void screen6(void);94 95 protected:96 virtual void body(rtems_task_argument argument);97 98 public:99 Task3(const char* name,100 const rtems_task_priority initial_priority,101 const rtems_unsigned32 stack_size);102 93 }; 103 94
Note: See TracChangeset
for help on using the changeset viewer.