Merge pull request #187 from Atheros1/master

Emergency fix for 64-bit Windows systems
This commit is contained in:
Jonathan Warren 2013-06-03 17:53:56 -07:00
commit 3303dfe1c6
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()