d201fe46e3
adding (weak definitions to) stubs for some of the pthread functions. If the threads library is linked in, the real pthread functions will pulled in. Use the following convention for system calls wrapped by the threads library: __sys_foo - actual system call _foo - weak definition to __sys_foo foo - weak definition to __sys_foo Change all libc uses of system calls wrapped by the threads library from foo to _foo. In order to define the prototypes for _foo(), we introduce namespace.h and un-namespace.h (suggested by bde). All files that need to reference these system calls, should include namespace.h before any standard includes, then include un-namespace.h after the standard includes and before any local includes. <db.h> is an exception and shouldn't be included in between namespace.h and un-namespace.h namespace.h will define foo to _foo, and un-namespace.h will undefine foo. Try to eliminate some of the recursive calls to MT-safe functions in libc/stdio in preparation for adding a mutex to FILE. We have recursive mutexes, but would like to avoid using them if possible. Remove uneeded includes of <errno.h> from a few files. Add $FreeBSD$ to a few files in order to pass commitprep. Approved by: -arch
75 lines
1.8 KiB
C
75 lines
1.8 KiB
C
/*
|
|
** This file is in the public domain, so clarified as of
|
|
** June 5, 1996 by Arthur David Olson (arthur_david_olson@nih.gov).
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#ifndef lint
|
|
#ifndef NOID
|
|
static char elsieid[] = "@(#)asctime.c 7.7";
|
|
#endif /* !defined NOID */
|
|
#endif /* !defined lint */
|
|
|
|
/*LINTLIBRARY*/
|
|
|
|
#include "namespace.h"
|
|
#include "private.h"
|
|
#include "un-namespace.h"
|
|
#include "tzfile.h"
|
|
|
|
/*
|
|
** A la X3J11, with core dump avoidance.
|
|
*/
|
|
|
|
|
|
char *
|
|
asctime(timeptr)
|
|
const struct tm * timeptr;
|
|
{
|
|
static char result[3 * 2 + 5 * INT_STRLEN_MAXIMUM(int) +
|
|
3 + 2 + 1 + 1];
|
|
return(asctime_r(timeptr, result));
|
|
}
|
|
|
|
char *
|
|
asctime_r(timeptr, result)
|
|
const struct tm * timeptr;
|
|
char *result;
|
|
{
|
|
static const char wday_name[][3] = {
|
|
"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
|
|
};
|
|
static const char mon_name[][3] = {
|
|
"Jan", "Feb", "Mar", "Apr", "May", "Jun",
|
|
"Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
|
|
};
|
|
/*
|
|
** Big enough for something such as
|
|
** ??? ???-2147483648 -2147483648:-2147483648:-2147483648 -2147483648\n
|
|
** (two three-character abbreviations, five strings denoting integers,
|
|
** three explicit spaces, two explicit colons, a newline,
|
|
** and a trailing ASCII nul).
|
|
*/
|
|
register const char * wn;
|
|
register const char * mn;
|
|
|
|
if (timeptr->tm_wday < 0 || timeptr->tm_wday >= DAYSPERWEEK)
|
|
wn = "???";
|
|
else wn = wday_name[timeptr->tm_wday];
|
|
if (timeptr->tm_mon < 0 || timeptr->tm_mon >= MONSPERYEAR)
|
|
mn = "???";
|
|
else mn = mon_name[timeptr->tm_mon];
|
|
/*
|
|
** The X3J11-suggested format is
|
|
** "%.3s %.3s%3d %02.2d:%02.2d:%02.2d %d\n"
|
|
** Since the .2 in 02.2d is ignored, we drop it.
|
|
*/
|
|
(void) sprintf(result, "%.3s %.3s%3d %02d:%02d:%02d %d\n",
|
|
wn, mn,
|
|
timeptr->tm_mday, timeptr->tm_hour,
|
|
timeptr->tm_min, timeptr->tm_sec,
|
|
TM_YEAR_BASE + timeptr->tm_year);
|
|
return result;
|
|
}
|