/prebuilts/go/darwin-x86/src/runtime/ |
crash_nonunix_test.go | 11 // sigquit is the signal to send to kill a hanging testdata program. 12 // On Unix we send SIGQUIT, but on non-Unix we only have os.Kill. 13 var sigquit = os.Kill var
|
crash_unix_test.go | 23 // sigquit is the signal to send to kill a hanging testdata program. 24 // Send SIGQUIT to get a stack trace. 25 var sigquit = syscall.SIGQUIT var 28 if runtime.Sigisblocked(int(syscall.SIGQUIT)) { 29 // We can't use SIGQUIT to kill subprocesses because 32 sigquit = syscall.SIGKILL 43 if runtime.Sigisblocked(int(syscall.SIGQUIT)) { 44 t.Skip("skipping; SIGQUIT is blocked, see golang.org/issue/19196") 109 if err := cmd.Process.Signal(syscall.SIGQUIT); err != nil [all...] |
/prebuilts/go/linux-x86/src/runtime/ |
crash_nonunix_test.go | 11 // sigquit is the signal to send to kill a hanging testdata program. 12 // On Unix we send SIGQUIT, but on non-Unix we only have os.Kill. 13 var sigquit = os.Kill var
|
crash_unix_test.go | 23 // sigquit is the signal to send to kill a hanging testdata program. 24 // Send SIGQUIT to get a stack trace. 25 var sigquit = syscall.SIGQUIT var 28 if runtime.Sigisblocked(int(syscall.SIGQUIT)) { 29 // We can't use SIGQUIT to kill subprocesses because 32 sigquit = syscall.SIGKILL 43 if runtime.Sigisblocked(int(syscall.SIGQUIT)) { 44 t.Skip("skipping; SIGQUIT is blocked, see golang.org/issue/19196") 109 if err := cmd.Process.Signal(syscall.SIGQUIT); err != nil [all...] |
/external/python/cpython2/Demo/tkinter/guido/ |
ShellWindow.py | 88 def sigquit(self, *args): member in class:ShellWindow 89 return self.sendsig(signal.SIGQUIT)
|
/art/test/144-static-field-sigquit/src/ |
SigQuit.java | 19 public class SigQuit implements Runnable { 20 private final static int sigquit; field in class:SigQuit 35 Field sigquitField = osConstants.getDeclaredField("SIGQUIT"); 46 sigquit = sigquitTemp; 52 kill.invoke(null, pid, sigquit);
|
/art/test/676-resolve-field-type/src-ex/ |
ChildClass.java | 21 // This method being synchronized means the SIGQUIT code in ART will call 27 SigQuit.doKill(); 39 private final static class SigQuit { 40 private final static int sigquit; field in class:ChildClass.SigQuit 55 Field sigquitField = osConstants.getDeclaredField("SIGQUIT"); 64 sigquit = sigquitTemp; 69 kill.invoke(null, pid, sigquit);
|
/art/test/678-quickening/src-art/ |
Main.java | 29 // This method being synchronized means the SIGQUIT code in ART will call 35 // by the SIGQUIT. 40 SigQuit.doKill(); 46 private final static class SigQuit { 47 private final static int sigquit; field in class:Main.SigQuit 62 Field sigquitField = osConstants.getDeclaredField("SIGQUIT"); 71 sigquit = sigquitTemp; 76 kill.invoke(null, pid, sigquit);
|
/art/test/004-ThreadStress/src-art/ |
Main.java | 46 // -sigquit:X ........ frequency of SigQuit (double) 86 private final static class SigQuit extends Operation { 87 private final static int sigquit; field in class:Main.SigQuit 102 Field sigquitField = osConstants.getDeclaredField("SIGQUIT"); 111 sigquit = sigquitTemp; 118 kill.invoke(null, pid, sigquit); 317 frequencyMap.put(new SigQuit(), 0.095); // 19/200 376 } else if (split[0].equals("-sigquit")) { 377 op = new SigQuit(); [all...] |