ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/rpiece.c
Revision: 2.63
Committed: Wed Jul 3 17:06:57 2024 UTC (9 months, 4 weeks ago) by greg
Content type: text/plain
Branch: MAIN
Changes since 2.62: +2 -1 lines
Log Message:
fix(rpiece): Added -pm 0 override, since motion blur would mess up tiles

File Contents

# User Rev Content
1 greg 2.1 #ifndef lint
2 greg 2.63 static const char RCSid[] = "$Id: rpiece.c,v 2.62 2024/06/03 18:55:51 greg Exp $";
3 greg 2.1 #endif
4     /*
5     * Generate sections of a picture.
6     */
7    
8 schorsch 2.43
9     #include <stdio.h>
10     #include <signal.h>
11     #include <sys/types.h>
12 schorsch 2.49
13     #include "platform.h"
14 schorsch 2.45 #ifndef NON_POSIX /* XXX need abstraction for process management */
15     #include <sys/wait.h>
16     #endif
17 schorsch 2.43
18 greg 2.44 #include "standard.h"
19 schorsch 2.43 #include "color.h"
20     #include "view.h"
21     #include "rtprocess.h"
22 greg 2.16
23     #ifndef F_SETLKW
24    
25 schorsch 2.43 int
26     main(
27     int argc,
28     char *argv[]
29     )
30 greg 2.16 {
31     fprintf(stderr, "%s: no NFS lock manager on this machine\n", argv[0]);
32     exit(1);
33     }
34    
35     #else
36    
37 greg 2.12 #ifndef NFS
38     #define NFS 1
39     #endif
40 greg 2.55
41     #ifndef RHAS_FORK_EXEC
42     #undef MAXFORK
43     #define MAXFORK 0
44     #endif
45 greg 2.9 #ifndef MAXFORK
46 greg 2.12 #if NFS
47 greg 2.10 #define MAXFORK 3 /* allotment of duped processes */
48 greg 2.12 #else
49     #define MAXFORK 0
50 greg 2.9 #endif
51 greg 2.12 #endif
52 greg 2.18 /* protection from SYSV signals(!) */
53 greg 2.27 #if defined(sgi)
54 greg 2.18 #define guard_io() sighold(SIGALRM)
55     #define unguard() sigrelse(SIGALRM)
56     #endif
57     #ifndef guard_io
58 schorsch 2.43 #define guard_io()
59     #define unguard()
60 greg 2.18 #endif
61 gregl 2.34
62 greg 2.37 extern char *strerror();
63 gregl 2.34
64 greg 2.1 /* rpict command */
65 greg 2.23 char *rpargv[128] = {"rpict", "-S", "1"};
66     int rpargc = 3;
67 greg 2.1 FILE *torp, *fromrp;
68 greg 2.8 COLR *pbuf;
69 greg 2.1 /* our view parameters */
70     VIEW ourview = STDVIEW;
71 greg 2.4 double pixaspect = 1.0;
72 greg 2.23 int hres = 1024, vres = 1024, hmult = 4, vmult = 4;
73 greg 2.1 /* output file */
74     char *outfile = NULL;
75     int outfd;
76     long scanorig;
77 greg 2.25 FILE *syncfp = NULL; /* synchronization file pointer */
78     int synclst = F_UNLCK; /* synchronization file lock status */
79 greg 2.9 int nforked = 0;
80 greg 2.1
81 greg 2.25 #define sflock(t) if ((t)!=synclst) dolock(fileno(syncfp),synclst=t)
82    
83 greg 2.1 char *progname;
84     int verbose = 0;
85 greg 2.53 int nowarn = 0;
86 greg 2.31 unsigned timelim = 0;
87 greg 2.25 int rvrlim = -1;
88 greg 2.1
89 greg 2.6 int gotalrm = 0;
90 schorsch 2.38 void onalrm(int i) { gotalrm++; }
91 greg 2.1
92 schorsch 2.43 static void dolock(int fd, int ltyp);
93     static void init(int ac, char **av);
94     static int nextpiece(int *xp, int *yp);
95     static int rvrpiece(int *xp, int *yp);
96     static int cleanup(int rstat);
97     static void rpiece(void);
98     static int putpiece(int xpos, int ypos);
99     static void filerr(char *t);
100 greg 2.6
101 schorsch 2.43
102     int
103     main(
104     int argc,
105     char *argv[]
106     )
107 greg 2.1 {
108 greg 2.55 int i, rval;
109 greg 2.1
110     progname = argv[0];
111     for (i = 1; i < argc; i++) {
112 greg 2.22 /* expand arguments */
113 greg 2.37 while ((rval = expandarg(&argc, &argv, i)) > 0)
114     ;
115     if (rval < 0) {
116 greg 2.50 fprintf(stderr, "%s: cannot expand '%s'\n",
117 greg 2.37 argv[0], argv[i]);
118     exit(1);
119     }
120 greg 2.1 if (argv[i][0] == '-')
121     switch (argv[i][1]) {
122 greg 2.53 case 'w':
123     if (!argv[i][2])
124     nowarn = !nowarn;
125     else if (argv[i][2] == '+')
126     nowarn = 0;
127     else if (argv[i][2] == '-')
128     nowarn = 1;
129     break;
130 greg 2.1 case 'v':
131     switch (argv[i][2]) {
132     case '\0': /* verbose option */
133     verbose = !verbose;
134     continue;
135     case 'f': /* view file */
136     if (viewfile(argv[++i], &ourview, NULL) <= 0) {
137     fprintf(stderr,
138     "%s: not a view file\n", argv[i]);
139     exit(1);
140     }
141     continue;
142     default: /* view option? */
143     rval = getviewopt(&ourview, argc-i, argv+i);
144     if (rval >= 0) {
145     i += rval;
146     continue;
147     }
148     break;
149     }
150     break;
151     case 'p': /* pixel aspect ratio? */
152 greg 2.51 if (argv[i][2] == 'm') {
153     fprintf(stderr, "%s: -pm unsupported\n",
154     argv[0]);
155     ++i;
156     continue;
157     }
158 greg 2.61 if (argv[i][2] == 'X') {
159     fprintf(stderr, "%s: -pXYZ unsupported\n",
160     argv[0]);
161     ++i;
162     continue;
163     }
164     if (argv[i][2] == 'c') {
165     fprintf(stderr, "%s: -pc unsupported\n",
166     argv[0]);
167     i += 9;
168     continue;
169     }
170 greg 2.23 if (argv[i][2] != 'a' || argv[i][3])
171     break;
172 gregl 2.35 pixaspect = atof(argv[++i]);
173 greg 2.23 continue;
174 greg 2.31 case 'T': /* time limit (hours) */
175     if (argv[i][2])
176     break;
177     timelim = atof(argv[++i])*3600. + .5;
178 greg 2.51 continue;
179 greg 2.23 case 'x': /* overall x resolution */
180     if (argv[i][2])
181     break;
182     hres = atoi(argv[++i]);
183     continue;
184     case 'y': /* overall y resolution */
185     if (argv[i][2])
186     break;
187     vres = atoi(argv[++i]);
188     continue;
189 greg 2.1 case 'X': /* horizontal multiplier */
190     if (argv[i][2])
191     break;
192     hmult = atoi(argv[++i]);
193     continue;
194     case 'Y': /* vertical multiplier */
195     if (argv[i][2])
196     break;
197     vmult = atoi(argv[++i]);
198     continue;
199 greg 2.25 case 'R': /* recover */
200     if (argv[i][2])
201     break;
202     rvrlim = 0;
203     /* fall through */
204 greg 2.5 case 'F': /* syncronization file */
205     if (argv[i][2])
206     break;
207 greg 2.28 if ((syncfp =
208     fdopen(open(argv[++i],O_RDWR|O_CREAT,0666),"r+")) == NULL) {
209 greg 2.5 fprintf(stderr, "%s: cannot open\n",
210     argv[i]);
211     exit(1);
212     }
213     continue;
214 greg 2.15 case 'z': /* z-file ist verbotten */
215     fprintf(stderr, "%s: -z option not allowed\n",
216     argv[0]);
217     exit(1);
218 greg 2.1 case 'o': /* output file */
219     if (argv[i][2])
220     break;
221     outfile = argv[++i];
222     continue;
223 greg 2.53 }
224     else if (i >= argc-1)
225     break;
226 greg 2.1 rpargv[rpargc++] = argv[i];
227     }
228 greg 2.23 if (i >= argc) {
229     fprintf(stderr, "%s: missing octree argument\n", argv[0]);
230     exit(1);
231     }
232 greg 2.1 if (outfile == NULL) {
233     fprintf(stderr, "%s: missing output file\n", argv[0]);
234     exit(1);
235     }
236     init(argc, argv);
237     rpiece();
238 greg 2.15 exit(cleanup(0));
239 greg 2.1 }
240    
241    
242 schorsch 2.43 static void
243     dolock( /* lock or unlock a file */
244     int fd,
245     int ltyp
246     )
247 greg 2.25 {
248     static struct flock fls; /* static so initialized to zeroes */
249    
250     fls.l_type = ltyp;
251     if (fcntl(fd, F_SETLKW, &fls) < 0) {
252 greg 2.28 fprintf(stderr, "%s: cannot lock/unlock file: %s\n",
253 greg 2.37 progname, strerror(errno));
254 greg 2.54 _exit(1);
255 greg 2.25 }
256     }
257    
258    
259 schorsch 2.43 static void
260     init( /* set up output file and start rpict */
261     int ac,
262     char **av
263     )
264 greg 2.1 {
265 greg 2.23 static char hrbuf[16], vrbuf[16];
266 greg 2.2 extern char VersionID[];
267 greg 2.1 char *err;
268     FILE *fp;
269     int hr, vr;
270 schorsch 2.39 SUBPROC rpd; /* since we don't close_process(), this can be local */
271 greg 2.1 /* set up view */
272     if ((err = setview(&ourview)) != NULL) {
273     fprintf(stderr, "%s: %s\n", progname, err);
274     exit(1);
275     }
276 greg 2.25 if (syncfp != NULL) {
277     sflock(F_RDLCK);
278     fscanf(syncfp, "%d %d", &hmult, &vmult);
279     sflock(F_UNLCK);
280 greg 2.5 }
281 greg 2.23 /* compute piece size */
282 greg 2.53 hr = hres; vr = vres;
283     if (pixaspect > FTINY)
284     normaspect(viewaspect(&ourview), &pixaspect, &hr, &vr);
285 greg 2.23 hres /= hmult;
286     vres /= vmult;
287 greg 2.46 if (hres <= 0 || vres <= 0) {
288 greg 2.47 fprintf(stderr, "%s: illegal resolution/subdivision\n", progname);
289 greg 2.46 exit(1);
290     }
291 greg 2.1 normaspect(viewaspect(&ourview)*hmult/vmult, &pixaspect, &hres, &vres);
292 greg 2.53 if (!nowarn && (hr != hres*hmult) | (vr != vres*vmult))
293     fprintf(stderr,
294 greg 2.57 "%s: warning - changed resolution from %dx%d to %dx%d\n",
295 greg 2.53 progname, hr, vr, hres*hmult, vres*vmult);
296 greg 2.23 sprintf(hrbuf, "%d", hres);
297     rpargv[rpargc++] = "-x"; rpargv[rpargc++] = hrbuf;
298     sprintf(vrbuf, "%d", vres);
299     rpargv[rpargc++] = "-y"; rpargv[rpargc++] = vrbuf;
300     rpargv[rpargc++] = "-pa"; rpargv[rpargc++] = "0";
301 greg 2.63 rpargv[rpargc++] = "-pm"; rpargv[rpargc++] = "0";
302 greg 2.23 rpargv[rpargc++] = av[ac-1];
303     rpargv[rpargc] = NULL;
304 greg 2.1 /* open output file */
305     if ((outfd = open(outfile, O_WRONLY|O_CREAT|O_EXCL, 0666)) >= 0) {
306 greg 2.25 dolock(outfd, F_WRLCK);
307 greg 2.1 if ((fp = fdopen(dup(outfd), "w")) == NULL)
308     goto filerr;
309 greg 2.29 newheader("RADIANCE", fp); /* create header */
310     printargs(ac, av, fp);
311 greg 2.2 fprintf(fp, "SOFTWARE= %s\n", VersionID);
312 greg 2.1 fputs(VIEWSTR, fp);
313     fprintview(&ourview, fp);
314 greg 2.59 fputc('\n', fp);
315 greg 2.52 fputnow(fp);
316 greg 2.1 if (pixaspect < .99 || pixaspect > 1.01)
317     fputaspect(pixaspect, fp);
318 greg 2.60 fputprims(stdprims, fp);
319 greg 2.1 fputformat(COLRFMT, fp);
320 greg 2.59 fputc('\n', fp);
321 greg 2.1 fprtresolu(hres*hmult, vres*vmult, fp);
322     } else if ((outfd = open(outfile, O_RDWR)) >= 0) {
323 greg 2.25 dolock(outfd, F_RDLCK);
324 greg 2.1 if ((fp = fdopen(dup(outfd), "r+")) == NULL)
325     goto filerr;
326 greg 2.13 getheader(fp, NULL, NULL); /* skip header */
327 greg 2.15 if (!fscnresolu(&hr, &vr, fp) || /* check resolution */
328 greg 2.1 hr != hres*hmult || vr != vres*vmult) {
329 greg 2.8 fprintf(stderr, "%s: resolution mismatch on file \"%s\"\n",
330     progname, outfile);
331 greg 2.1 exit(1);
332     }
333     } else {
334 greg 2.8 fprintf(stderr, "%s: cannot open file \"%s\"\n",
335     progname, outfile);
336 greg 2.1 exit(1);
337     }
338     scanorig = ftell(fp); /* record position of first scanline */
339     if (fclose(fp) == -1) /* done with stream i/o */
340     goto filerr;
341 greg 2.25 dolock(outfd, F_UNLCK);
342 greg 2.1 /* start rpict process */
343 greg 2.58 rpd = sp_inactive;
344 schorsch 2.39 if (open_process(&rpd, rpargv) <= 0) {
345 greg 2.3 fprintf(stderr, "%s: cannot start %s\n", progname, rpargv[0]);
346 greg 2.1 exit(1);
347     }
348 schorsch 2.39 if ((fromrp = fdopen(rpd.r, "r")) == NULL ||
349     (torp = fdopen(rpd.w, "w")) == NULL) {
350 greg 2.1 fprintf(stderr, "%s: cannot open stream to %s\n",
351     progname, rpargv[0]);
352     exit(1);
353     }
354 greg 2.23 if ((pbuf = (COLR *)bmalloc(hres*vres*sizeof(COLR))) == NULL) {
355 greg 2.1 fprintf(stderr, "%s: out of memory\n", progname);
356     exit(1);
357     }
358 greg 2.6 signal(SIGALRM, onalrm);
359 greg 2.31 if (timelim)
360     alarm(timelim);
361 greg 2.1 return;
362     filerr:
363 greg 2.8 fprintf(stderr, "%s: i/o error on file \"%s\"\n", progname, outfile);
364 greg 2.1 exit(1);
365     }
366    
367    
368 schorsch 2.43 static int
369     nextpiece( /* get next piece assignment */
370     int *xp,
371     int *yp
372     )
373 greg 2.5 {
374 greg 2.6 if (gotalrm) /* someone wants us to quit */
375     return(0);
376 greg 2.25 if (syncfp != NULL) { /* use sync file */
377     /*
378     * So we don't necessarily have to lock and unlock the file
379     * multiple times (very slow), we establish an exclusive
380     * lock at the beginning on our synchronization file and
381     * maintain it in the subroutine rvrpiece().
382     */
383     sflock(F_WRLCK);
384     fseek(syncfp, 0L, 0); /* read position */
385     if (fscanf(syncfp, "%*d %*d %d %d", xp, yp) < 2) {
386 greg 2.8 *xp = hmult-1;
387     *yp = vmult;
388     }
389 greg 2.25 if (rvrlim == 0) /* initialize recovery limit */
390     rvrlim = *xp*vmult + *yp;
391     if (rvrpiece(xp, yp)) { /* do stragglers first */
392     sflock(F_UNLCK);
393     return(1);
394     }
395 greg 2.8 if (--(*yp) < 0) { /* decrement position */
396 greg 2.5 *yp = vmult-1;
397 greg 2.25 if (--(*xp) < 0) { /* all done */
398     sflock(F_UNLCK);
399 greg 2.5 return(0);
400     }
401     }
402 greg 2.25 fseek(syncfp, 0L, 0); /* write new position */
403     fprintf(syncfp, "%4d %4d\n%4d %4d\n\n", hmult, vmult, *xp, *yp);
404     fflush(syncfp);
405     sflock(F_UNLCK); /* release sync file */
406 greg 2.5 return(1);
407     }
408 greg 2.26 return(scanf("%d %d", xp, yp) == 2); /* use stdin */
409 greg 2.5 }
410    
411    
412 schorsch 2.43 static int
413     rvrpiece( /* check for recoverable pieces */
414 greg 2.55 int *xp,
415     int *yp
416 schorsch 2.43 )
417 greg 2.25 {
418     static char *pdone = NULL; /* which pieces are done */
419     static long readpos = -1; /* how far we've read */
420 greg 2.56 int px, py, i;
421 greg 2.25 /*
422     * This routine is called by nextpiece() with an
423     * exclusive lock on syncfp and the file pointer at the
424     * appropriate position to read in the finished pieces.
425     */
426     if (rvrlim < 0)
427     return(0); /* only check if asked */
428     if (pdone == NULL) /* first call */
429 greg 2.56 pdone = (char *)calloc(hmult*vmult, sizeof(char));
430 greg 2.30 if (pdone == NULL) {
431     fprintf(stderr, "%s: out of memory\n", progname);
432     exit(1);
433     }
434 greg 2.25 if (readpos != -1) /* mark what's been done */
435     fseek(syncfp, readpos, 0);
436 greg 2.56 while (fscanf(syncfp, "%d %d", &px, &py) == 2)
437     pdone[px*vmult+py] = 1;
438 greg 2.25 if (!feof(syncfp)) {
439     fprintf(stderr, "%s: format error in sync file\n", progname);
440     exit(1);
441     }
442     readpos = ftell(syncfp);
443     i = hmult*vmult; /* find an unaccounted for piece */
444     while (i-- > rvrlim)
445     if (!pdone[i]) {
446     *xp = i / vmult;
447     *yp = i % vmult;
448     pdone[i] = 1; /* consider it done */
449     return(1);
450     }
451     rvrlim = -1; /* nothing left to recover */
452     free(pdone);
453     pdone = NULL;
454     return(0);
455     }
456    
457    
458 schorsch 2.43 static int
459     cleanup( /* close rpict process and clean up */
460     int rstat
461     )
462 greg 2.1 {
463 greg 2.10 int status;
464 greg 2.1
465 greg 2.23 bfree((char *)pbuf, hres*vres*sizeof(COLR));
466 greg 2.1 fclose(torp);
467     fclose(fromrp);
468 greg 2.10 while (wait(&status) != -1)
469 greg 2.9 if (rstat == 0)
470     rstat = status>>8 & 0xff;
471     return(rstat);
472 greg 2.1 }
473    
474    
475 schorsch 2.43 static void
476     rpiece(void) /* render picture piece by piece */
477 greg 2.1 {
478 greg 2.59 char *err;
479 greg 2.1 VIEW pview;
480     int xorg, yorg;
481 greg 2.11 /* render each piece */
482 greg 2.5 while (nextpiece(&xorg, &yorg)) {
483 greg 2.59 pview = ourview;
484     err = cropview(&pview, (double)xorg/hmult, (double)yorg/vmult,
485     (xorg+1.)/hmult, (yorg+1.)/vmult);
486     if (err != NULL) {
487     fprintf(stderr, "%s: %s\n", progname, err);
488     exit(cleanup(1));
489     }
490 greg 2.1 fputs(VIEWSTR, torp);
491     fprintview(&pview, torp);
492 greg 2.59 fputc('\n', torp);
493 greg 2.11 fflush(torp); /* assigns piece to rpict */
494 greg 2.1 putpiece(xorg, yorg); /* place piece in output */
495     }
496     }
497    
498    
499 schorsch 2.43 static int
500     putpiece( /* get next piece from rpict */
501     int xpos,
502     int ypos
503     )
504 greg 2.1 {
505 greg 2.7 struct flock fls;
506 greg 2.9 int pid, status;
507 greg 2.1 int hr, vr;
508 greg 2.55 int y;
509 greg 2.8 /* check bounds */
510 schorsch 2.41 if ((xpos < 0) | (ypos < 0) | (xpos >= hmult) | (ypos >= vmult)) {
511 greg 2.5 fprintf(stderr, "%s: requested piece (%d,%d) out of range\n",
512     progname, xpos, ypos);
513 greg 2.10 exit(cleanup(1));
514 greg 2.5 }
515 greg 2.8 /* check header from rpict */
516 greg 2.18 guard_io();
517 greg 2.13 getheader(fromrp, NULL, NULL);
518 schorsch 2.41 if (!fscnresolu(&hr, &vr, fromrp) || (hr != hres) | (vr != vres)) {
519 greg 2.3 fprintf(stderr, "%s: resolution mismatch from %s\n",
520     progname, rpargv[0]);
521 greg 2.10 exit(cleanup(1));
522 greg 2.1 }
523 greg 2.24 if (verbose) { /* notify caller */
524     printf("%d %d begun\n", xpos, ypos);
525     fflush(stdout);
526     }
527 greg 2.18 unguard();
528 greg 2.8 /* load new piece into buffer */
529 greg 2.18 for (y = 0; y < vr; y++) {
530     guard_io();
531 greg 2.8 if (freadcolrs(pbuf+y*hr, hr, fromrp) < 0) {
532 greg 2.3 fprintf(stderr, "%s: read error from %s\n",
533     progname, rpargv[0]);
534 greg 2.10 exit(cleanup(1));
535 greg 2.1 }
536 greg 2.18 unguard();
537     }
538 greg 2.9 #if MAXFORK
539     /* fork so we don't slow rpict down */
540     if ((pid = fork()) > 0) {
541 greg 2.10 if (++nforked >= MAXFORK) {
542 greg 2.9 wait(&status); /* reap a child */
543     if (status)
544 greg 2.10 exit(cleanup(status>>8 & 0xff));
545 greg 2.9 nforked--;
546     }
547     return(pid);
548     }
549     #else
550     pid = -1; /* no forking */
551     #endif
552 greg 2.19 fls.l_start = scanorig +
553     ((long)(vmult-1-ypos)*vres*hmult+xpos)*hres*sizeof(COLR);
554 greg 2.12 #if NFS
555 greg 2.19 fls.l_len = ((long)(vres-1)*hmult+1)*hres*sizeof(COLR);
556 greg 2.8 /* lock file section so NFS doesn't mess up */
557     fls.l_whence = 0;
558     fls.l_type = F_WRLCK;
559 greg 2.54 #if 0
560 greg 2.26 if (fcntl(outfd, F_SETLKW, &fls) < 0)
561     filerr("lock");
562 greg 2.54 #else
563     dolock(outfd, F_WRLCK);
564     #endif
565 greg 2.12 #endif
566 greg 2.8 /* write new piece to file */
567 greg 2.42 if (lseek(outfd, (off_t)fls.l_start, SEEK_SET) < 0)
568 greg 2.26 filerr("seek");
569 greg 2.9 if (hmult == 1) {
570 greg 2.62 if (writebuf(outfd, pbuf,
571 greg 2.9 vr*hr*sizeof(COLR)) != vr*hr*sizeof(COLR))
572 greg 2.26 filerr("write");
573 greg 2.9 } else
574     for (y = 0; y < vr; y++) {
575 greg 2.62 if (writebuf(outfd, pbuf+y*hr,
576 greg 2.9 hr*sizeof(COLR)) != hr*sizeof(COLR))
577 greg 2.26 filerr("write");
578 greg 2.9 if (y < vr-1 && lseek(outfd,
579 greg 2.37 (off_t)(hmult-1)*hr*sizeof(COLR),
580 greg 2.42 SEEK_CUR) < 0)
581 greg 2.26 filerr("seek");
582 greg 2.1 }
583 greg 2.25 #if NFS
584     fls.l_type = F_UNLCK; /* release lock */
585 greg 2.54 #if 0
586 greg 2.26 if (fcntl(outfd, F_SETLKW, &fls) < 0)
587     filerr("lock");
588 greg 2.54 #else
589     dolock(outfd, F_UNLCK);
590     #endif
591 greg 2.25 #endif
592 greg 2.32 if (verbose) { /* notify caller */
593     printf("%d %d done\n", xpos, ypos);
594     fflush(stdout);
595     }
596 greg 2.25 if (syncfp != NULL) { /* record what's been done */
597     sflock(F_WRLCK);
598     fseek(syncfp, 0L, 2); /* append index */
599     fprintf(syncfp, "%4d %4d\n", xpos, ypos);
600     fflush(syncfp);
601     /*** Unlock not necessary, since
602     sflock(F_UNLCK); _exit() or nextpiece() is next ***/
603 greg 2.20 }
604 greg 2.25 if (pid == -1) /* didn't fork or fork failed */
605 greg 2.9 return(0);
606 greg 2.25 _exit(0); /* else exit child process (releasing locks) */
607 greg 2.26 }
608    
609    
610 schorsch 2.43 static void
611     filerr( /* report file error and exit */
612     char *t
613     )
614 greg 2.26 {
615     fprintf(stderr, "%s: %s error on file \"%s\": %s\n",
616 greg 2.37 progname, t, outfile, strerror(errno));
617 greg 2.9 _exit(1);
618 greg 2.1 }
619 greg 2.16
620     #endif