1.9 Process PID, run time-out run exit status

Source: Internet
Author: User

 PackageMainImport("FMT"    "Os/exec"    "Runtime"    "Time")funcMain () {varCmdstring    ifRuntime. GOOS = ="Windows"{cmd ="Timeout"}Else{cmd ="Sleep"} proc: = Exec.command (cmd,"1") Proc. Start ()//Wait function would    //wait till the process ends.Proc. Wait ()//After the process terminates    //The *os. Processstate contains    //Simple information    //about the process runFmt. Printf ("PID:%d\ n", Proc. Processstate.pid ()) fmt. Printf ("Process took:%dms\ n", Proc. Processstate.systemtime ()/time. microsecond) fmt. Printf ("Exited sucessfuly:%t\ n", Proc. Processstate.success ())}/*pid:6337Process took:755msExited sucessfuly:true*/
 PackageMainImport("FMT"    "Os/exec"    "Runtime")funcMain () {varCmdstring    ifRuntime. GOOS = ="Windows"{cmd ="Timeout"}Else{cmd ="Sleep"} proc: = Exec.command (cmd,"1") Proc. Start ()//No process State is returned    //till the process finish.Fmt. Printf ("process state for running process:%v\ n", Proc. Processstate)//The PID could be obtain    //event for the running processFmt. Printf ("PID of running process:%d\ n", Proc. PROCESS.PID)}/*process state for running process: <nil>PID of running process:6410*/

1.9 Process PID, run time-out run exit status

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.