]> git.pond.sub.org Git - empserver/blob - src/lib/lwp/status.c
Streamline copyright notices. Clearly document Stephen Crane's in
[empserver] / src / lib / lwp / status.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1994-2006, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *  Copyright (C) 1991-3 Stephen Crane
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program; if not, write to the Free Software
19  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  *
21  *  ---
22  *
23  *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
24  *  related information and legal notices. It is expected that any future
25  *  projects/authors will amend these files as needed.
26  *
27  *  ---
28  *
29  *  status.c: Process and perhaps display status messages
30  * 
31  *  Known contributors to this file:
32  *     Dave Pare, 1994
33  */
34
35 #include <config.h>
36
37 #include <stdarg.h>
38 #include <stdio.h>
39 #include <sys/time.h>
40 #include "lwp.h"
41 #include "lwpint.h"
42
43 void
44 lwpStatus(struct lwpProc *proc, char *format, ...)
45 {
46     va_list ap;
47     static struct timeval startTime;
48     struct timeval tv;
49     int sec, msec;
50
51     va_start(ap, format);
52     if (proc->flags & LWP_PRINT) {
53         if (startTime.tv_sec == 0)
54             gettimeofday(&startTime, 0);
55         gettimeofday(&tv, 0);
56         sec = tv.tv_sec - startTime.tv_sec;
57         msec = (tv.tv_usec - startTime.tv_usec) / 1000;
58         if (msec < 0) {
59             sec++;
60             msec += 1000;
61         }
62         printf("%d:%02d.%03d %17s[%d]: ",
63                sec / 60, sec % 60, msec / 10, proc->name, proc->pri);
64         vprintf(format, ap);
65         putchar('\n');
66     }
67     va_end(ap);
68 }