diff options
author | Tor Egge <tegge@FreeBSD.org> | 2002-09-06 15:02:24 +0000 |
---|---|---|
committer | Tor Egge <tegge@FreeBSD.org> | 2002-09-06 15:02:24 +0000 |
commit | daa134e666c7e1bfd40fd35ee7139f77d0c5c4d0 (patch) | |
tree | db213e1d32bf07dd98bbe341578fde525ef3e3a8 /devel/linuxthreads | |
parent | d573a7ff4edd7e6965b33e7b6b1bca77d9117271 (diff) | |
download | ports-daa134e666c7e1bfd40fd35ee7139f77d0c5c4d0.tar.gz ports-daa134e666c7e1bfd40fd35ee7139f77d0c5c4d0.zip |
Notes
Diffstat (limited to 'devel/linuxthreads')
-rw-r--r-- | devel/linuxthreads/files/localtime.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/devel/linuxthreads/files/localtime.c b/devel/linuxthreads/files/localtime.c index ce871ad3eac0..7b44f021fe88 100644 --- a/devel/linuxthreads/files/localtime.c +++ b/devel/linuxthreads/files/localtime.c @@ -2,7 +2,7 @@ ** This file is in the public domain, so clarified as of ** June 5, 1996 by Arthur David Olson (arthur_david_olson@nih.gov). ** -** $FreeBSD: /tmp/pcvs/ports/devel/linuxthreads/files/localtime.c,v 1.2 2002-06-08 18:15:54 tegge Exp $ +** $FreeBSD: /tmp/pcvs/ports/devel/linuxthreads/files/localtime.c,v 1.3 2002-09-06 15:02:24 tegge Exp $ */ #ifndef lint @@ -1077,12 +1077,12 @@ localtime(timep) const time_t * const timep; { static pthread_mutex_t localtime_mutex = PTHREAD_MUTEX_INITIALIZER; - static pthread_key_t localtime_key = -1; + static pthread_key_t localtime_key = (pthread_key_t) -1; struct tm *p_tm; if (__isthreaded != 0) { pthread_mutex_lock(&localtime_mutex); - if (localtime_key < 0) { + if (localtime_key == (pthread_key_t) -1) { if (pthread_key_create(&localtime_key, free) < 0) { pthread_mutex_unlock(&localtime_mutex); return(NULL); @@ -1155,12 +1155,12 @@ gmtime(timep) const time_t * const timep; { static pthread_mutex_t gmtime_mutex = PTHREAD_MUTEX_INITIALIZER; - static pthread_key_t gmtime_key = -1; + static pthread_key_t gmtime_key = (pthread_key_t) -1; struct tm *p_tm; if (__isthreaded != 0) { pthread_mutex_lock(&gmtime_mutex); - if (gmtime_key < 0) { + if (gmtime_key == (pthread_key_t) -1) { if (pthread_key_create(&gmtime_key, free) < 0) { pthread_mutex_unlock(&gmtime_mutex); return(NULL); |