ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/hd/rhdisp.c
Revision: 3.42
Committed: Thu Jul 29 15:38:40 1999 UTC (24 years, 9 months ago) by gwlarson
Content type: text/plain
Branch: MAIN
Changes since 3.41: +8 -2 lines
Log Message:
attempted fix for Linux _cnt field absence

File Contents

# User Rev Content
1 gwlarson 3.41 /* Copyright (c) 1999 Silicon Graphics, Inc. */
2 gregl 3.1
3     #ifndef lint
4     static char SCCSid[] = "$SunId$ SGI";
5     #endif
6    
7     /*
8     * Holodeck display process.
9     */
10    
11     #include "rholo.h"
12     #include "rhdisp.h"
13     #include "rhdriver.h"
14     #include "selcall.h"
15 gregl 3.10 #include <ctype.h>
16 gregl 3.1
17 gregl 3.12 #ifndef VIEWHISTLEN
18 gregl 3.16 #define VIEWHISTLEN 4 /* number of remembered views */
19 gregl 3.12 #endif
20    
21 gwlarson 3.36 #ifndef FSIZDEF
22     #define FSIZDEF 0.125 /* default focus frame size */
23     #endif
24    
25 gwlarson 3.42 #ifdef linux
26     #define fbufcnt(f) ((f)->_IO_read_end - (f)->_IO_read_ptr)
27     #else
28     #define fbufcnt(f) ((f)->_cnt)
29     #endif
30    
31 gregl 3.1 HOLO *hdlist[HDMAX+1]; /* global holodeck list */
32    
33 gwlarson 3.38 char *hdgfn[HDMAX]; /* holodeck section geometry list */
34     char *hdpfn[HDMAX]; /* section portal list */
35 gwlarson 3.37
36 gregl 3.10 char cmdlist[DC_NCMDS][8] = DC_INIT;
37    
38 gregl 3.1 int imm_mode = 0; /* bundles are being delivered immediately */
39    
40 gregl 3.20 int do_outside = 0; /* render from outside sections */
41    
42 gwlarson 3.25 double eyesepdist = 1; /* eye separation distance */
43    
44 gregl 3.1 char *progname; /* global argv[0] */
45    
46 gregl 3.10 FILE *sstdin, *sstdout; /* server's standard input and output */
47 gregl 3.1
48 gregl 3.21 #ifdef DEBUG
49     extern time_t time();
50     static time_t tmodesw;
51     static time_t timm, tadd;
52     static long nimmrays, naddrays;
53     #endif
54    
55 gregl 3.10 #define RDY_SRV 01
56     #define RDY_DEV 02
57     #define RDY_SIN 04
58 gregl 3.1
59 gregl 3.10
60 gregl 3.1 main(argc, argv)
61     int argc;
62     char *argv[];
63     {
64 gregl 3.10 extern int eputs();
65 gregl 3.3 int rdy, inp, res = 0, pause = 0;
66 gregl 3.1
67     progname = argv[0];
68 gregl 3.10 if (argc < 3)
69 gregl 3.1 error(USER, "bad command line arguments");
70     /* open our device */
71     dev_open(argv[1]);
72 gregl 3.10 /* open server process i/o */
73     sstdout = fdopen(atoi(argv[2]), "w");
74     if (argc < 4 || (inp = atoi(argv[3])) < 0)
75     sstdin = NULL;
76     else
77     sstdin = fdopen(inp, "r");
78     /* set command error vector */
79     erract[COMMAND].pf = eputs;
80 gregl 3.21 #ifdef DEBUG
81     tmodesw = time(NULL);
82     #endif
83 gregl 3.1 /* enter main loop */
84     do {
85     rdy = disp_wait();
86 gregl 3.19 if (rdy & RDY_SRV) { /* process server result */
87     res = serv_result();
88     if (pause && res != DS_SHUTDOWN) {
89     serv_request(DR_ATTEN, 0, NULL);
90     while ((res = serv_result()) != DS_ACKNOW &&
91     res != DS_SHUTDOWN)
92     ;
93     }
94     }
95 gregl 3.10 if (rdy & RDY_DEV) { /* user input from driver */
96 gregl 3.3 inp = dev_input();
97 gregl 3.13 if (inp & DFL(DC_SETVIEW))
98     new_view(&odev.v);
99 gwlarson 3.37 else if (inp & DFL(DC_LASTVIEW))
100     new_view(NULL);
101     if (inp & DFL(DC_REDRAW))
102     imm_mode = beam_sync(1) > 0;
103 gregl 3.13 if (inp & DFL(DC_GETVIEW))
104 gregl 3.10 printview();
105 gwlarson 3.36 if (inp & DFL(DC_FOCUS))
106     set_focus(odev_args);
107 gregl 3.15 if (inp & DFL(DC_KILL)) {
108 gregl 3.14 serv_request(DR_KILL, 0, NULL);
109 gregl 3.15 pause = 0;
110     }
111 gregl 3.14 if (inp & DFL(DC_CLOBBER))
112     serv_request(DR_CLOBBER, 0, NULL);
113 gregl 3.15 if (inp & DFL(DC_RESTART)) {
114 gregl 3.14 serv_request(DR_RESTART, 0, NULL);
115 gregl 3.15 pause = 0;
116     }
117 gwlarson 3.32 if (inp & DFL(DC_RESUME)) {
118     serv_request(DR_NOOP, 0, NULL);
119     pause = 0;
120     }
121     if (inp & DFL(DC_PAUSE))
122     pause = 1;
123 gregl 3.13 if (inp & DFL(DC_QUIT))
124     serv_request(DR_SHUTDOWN, 0, NULL);
125 gregl 3.3 }
126 gwlarson 3.34 if (rdy & RDY_SIN && !imm_mode) /* user input from sstdin */
127 gregl 3.10 switch (usr_input()) {
128     case DC_PAUSE:
129     pause = 1;
130     break;
131     case DC_RESUME:
132     serv_request(DR_NOOP, 0, NULL);
133 gregl 3.15 /* fall through */
134     case DC_KILL:
135     case DC_RESTART:
136 gregl 3.10 pause = 0;
137     break;
138     }
139 gregl 3.1 } while (res != DS_SHUTDOWN);
140 gregl 3.21 #ifdef DEBUG
141     if (timm && nimmrays)
142     fprintf(stderr,
143     "%s: %.1f rays recalled/second (%ld rays total)\n",
144     progname, (double)nimmrays/timm, nimmrays);
145     if (tadd && naddrays)
146     fprintf(stderr,
147     "%s: %.1f rays calculated/second (%ld rays total)\n",
148     progname, (double)naddrays/tadd, naddrays);
149     #endif
150 gregl 3.1 /* all done */
151     quit(0);
152     }
153    
154    
155     int
156     disp_wait() /* wait for more input */
157     {
158     fd_set readset, errset;
159     int flgs;
160     int n;
161     register int i;
162     /* see if we can avoid select call */
163 gwlarson 3.40 if (hdlist[0] == NULL)
164     return(RDY_SRV); /* initialize first */
165 gwlarson 3.30 flgs = 0; /* flag what's ready already */
166 gwlarson 3.42 if (imm_mode || fbufcnt(stdin) > 0)
167 gwlarson 3.30 flgs |= RDY_SRV;
168 gwlarson 3.42 if (sstdin != NULL && fbufcnt(sstdin) > 0)
169 gwlarson 3.30 flgs |= RDY_SIN;
170     if (odev.inpready)
171     flgs |= RDY_DEV;
172     if (flgs) /* got something? */
173     return(flgs);
174     if (dev_flush()) /* else flush output & check keyboard+mouse */
175 gregl 3.4 return(RDY_DEV);
176 gwlarson 3.30 /* if nothing, we need to call select */
177 gregl 3.1 FD_ZERO(&readset); FD_ZERO(&errset);
178     FD_SET(0, &readset);
179     FD_SET(0, &errset);
180     FD_SET(odev.ifd, &readset);
181     FD_SET(odev.ifd, &errset);
182 gregl 3.10 n = odev.ifd+1;
183     if (sstdin != NULL) {
184     FD_SET(fileno(sstdin), &readset);
185 gregl 3.23 FD_SET(fileno(sstdin), &errset);
186 gregl 3.10 if (fileno(sstdin) >= n)
187     n = fileno(sstdin) + 1;
188     }
189 gregl 3.1 n = select(n, &readset, NULL, &errset, NULL);
190     if (n < 0) {
191     if (errno == EINTR)
192     return(0);
193     error(SYSTEM, "select call failure in disp_wait");
194     }
195     if (FD_ISSET(0, &readset) || FD_ISSET(0, &errset))
196 gregl 3.4 flgs |= RDY_SRV;
197 gregl 3.1 if (FD_ISSET(odev.ifd, &readset) || FD_ISSET(odev.ifd, &errset))
198 gregl 3.4 flgs |= RDY_DEV;
199 gregl 3.23 if (sstdin != NULL && (FD_ISSET(fileno(sstdin), &readset) ||
200     FD_ISSET(fileno(sstdin), &errset)))
201 gregl 3.10 flgs |= RDY_SIN;
202 gregl 3.1 return(flgs);
203     }
204    
205    
206 gwlarson 3.38 add_holo(hdg, gfn, pfn) /* register a new holodeck section */
207 gregl 3.1 HDGRID *hdg;
208 gwlarson 3.38 char *gfn, *pfn;
209 gregl 3.1 {
210     VIEW nv;
211 gregl 3.20 double d;
212 gregl 3.1 register int hd;
213    
214     for (hd = 0; hd < HDMAX && hdlist[hd] != NULL; hd++)
215     ;
216     if (hd >= HDMAX)
217     error(INTERNAL, "too many holodeck sections in add_holo");
218     hdlist[hd] = (HOLO *)malloc(sizeof(HOLO));
219     if (hdlist[hd] == NULL)
220     error(SYSTEM, "out of memory in add_holo");
221     bcopy((char *)hdg, (char *)hdlist[hd], sizeof(HDGRID));
222     hdcompgrid(hdlist[hd]);
223 gwlarson 3.38 hdgfn[hd] = savestr(gfn);
224     hdpfn[hd] = pfn && *pfn ? savestr(pfn) : (char *)NULL;
225 gregl 3.1 if (hd)
226     return;
227     /* set initial viewpoint */
228     copystruct(&nv, &odev.v);
229     VSUM(nv.vp, hdlist[0]->orig, hdlist[0]->xv[0], 0.5);
230     VSUM(nv.vp, nv.vp, hdlist[0]->xv[1], 0.5);
231     VSUM(nv.vp, nv.vp, hdlist[0]->xv[2], 0.5);
232     fcross(nv.vdir, hdlist[0]->xv[1], hdlist[0]->xv[2]);
233     VCOPY(nv.vup, hdlist[0]->xv[2]);
234 gregl 3.20 if (do_outside) {
235     normalize(nv.vdir);
236     d = VLEN(hdlist[0]->xv[1]);
237     d += VLEN(hdlist[0]->xv[2]);
238     VSUM(nv.vp, nv.vp, nv.vdir, -d);
239     }
240 gregl 3.1 new_view(&nv);
241     }
242    
243    
244     disp_bundle(p) /* display a ray bundle */
245     register PACKHEAD *p;
246     {
247     GCOORD gc[2];
248     FVECT ro, rd, wp;
249     double d;
250     register int i;
251     /* get beam coordinates */
252     if (p->hd < 0 | p->hd >= HDMAX || hdlist[p->hd] == NULL)
253     error(INTERNAL, "bad holodeck number in disp_bundle");
254     if (!hdbcoord(gc, hdlist[p->hd], p->bi))
255     error(INTERNAL, "bad beam index in disp_bundle");
256     /* display each ray */
257     for (i = p->nr; i--; ) {
258     hdray(ro, rd, hdlist[p->hd], gc, packra(p)[i].r);
259     d = hddepth(hdlist[p->hd], packra(p)[i].d);
260 gwlarson 3.29 if (d < .99*FHUGE) {
261     VSUM(wp, ro, rd, d); /* might be behind viewpoint */
262     dev_value(packra(p)[i].v, rd, wp);
263     } else
264     dev_value(packra(p)[i].v, rd, NULL);
265 gregl 3.1 }
266 gregl 3.21 #ifdef DEBUG
267     if (imm_mode) nimmrays += p->nr;
268     else naddrays += p->nr;
269     #endif
270 gregl 3.1 }
271    
272    
273     new_view(v) /* change view parameters */
274 gregl 3.12 register VIEW *v;
275 gregl 3.1 {
276 gregl 3.12 static VIEW viewhist[VIEWHISTLEN];
277     static unsigned nhist;
278 gwlarson 3.24 VIEW *dv;
279 gwlarson 3.40 int i, res[2];
280     int2 *slist;
281 gregl 3.1 char *err;
282 gregl 3.12 /* restore previous view? */
283     if (v == NULL) {
284 gregl 3.16 if (nhist > 1) /* get one before last setting */
285     nhist--;
286     else /* else go to end of list */
287     while (nhist < VIEWHISTLEN && viewhist[nhist].type)
288     nhist++;
289 gregl 3.12 v = viewhist + ((nhist-1)%VIEWHISTLEN);
290 gregl 3.17 } else
291     again:
292     if ((err = setview(v)) != NULL) {
293 gregl 3.12 error(COMMAND, err);
294     return;
295     }
296 gwlarson 3.37 if (!dev_view(v)) /* notify display driver */
297     goto again;
298 gregl 3.12 if (v->type == VT_PAR) {
299     error(COMMAND, "cannot handle parallel views");
300     return;
301     }
302 gwlarson 3.37 beam_init(odev.firstuse); /* compute new beam set */
303     for (i = 0; (dv = dev_auxview(i, res)) != NULL; i++) {
304     if ((slist = beam_view(dv, res[0], res[1])) == NULL) {
305 gwlarson 3.24 if (!nhist) {
306     error(COMMAND, "invalid starting view");
307     return;
308     }
309     copystruct(v, viewhist + ((nhist-1)%VIEWHISTLEN));
310 gwlarson 3.37 goto again; /* poss. overloading dev_section()? */
311     }
312     DCHECK(*slist < 0, WARNING, "no visible sections in new_view");
313 gwlarson 3.38 for ( ; *slist >= 0; slist++)
314     dev_section(hdgfn[*slist], hdpfn[*slist]);
315 gwlarson 3.37 }
316 gwlarson 3.38 dev_section(NULL,NULL); /* end section list */
317 gwlarson 3.37 dev_flush(); /* update display */
318 gwlarson 3.34 /* update server */
319 gwlarson 3.37 imm_mode = beam_sync(odev.firstuse) > 0;
320 gregl 3.12 /* record new view */
321     if (v < viewhist || v >= viewhist+VIEWHISTLEN) {
322     copystruct(viewhist + (nhist%VIEWHISTLEN), v);
323     nhist++;
324     }
325 gregl 3.10 }
326    
327    
328 gwlarson 3.36 set_focus(args) /* set focus frame */
329     char *args;
330     {
331     double hcent, vcent, hsiz, vsiz;
332     VIEW *dv, vwfocus;
333     int i, res[2];
334    
335     i = sscanf(args, "%lf %lf %lf %lf", &hcent, &vcent, &hsiz, &vsiz);
336     if (i < 2 || hcent < 0 || hcent > 1 || vcent < 0 || vcent > 1) {
337     beam_init(0); /* restore view */
338     for (i = 0; (dv = dev_auxview(i, res)) != NULL; i++)
339     beam_view(dv, res[0], res[1]);
340     beam_sync(0); /* update server */
341     return;
342     }
343     if (i < 4 || hsiz <= hcent || hsiz > 1 || vsiz <= vcent || vsiz > 1)
344     hsiz = vsiz = FSIZDEF; /* gave center only */
345     else {
346     hsiz -= hcent; hcent += 0.5*hsiz; /* gave min and max */
347     vsiz -= vcent; vcent += 0.5*vsiz;
348     }
349     beam_init(0); /* add basic views */
350     for (i = 0; (dv = dev_auxview(i, res)) != NULL; i++)
351     beam_view(dv, res[0]>>4, res[1]>>4);
352     copystruct(&vwfocus, &odev.v); /* add focus view */
353     switch (odev.v.type) {
354     case VT_PER:
355     vwfocus.horiz = 2.*180./PI*atan(
356     hsiz * tan(PI/180./2.*odev.v.horiz) );
357     vwfocus.vert = 2.*180./PI*atan(
358     vsiz * tan(PI/180./2.*odev.v.vert) );
359     break;
360     case VT_PAR:
361     case VT_ANG:
362     vwfocus.horiz = hsiz * odev.v.horiz;
363     vwfocus.vert = vsiz * odev.v.vert;
364     break;
365     case VT_HEM:
366     vwfocus.horiz = 2.*180./PI*asin(
367     hsiz * sin(PI/180./2.*odev.v.horiz) );
368     vwfocus.vert = 2.*180./PI*asin(
369     vsiz * sin(PI/180./2.*odev.v.vert) );
370     break;
371     case VT_CYL:
372     vwfocus.horiz = hsiz * odev.v.horiz;
373     vwfocus.vert = 2.*180./PI*atan(
374     vsiz * tan(PI/180./2.*odev.v.vert) );
375     break;
376     default:
377     error(INTERNAL, "bad view type in set_focus");
378     }
379     vwfocus.hoff = (odev.v.hoff + hcent - 0.5)/hsiz;
380     vwfocus.voff = (odev.v.voff + vcent - 0.5)/vsiz;
381     setview(&vwfocus);
382     beam_view(&vwfocus, (int)(3*odev.hres*hsiz)+100,
383     (int)(3*odev.vres*vsiz)+100);
384     beam_sync(0); /* update server */
385     }
386    
387    
388 gregl 3.10 int
389     usr_input() /* get user input and process it */
390     {
391     VIEW vparams;
392 gregl 3.23 char cmd[256];
393 gregl 3.10 register char *args;
394 gregl 3.11 register int i;
395 gregl 3.10
396 gregl 3.23 if (fgets(cmd, sizeof(cmd), sstdin) == NULL) {
397     fclose(sstdin);
398     sstdin = NULL;
399 gwlarson 3.26 return(-1);
400 gregl 3.23 }
401 gwlarson 3.31 if (*cmd == '\n')
402 gwlarson 3.26 return(DC_RESUME);
403 gregl 3.10 for (args = cmd; *args && !isspace(*args); args++)
404     ;
405     while (isspace(*args))
406     *args++ = '\0';
407 gregl 3.11 if (*args && args[i=strlen(args)-1] == '\n')
408     args[i] = '\0';
409     for (i = 0; i < DC_NCMDS; i++)
410     if (!strcmp(cmd, cmdlist[i]))
411 gregl 3.10 break;
412 gregl 3.11 if (i >= DC_NCMDS) {
413 gwlarson 3.26 dev_auxcom(cmd, args);
414 gregl 3.10 return(-1);
415     }
416 gregl 3.11 switch (i) {
417 gregl 3.10 case DC_SETVIEW: /* set the view */
418     copystruct(&vparams, &odev.v);
419     if (!sscanview(&vparams, args))
420     error(COMMAND, "missing view options");
421     else
422     new_view(&vparams);
423     break;
424     case DC_GETVIEW: /* print the current view */
425     printview();
426 gregl 3.12 break;
427     case DC_LASTVIEW: /* restore previous view */
428     new_view(NULL);
429 gwlarson 3.36 break;
430     case DC_FOCUS: /* set focus frame */
431     set_focus(args);
432 gregl 3.10 break;
433     case DC_PAUSE: /* pause the current calculation */
434     case DC_RESUME: /* resume the calculation */
435     /* handled in main() */
436 gregl 3.13 break;
437     case DC_REDRAW: /* redraw from server */
438 gwlarson 3.24 imm_mode = beam_sync(1) > 0;
439 gregl 3.22 dev_clear();
440 gregl 3.14 break;
441     case DC_KILL: /* kill rtrace process(es) */
442     serv_request(DR_KILL, 0, NULL);
443     break;
444     case DC_CLOBBER: /* clobber holodeck */
445     serv_request(DR_CLOBBER, 0, NULL);
446     break;
447     case DC_RESTART: /* restart rtrace */
448     serv_request(DR_RESTART, 0, NULL);
449 gregl 3.10 break;
450     case DC_QUIT: /* quit request */
451     serv_request(DR_SHUTDOWN, 0, NULL);
452     break;
453     default:
454     error(CONSISTENCY, "bad command id in usr_input");
455     }
456 gregl 3.11 return(i);
457 gregl 3.10 }
458    
459    
460     printview() /* print our current view to server stdout */
461     {
462     fputs(VIEWSTR, sstdout);
463     fprintview(&odev.v, sstdout);
464     fputc('\n', sstdout);
465     fflush(sstdout);
466 gregl 3.1 }
467    
468    
469     int
470     serv_result() /* get next server result and process it */
471     {
472     static char *buf = NULL;
473     static int bufsiz = 0;
474     MSGHEAD msg;
475     int n;
476     /* read message header */
477     if (fread((char *)&msg, sizeof(MSGHEAD), 1, stdin) != 1)
478     goto readerr;
479     if (msg.nbytes > 0) { /* get the message body */
480     if (msg.nbytes > bufsiz) {
481     if (buf == NULL)
482     buf = (char *)malloc(bufsiz=msg.nbytes);
483     else
484     buf = (char *)realloc(buf, bufsiz=msg.nbytes);
485     if (buf == NULL)
486     error(SYSTEM, "out of memory in serv_result");
487     }
488     if (fread(buf, 1, msg.nbytes, stdin) != msg.nbytes)
489     goto readerr;
490     }
491     switch (msg.type) { /* process results */
492     case DS_BUNDLE:
493     if (msg.nbytes < sizeof(PACKHEAD) ||
494     msg.nbytes != packsiz(((PACKHEAD *)buf)->nr))
495     error(INTERNAL, "bad display packet from server");
496     disp_bundle((PACKHEAD *)buf);
497     break;
498     case DS_ADDHOLO:
499 gwlarson 3.38 if (msg.nbytes < sizeof(HDGRID)+2)
500 gregl 3.1 error(INTERNAL, "bad holodeck record from server");
501 gwlarson 3.38 add_holo((HDGRID *)buf, buf+sizeof(HDGRID),
502     buf+sizeof(HDGRID)+strlen(buf+sizeof(HDGRID))+1);
503 gregl 3.20 break;
504     case DS_OUTSECT:
505     do_outside = 1;
506 gwlarson 3.28 goto noargs;
507 gwlarson 3.25 case DS_EYESEP:
508     if (msg.nbytes <= 1 || (eyesepdist = atof(buf)) <= FTINY)
509     error(INTERNAL, "bad eye separation from server");
510 gregl 3.1 break;
511     case DS_STARTIMM:
512     case DS_ENDIMM:
513 gwlarson 3.39 if (!(imm_mode = msg.type==DS_STARTIMM))
514     dev_flush();
515 gregl 3.21 #ifdef DEBUG
516 gwlarson 3.35 {
517 gregl 3.21 time_t tnow = time(NULL);
518 gwlarson 3.35 if (msg.type==DS_STARTIMM) tadd += tnow - tmodesw;
519     else timm += tnow - tmodesw;
520 gregl 3.21 tmodesw = tnow;
521     }
522     #endif
523 gwlarson 3.28 goto noargs;
524 gregl 3.1 case DS_ACKNOW:
525     case DS_SHUTDOWN:
526 gwlarson 3.28 goto noargs;
527 gregl 3.1 default:
528     error(INTERNAL, "unrecognized result from server process");
529     }
530     return(msg.type); /* return message type */
531 gwlarson 3.28 noargs:
532     if (msg.nbytes) {
533     sprintf(errmsg, "unexpected body with server message %d",
534     msg.type);
535     error(INTERNAL, errmsg);
536     }
537     return(msg.type);
538 gregl 3.1 readerr:
539     if (feof(stdin))
540     error(SYSTEM, "server process died");
541     error(SYSTEM, "error reading from server process");
542     }
543    
544    
545     serv_request(type, nbytes, p) /* send a request to the server process */
546     int type, nbytes;
547     char *p;
548     {
549     MSGHEAD msg;
550     int m;
551 gwlarson 3.33 /* consistency checks */
552 gwlarson 3.37 DCHECK(nbytes < 0 || nbytes > 0 & p == NULL,
553     CONSISTENCY, "bad buffer handed to serv_request");
554 gregl 3.1 /* get server's attention for big request */
555     if (nbytes >= BIGREQSIZ-sizeof(MSGHEAD)) {
556     serv_request(DR_ATTEN, 0, NULL);
557     while ((m = serv_result()) != DS_ACKNOW)
558     if (m == DS_SHUTDOWN) /* the bugger quit on us */
559     quit(0);
560     }
561     msg.type = type; /* write and flush the message */
562     msg.nbytes = nbytes;
563     fwrite((char *)&msg, sizeof(MSGHEAD), 1, stdout);
564     if (nbytes > 0)
565     fwrite(p, 1, nbytes, stdout);
566     if (fflush(stdout) < 0)
567     error(SYSTEM, "write error in serv_request");
568 gregl 3.2 }
569    
570    
571     eputs(s) /* put error message to stderr */
572     register char *s;
573     {
574     static int midline = 0;
575    
576     if (!*s)
577     return;
578     if (!midline++) { /* prepend line with program name */
579     fputs(progname, stderr);
580     fputs(": ", stderr);
581     }
582     fputs(s, stderr);
583     if (s[strlen(s)-1] == '\n') {
584     fflush(stderr);
585     midline = 0;
586     }
587 gregl 3.1 }
588    
589    
590     quit(code) /* clean up and exit */
591     int code;
592     {
593 gwlarson 3.38 if (code)
594     exit(code);
595 gregl 3.1 if (odev.v.type)
596     dev_close();
597 gwlarson 3.38 exit(0);
598 gregl 3.1 }