Beispiel #1
0
/* Memory binding status. */
func (js *JobStatus) MemoryBinding() string {
	return private_gestatus.GetMbind(&js.js)
}
Beispiel #2
0
/* 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
}