1
0
mirror of https://github.com/GOSTSec/ccminer synced 2025-02-07 04:14:27 +00:00

applog: remove useless mutex

This commit is contained in:
Tanguy Pruvot 2015-08-24 13:36:47 +02:00
parent 9a13624c2e
commit bcbb959a34
2 changed files with 6 additions and 6 deletions

View File

@ -4,8 +4,9 @@
#ifdef WIN32
#include <windows.h>
#include <time.h>
extern int opt_priority;
#define localtime_r(src, dst) localtime_s(dst, src)
static __inline void sleep(int secs)
{
@ -16,6 +17,8 @@ enum {
PRIO_PROCESS = 0,
};
extern int opt_priority;
static __inline int setpriority(int which, int who, int prio)
{
switch (opt_priority) {

View File

@ -105,13 +105,10 @@ void applog(int prio, const char *fmt, ...)
const char* color = "";
char *f;
int len;
struct tm tm, *tm_p;
struct tm tm;
time_t now = time(NULL);
pthread_mutex_lock(&applog_lock);
tm_p = localtime(&now);
memcpy(&tm, tm_p, sizeof(tm));
pthread_mutex_unlock(&applog_lock);
localtime_r(&now, &tm);
switch (prio) {
case LOG_ERR: color = CL_RED; break;