Searched refs:kill (Results 1 - 25 of 33) sorted by relevance

12

/gem5/src/systemc/tests/systemc/1666-2011-compliance/overkill_bug/
H A Doverkill_bug.cpp57 h.kill(); // Aborts !!!!!!
71 target_handle.kill();
/gem5/src/systemc/tests/systemc/kernel/dynamic_processes/test10/
H A Dtest10.cpp72 m_thread0.kill();
74 m_thread2.kill();
92 cout << sc_time_stamp() << " thread0: received kill" << endl;
93 m_thread1.kill();
114 cout << sc_time_stamp() << " thread1: received kill" << endl;
133 cout << sc_time_stamp() << " thread2: received kill" << endl;
147 cout << sc_time_stamp() << " stimulus setting kill" << endl;
/gem5/src/systemc/tests/systemc/1666-2011-compliance/recursive_kill_bug/
H A Drecursive_kill_bug.cpp66 h.kill();
88 target_handle.kill();
/gem5/src/systemc/tests/systemc/tmp/compliance_1666_2011/section_6.6/test05/
H A Dtest05.cpp20 // test05.cpp -- Reset and kill a thread process, including nested kills
102 t.kill();
132 k.kill();
/gem5/src/systemc/tests/systemc/tmp/others/kill_reset/
H A Dkill_reset.cpp1 // Reset and kill a thread process, including nested kills
66 t.kill();
71 sc_assert( t.terminated() ); // FAILS IN PRESENCE OF k.kill(); on line 96
96 k.kill();
/gem5/src/systemc/tests/systemc/kernel/dynamic_processes/test09/
H A Dtest09.cpp22 test09.cpp -- Test for hierarchical reset, try/catch and individual kill
85 << " got kill" << endl;
162 m_child1.kill();
163 m_child2.kill();
164 m_child3.kill();
/gem5/src/systemc/tests/systemc/1666-2011-compliance/kill_reset/
H A Dkill_reset.cpp31 // Reset and kill a thread process, including nested kills and resets
92 v.kill();
118 t.kill();
157 k.kill();
226 b3.kill();
/gem5/src/systemc/tests/systemc/1666-2011-compliance/living_dead_bug/
H A Dliving_dead_bug.cpp64 target_handle.kill();
/gem5/src/systemc/tests/systemc/tmp/compliance_1666_2011/section_6.6/test03/
H A Dtest03.cpp20 // test03.cpp -- Quick Test Of kill() And reset() sc_process_handle Methods.
83 t.kill();
/gem5/src/systemc/tests/systemc/tmp/others/OLD_kill_reset/
H A DOLD_kill_reset.cpp50 t.kill();
/gem5/src/systemc/tests/systemc/kernel/process_control/test07/
H A Dtest07.cpp153 // and kill them, after it has spawned its grandchild
155 h0.kill();
156 h1.kill( SC_INCLUDE_DESCENDANTS );
/gem5/src/systemc/core/
H A Dsc_process_handle.cc249 sc_process_handle::kill(sc_descendent_inclusion_info include_descendants) function in class:sc_core::sc_process_handle
252 SC_REPORT_WARNING(SC_ID_EMPTY_PROCESS_HANDLE_, "kill()");
255 _gem5_process->kill(include_descendants == SC_INCLUDE_DESCENDANTS);
H A Dprocess.cc143 Process::kill(bool inc_kids) function in class:sc_gem5::Process
150 // Propogate the kill to our children no matter what happens to us.
152 forEachKid([](Process *p) { p->kill(true); });
154 // If we're unwinding or terminated, ignore the kill request.
165 // Inject the kill exception into this process if it's started.
H A Dprocess.hh88 void kill(bool inc_kids);
/gem5/src/systemc/tests/systemc/kernel/process_control/test06/
H A Dtest06.cpp100 << "kill requested "
105 h.kill( SC_INCLUDE_DESCENDANTS );
/gem5/src/systemc/tests/systemc/1666-2011-compliance/proc_ctrl_elab/
H A Dproc_ctrl_elab.cpp158 ts2.kill();
197 ts2.kill();
227 ts2.kill();
/gem5/src/base/
H A Ddebug.cc55 kill(getpid(), SIGTRAP);
/gem5/src/systemc/ext/core/
H A Dsc_process_handle.hh199 void kill(sc_descendent_inclusion_info include_descendants=
/gem5/tests/testing/
H A Dhelpers.py70 self.kill()
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_process_handle.h101 inline void kill(
345 // kill this object instance's target.
347 inline void sc_process_handle::kill( sc_descendant_inclusion_info descendants ) function in class:sc_core::sc_process_handle
352 SC_REPORT_WARNING( SC_ID_EMPTY_PROCESS_HANDLE_, "kill()");
/gem5/src/systemc/tests/systemc/1666-2011-compliance/proc_ctrl_timeout/
H A Dproc_ctrl_timeout.cpp102 t1.kill();
103 t2.kill();
/gem5/src/systemc/tests/systemc/1666-2011-compliance/child_proc_control/
H A Dchild_proc_control.cpp108 ph.kill(SC_INCLUDE_DESCENDANTS);
/gem5/src/systemc/tests/systemc/1666-2011-compliance/odds_and_ends/
H A Dodds_and_ends.cpp101 h2.kill();
/gem5/src/systemc/tests/systemc/1666-2011-compliance/proc_ctrl_immed/
H A Dproc_ctrl_immed.cpp182 t.kill();
244 m.kill();
/gem5/src/dev/virtio/
H A Dfs9p.cc319 // Register an exit callback so we can kill the diod process
410 inform("Started diod with PID %u, you might need to manually kill " \
445 DPRINTF(VIO9P, "Trying to kill diod at pid %u \n", diod_pid);
447 if (kill(diod_pid, SIGTERM) != 0) {
449 warn("Failed to kill diod using SIGTERM");
453 // Check if kill worked
457 // Managed to kill diod
469 // Try again to kill diod with sigkill
470 inform("Trying to kill diod with SIGKILL as SIGTERM failed \n");
471 if (kill(diod_pi
[all...]

Completed in 30 milliseconds

12