Mark some variables & function static

This commit is contained in:
Lauri Kasanen 2014-01-14 18:59:24 +02:00
parent 4e3d73f3e8
commit cf573d03ff

View file

@ -124,7 +124,7 @@ static bool opt_quiet = false;
static int opt_retries = -1; static int opt_retries = -1;
static int opt_fail_pause = 30; static int opt_fail_pause = 30;
int opt_timeout = 270; int opt_timeout = 270;
int opt_scantime = 5; static int opt_scantime = 5;
static json_t *opt_config; static json_t *opt_config;
static const bool opt_time = true; static const bool opt_time = true;
static enum sha256_algos opt_algo = ALGO_SCRYPT; static enum sha256_algos opt_algo = ALGO_SCRYPT;
@ -144,11 +144,11 @@ struct work_restart *work_restart = NULL;
static struct stratum_ctx stratum; static struct stratum_ctx stratum;
pthread_mutex_t applog_lock; pthread_mutex_t applog_lock;
pthread_mutex_t stats_lock; static pthread_mutex_t stats_lock;
static unsigned long accepted_count = 0L; static unsigned long accepted_count = 0L;
static unsigned long rejected_count = 0L; static unsigned long rejected_count = 0L;
double *thr_hashrates; static double *thr_hashrates;
#ifdef HAVE_GETOPT_LONG #ifdef HAVE_GETOPT_LONG
#include <getopt.h> #include <getopt.h>
@ -1244,7 +1244,7 @@ static void parse_cmdline(int argc, char *argv[])
} }
#ifndef WIN32 #ifndef WIN32
void signal_handler(int sig) static void signal_handler(int sig)
{ {
switch (sig) { switch (sig) {
case SIGHUP: case SIGHUP: