Emergency fix for 64-bit Windows systems

This commit is contained in:
Jonathan Warren 2013-06-03 20:41:39 -04:00
parent 483e51ad04
commit 32efdca33c
1 changed files with 6 additions and 1 deletions

View File

@ -14,7 +14,12 @@ def _set_idle():
handle = win32api.OpenProcess(win32con.PROCESS_ALL_ACCESS, True, pid)
win32process.SetPriorityClass(handle, win32process.IDLE_PRIORITY_CLASS)
except:
os.nice(20)
try:
#Linux
os.nice(20)
except:
#Windows 64-bit
pass
def _pool_worker(nonce, initialHash, target, pool_size):
_set_idle()