Displaying 1 result from an estimated 1 matches for "setresum".
Did you mean:
setresume
2008 Feb 28
0
[PATCH] Remove duplicate setResume()
Hi,
I found two setResume()s in XendDomainInfo.py.
One or the other is not necessary, is it?
# grep -n -A 2 setResume ./tools/python/xen/xend/XendDomainInfo.py
1394: def setResume(self, isresume):
1395- self._resume = isresume
1396-
--
1409: def setResume(self, state):
1410- self._resume = state
141...