1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-08-26 13:52:02 +00:00

core: remove num_processors (unused).

This commit is contained in:
Noel Maersk 2014-02-08 15:41:31 +02:00
parent 3f5485ae43
commit c09a5b4406
2 changed files with 2 additions and 2 deletions

View File

@ -1069,7 +1069,6 @@ extern bool hotplug_mode;
extern int hotplug_time; extern int hotplug_time;
extern struct list_head scan_devices; extern struct list_head scan_devices;
extern int nDevs; extern int nDevs;
extern int num_processors;
extern int hw_errors; extern int hw_errors;
extern bool use_syslog; extern bool use_syslog;
extern bool opt_quiet; extern bool opt_quiet;

View File

@ -112,12 +112,13 @@ int zombie_devs;
static int most_devices; static int most_devices;
struct cgpu_info **devices; struct cgpu_info **devices;
int mining_threads; int mining_threads;
int num_processors;
#ifdef HAVE_CURSES #ifdef HAVE_CURSES
bool use_curses = true; bool use_curses = true;
#else #else
bool use_curses; bool use_curses;
#endif #endif
static bool opt_submit_stale = true; static bool opt_submit_stale = true;
static int opt_shares; static int opt_shares;
bool opt_fail_only; bool opt_fail_only;