Files
gnucash/lib/libc/localtime_r.c
Phil Longstaff 78d8fba84e Undefine localtime_r as a macro (new mingw pthreads package defines it)
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@18828 57a11ea4-9604-0410-9ed3-97b8803252fd
2010-03-04 22:06:23 +00:00

57 lines
1.1 KiB
C

#include "config.h"
#if !HAVE_LOCALTIME_R
#include <time.h>
#include <string.h>
#include "localtime_r.h"
#if HAVE_PTHREAD_MUTEX_INIT
#include <pthread.h>
/* New mingw pthread package seems to define localtime_r as a macro */
#ifdef localtime_r
#undef localtime_r
#endif
struct tm *
localtime_r(const time_t *const timep, struct tm *p_tm)
{
static pthread_mutex_t time_mutex;
static int time_mutex_inited = 0;
struct tm *tmp;
if (!time_mutex_inited)
{
time_mutex_inited = 1;
pthread_mutex_init(&time_mutex, NULL);
}
pthread_mutex_lock(&time_mutex);
tmp = localtime(timep);
if (tmp)
{
memcpy(p_tm, tmp, sizeof(struct tm));
tmp = p_tm;
}
pthread_mutex_unlock(&time_mutex);
return tmp;
}
#else
struct tm *
localtime_r(const time_t *const timep, struct tm *p_tm)
{
static struct tm* tmp;
tmp = localtime(timep);
if (tmp)
{
memcpy(p_tm, tmp, sizeof(struct tm));
tmp = p_tm;
}
return tmp;
}
#endif /* HAVE_PTHREAD_MUTEX_INIT */
#endif /* !HAVE_LOCALTIME_R */