Lines Matching defs:actions
50 // Perform any extra actions required by thread 'input' arg
123 action_counts& actions,
125 action_counts::iterator b = actions.begin(), e = actions.end();
139 // Actions are triggered immediately after the thread is spawned
145 // Actions below are triggered after a 1-second delay
165 action_counts actions;
166 actions.push_back(std::make_pair(num_breakpoint_threads, breakpoint_func));
167 actions.push_back(std::make_pair(num_watchpoint_threads, watchpoint_func));
168 actions.push_back(std::make_pair(num_signal_threads, signal_func));
169 actions.push_back(std::make_pair(num_crash_threads, crash_func));
172 actions.push_back(std::make_pair(num_delay_breakpoint_threads, breakpoint_func));
173 actions.push_back(std::make_pair(num_delay_watchpoint_threads, watchpoint_func));
174 actions.push_back(std::make_pair(num_delay_signal_threads, signal_func));
175 actions.push_back(std::make_pair(num_delay_crash_threads, crash_func));
177 // Create threads that handle instant actions
179 start_threads(threads, actions);
181 // Create threads that handle delayed actions