mirror of
https://github.com/GOSTSec/sgminer
synced 2025-01-25 22:14:36 +00:00
Get start times just before mining begins to not have very slow rise in average.
This commit is contained in:
parent
b643b56a95
commit
5a2cf5a6b1
8
main.c
8
main.c
@ -4467,10 +4467,6 @@ int main (int argc, char *argv[])
|
|||||||
sigaction(SIGTERM, &handler, &termhandler);
|
sigaction(SIGTERM, &handler, &termhandler);
|
||||||
sigaction(SIGINT, &handler, &inthandler);
|
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
|
// Hack to make cgminer silent when called recursively on WIN32
|
||||||
int skip_to_bench = 0;
|
int skip_to_bench = 0;
|
||||||
#if defined(WIN32)
|
#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
|
#ifdef HAVE_OPENCL
|
||||||
/* start GPU mining threads */
|
/* start GPU mining threads */
|
||||||
for (i = 0; i < nDevs * opt_g_threads; i++) {
|
for (i = 0; i < nDevs * opt_g_threads; i++) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user