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

Get start times just before mining begins to not have very slow rise in average.

This commit is contained in:
Con Kolivas 2011-08-24 23:23:09 +10:00
parent b643b56a95
commit 5a2cf5a6b1

8
main.c
View File

@ -4467,10 +4467,6 @@ int main (int argc, char *argv[])
sigaction(SIGTERM, &handler, &termhandler);
sigaction(SIGINT, &handler, &inthandler);
gettimeofday(&total_tv_start, NULL);
gettimeofday(&total_tv_end, NULL);
get_datestamp(datestamp, &total_tv_start);
// Hack to make cgminer silent when called recursively on WIN32
int skip_to_bench = 0;
#if defined(WIN32)
@ -4776,6 +4772,10 @@ int main (int argc, char *argv[])
}
}
gettimeofday(&total_tv_start, NULL);
gettimeofday(&total_tv_end, NULL);
get_datestamp(datestamp, &total_tv_start);
#ifdef HAVE_OPENCL
/* start GPU mining threads */
for (i = 0; i < nDevs * opt_g_threads; i++) {