aboutsummaryrefslogtreecommitdiffstats
path: root/tools/examples
diff options
context:
space:
mode:
Diffstat (limited to 'tools/examples')
-rwxr-xr-xtools/examples/xc_dom_control.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/tools/examples/xc_dom_control.py b/tools/examples/xc_dom_control.py
index 0ca2c97ac2..c21ff3c880 100755
--- a/tools/examples/xc_dom_control.py
+++ b/tools/examples/xc_dom_control.py
@@ -85,17 +85,9 @@ elif cmd == 'pincpu':
sys.exit(-1)
cpu = int(sys.argv[3])
- orig_state = xc.domain_getinfo(first_dom=dom, max_doms=1)[0]['stopped']
-
- while xc.domain_getinfo(first_dom=dom, max_doms=1)[0]['stopped'] != 1:
- xc.domain_stop( dom=dom )
- time.sleep(0.1)
-
+
rc = xc.domain_pincpu( dom, cpu )
- if orig_state == 0:
- xc.domain_start( dom=dom )
-
elif cmd == 'list':
print 'Dom Name Mem(kb) CPU State Time(s)'
for domain in xc.domain_getinfo():