Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TestSignalM (0.2 sec)

  1. src/runtime/crash_unix_test.go

    	}
    	output := runTestProg(t, "testprognet", "SignalDuringExec")
    	want := "OK\n"
    	if output != want {
    		t.Fatalf("want %s, got %s\n", want, output)
    	}
    }
    
    func TestSignalM(t *testing.T) {
    	r, w, errno := runtime.Pipe()
    	if errno != 0 {
    		t.Fatal(syscall.Errno(errno))
    	}
    	defer func() {
    		runtime.Close(r)
    		runtime.Close(w)
    	}()
    	runtime.Closeonexec(r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 20:11:47 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top