1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-11 07:17:58 +00:00

Add information about paused threads in the menu status.

This commit is contained in:
Con Kolivas 2012-01-30 22:25:28 +11:00
parent 58897bf382
commit 2edc3a650c

4
main.c
View File

@ -3656,7 +3656,7 @@ retry:
wlog("Last initialised: %s\n", cgpu->init);
wlog("Intensity: ");
if (gpus[gpu].dynamic)
wlog("Dynamic\n");
wlog("Dynamic (only one thread in use)\n");
else
wlog("%d\n", gpus[gpu].intensity);
for (i = 0; i < mining_threads; i++) {
@ -3680,6 +3680,8 @@ retry:
wlog("Never started");
break;
}
if (thr->pause)
wlog(" paused");
wlog("\n");
}
wlog("\n");