|
|
|
|
File: [XFree86 CVS] / xc / programs / xterm / trace.c
(download)
Revision: 3.4, Thu Jun 4 15:44:02 1998 UTC (14 years, 11 months ago) by hohndel Branch: MAIN CVS Tags: xf-3_9Nb, xf-3_9Na, xf-3_9N, xf-3_9Ak, xf-3_9Aj, xf-3_9Ai Changes since 3.3: +3 -23 lines patch #1661,1662,1675,1680-1685,1687-1691,1693,1700,1702,1705-1707 this is completely untested I will start two builds now and check in fixes as I find them Robin, you can start builds as well, if you want to |
/*
* $XFree86: xc/programs/xterm/trace.c,v 3.3 1998/04/27 03:15:06 robin Exp $
*/
/************************************************************
Copyright 1997 by Thomas E. Dickey <dickey@clark.net>
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the name of the above listed
copyright holder(s) not be used in advertising or publicity pertaining
to distribution of the software without specific, written prior
permission.
THE ABOVE LISTED COPYRIGHT HOLDER(S) DISCLAIM ALL WARRANTIES WITH REGARD
TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS, IN NO EVENT SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE
LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
********************************************************/
/*
* debugging support via TRACE macro.
*/
#ifdef HAVE_CONFIG_H
#include <xtermcfg.h>
#endif
#include <stdio.h>
#include <time.h>
#include <unistd.h>
#include <sys/types.h>
#include "trace.h"
#include <stdarg.h>
char *trace_who = "parent";
void
Trace(char *fmt, ...)
{
static FILE *fp;
va_list ap;
if (!fp) {
char name[BUFSIZ];
sprintf(name, "Trace-%s.out", trace_who);
fp = fopen(name, "w");
if (fp != 0) {
time_t now = time((time_t*)0);
#if HAVE_UNISTD_H
fprintf(fp, "process %d real (%d/%d) effective (%d/%d) -- %s",
getpid(),
getuid(), getgid(),
geteuid(), getegid(),
ctime(&now));
#else
fprintf(fp, "process %d -- %s",
getpid(),
ctime(&now));
#endif
}
}
if (!fp)
abort();
va_start(ap,fmt);
if (fmt != 0) {
vfprintf(fp, fmt, ap);
(void)fflush(fp);
} else {
(void)fclose(fp);
(void)fflush(stdout);
(void)fflush(stderr);
}
va_end(ap);
}
|
Powered by ViewCVS 0.9.2 |