ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/x11image.c
(Generate patch)

Comparing ray/src/px/x11image.c (file contents):
Revision 2.30 by greg, Wed Oct 27 16:57:28 1993 UTC vs.
Revision 2.32 by greg, Thu Oct 28 11:39:59 1993 UTC

# Line 119 | Line 119 | extern long  ftell();
119   Display  *thedisplay;
120   Atom  closedownAtom, wmProtocolsAtom;
121  
122 < int  noop() {}
122 > int  sigrecv;
123  
124 + int  onsig() { sigrecv++; }
125  
126 +
127   main(argc, argv)
128   int  argc;
129   char  *argv[];
# Line 179 | Line 181 | char  *argv[];
181          if (i > argc)
182                  goto userr;
183          while (i < argc-1) {
184 +                sigrecv = 0;
185 +                signal(SIGCONT, onsig);
186                  if ((pid=fork()) == 0) {        /* a child for each picture */
187                          parent = -1;
188                          break;
# Line 186 | Line 190 | char  *argv[];
190                  if (pid < 0)
191                          quiterr("fork failed");
192                  parent++;
193 <                signal(SIGCONT, noop);
194 <                pause();                /* wait for wake-up call */
193 >                while (!sigrecv)
194 >                        pause();        /* wait for wake-up call */
195                  i++;
196          }
197          if (i < argc) {                 /* open picture file */
# Line 213 | Line 217 | char  *argv[];
217  
218          init(argc, argv);                       /* get file and open window */
219  
220 <        if (parent < 0)
220 >        if (parent < 0) {
221                  kill(getppid(), SIGCONT);       /* signal parent if child */
222 <
222 >                sigrecv--;
223 >        }
224          for ( ; ; )
225                  getevent();             /* main loop */
226   userr:
# Line 311 | Line 316 | char **argv;
316                  quiterr("cannot create window");
317          width = xmax;
318          height = ymax;
319 <        xgcv.foreground = ourblack;
315 <        xgcv.background = ourwhite;
319 >        /* prepare graphics drawing context */
320          if ((xgcv.font = XLoadFont(thedisplay, FONTNAME)) == 0)
321                  quiterr("cannot get font");
322 +        xgcv.foreground = ourblack;
323 +        xgcv.background = ourwhite;
324          ourgc = XCreateGC(thedisplay, wind, GCForeground|GCBackground|
325                          GCFont, &xgcv);
326          xgcv.function = GXinvert;
# Line 350 | Line 356 | char **argv;
356   quiterr(err)            /* print message and exit */
357   char  *err;
358   {
359 <        if (err != NULL)
359 >        register int  es;
360 >        int  cs;
361 >
362 >        if (es = err != NULL)
363                  fprintf(stderr, "%s: %s: %s\n", progname,
364                                  fname==NULL?"<stdin>":fname, err);
365 <        if (wind) {
365 >        if (parent > 0 & wind != 0) {
366                  XDestroyWindow(thedisplay, wind);
367                  XFlush(thedisplay);
368 <        }
369 <        while (parent > 0 && wait(0) != -1)     /* wait for any children */
368 >        } else if (parent < 0 & sigrecv == 0)
369 >                kill(getppid(), SIGCONT);
370 >        while (parent > 0 && wait(&cs) != -1) { /* wait for any children */
371 >                if (es == 0)
372 >                        es = cs>>8 & 0xff;
373                  parent--;
374 <        exit(err != NULL);
374 >        }
375 >        exit(es);
376   }
377  
378  

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines