]> git.pond.sub.org Git - empserver/blob - src/lib/lwp/status.c
899b802e089c3d2ca36a89a82c55132325fdb8df
[empserver] / src / lib / lwp / status.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1994-2014, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *  Copyright (C) 1991-3 Stephen Crane
6  *
7  *  Empire 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 3 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, see <http://www.gnu.org/licenses/>.
19  *
20  *  ---
21  *
22  *  See files README, COPYING and CREDITS in the root of the source
23  *  tree for related information and legal notices.  It is expected
24  *  that future projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  status.c: Process and perhaps display status messages
29  *
30  *  Known contributors to this file:
31  *     Dave Pare, 1994
32  */
33
34 #include <config.h>
35
36 #include <stdarg.h>
37 #include <stdio.h>
38 #include <sys/time.h>
39 #include "lwp.h"
40 #include "lwpint.h"
41
42 void
43 lwpStatus(struct lwpProc *proc, char *format, ...)
44 {
45     va_list ap;
46     static struct timeval startTime;
47     struct timeval tv;
48     int sec, msec;
49
50     va_start(ap, format);
51     if (proc->flags & LWP_PRINT) {
52         if (startTime.tv_sec == 0)
53             gettimeofday(&startTime, NULL);
54         gettimeofday(&tv, NULL);
55         sec = tv.tv_sec - startTime.tv_sec;
56         msec = (tv.tv_usec - startTime.tv_usec) / 1000;
57         if (msec < 0) {
58             sec++;
59             msec += 1000;
60         }
61         printf("%d:%02d.%03d %17s[%d]: ",
62                sec / 60, sec % 60, msec / 10, proc->name, proc->pri);
63         vprintf(format, ap);
64         putchar('\n');
65     }
66     va_end(ap);
67 }