Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for killall (0.19 sec)

  1. misc/go_android_exec/main.go

    	quit := make(chan os.Signal, 1)
    	signal.Notify(quit, syscall.SIGQUIT)
    	go func() {
    		for range quit {
    			// We don't have the PID of the running process; use the
    			// binary name instead.
    			adb("exec-out", "killall -QUIT "+binName)
    		}
    	}()
    	cmd := `export TMPDIR="` + deviceGotmp + `"` +
    		`; export GOROOT="` + deviceGoroot + `"` +
    		`; export GOPATH="` + deviceGopath + `"` +
    		`; export CGO_ENABLED=0` +
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Aug 21 17:46:57 GMT 2023
    - 15.3K bytes
    - Viewed (0)
  2. misc/ios/go_ios_exec.go

    		return err
    	}
    
    	if err := mountDevImage(); err != nil {
    		return err
    	}
    
    	// Kill any hanging debug bridges that might take up port 3222.
    	exec.Command("killall", "idevicedebugserverproxy").Run()
    
    	closer, err := startDebugBridge()
    	if err != nil {
    		return err
    	}
    	defer closer()
    
    	return runDevice(appdir, bundleID, os.Args[2:])
    }
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 23.4K bytes
    - Viewed (0)
Back to top