当前位置: 首页>>代码示例>>Golang>>正文


Golang ProcessState.Sys方法代码示例

本文整理汇总了Golang中os.ProcessState.Sys方法的典型用法代码示例。如果您正苦于以下问题:Golang ProcessState.Sys方法的具体用法?Golang ProcessState.Sys怎么用?Golang ProcessState.Sys使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在os.ProcessState的用法示例。


在下文中一共展示了ProcessState.Sys方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: GetErrorLevel

func GetErrorLevel(processState *os.ProcessState) (int, bool) {
	if processState.Success() {
		return 0, true
	} else if t, ok := processState.Sys().(syscall.WaitStatus); ok {
		return t.ExitStatus(), true
	} else {
		return 255, false
	}
}
开发者ID:Matsuyanagi,项目名称:nyagos,代码行数:9,代码来源:interpreter.go

示例2: Wait

// Wait calls Wait on the underlying exec.Cmd's Process and, if the
// operating system supports it, returns the exit status.
//
// If an error occurs when waiting for the underlying process, the exit
// status will be -2, and the error will be returned.  If the operating
// system does not support determining the exit status, but the program
// exited successfully, the exit status will be 0.  If the operating
// system does not support determining the exit status and the program
// exited unsuccessfully, the exit status will be -1.
func (p *Proc) Wait() (exitStatus int, err error) {
	var ps *os.ProcessState
	ps, err = p.Cmd.Process.Wait()
	if err != nil {
		return -2, err
	}
	ws, ok := ps.Sys().(syscall.WaitStatus)
	if ok {
		return ws.ExitStatus(), nil
	}
	if ps.Success() {
		return 0, nil
	}
	return -1, nil
}
开发者ID:pennello,项目名称:go_prun,代码行数:24,代码来源:proc.go

示例3: getExitCode

func getExitCode(state *os.ProcessState) int {
	return state.Sys().(syscall.WaitStatus).ExitStatus()
}
开发者ID:pombredanne,项目名称:geard,代码行数:3,代码来源:utils.go

示例4: exitStatus

func exitStatus(p *os.ProcessState) int {
	ws := p.Sys().(syscall.WaitStatus)
	return ws.ExitStatus()
}
开发者ID:rainycape,项目名称:gondola,代码行数:4,代码来源:dev.go


注:本文中的os.ProcessState.Sys方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。