示例#1
0
文件: gestatus.go 项目: jbarber/drmaa
/* Memory binding status. */
func (js *JobStatus) MemoryBinding() string {
	return private_gestatus.GetMbind(&js.js)
}
示例#2
0
文件: gestatus.go 项目: jbarber/drmaa
/* Returns true in case the job has memory binding requested. */
func (js *JobStatus) HasMemoryBinding() bool {
	if private_gestatus.GetMbind(&js.js) == "no_bind" {
		return false
	}
	return true
}