| 1 |
< |
/* Copyright (c) 1992 Regents of the University of California */ |
| 1 |
> |
/* Copyright (c) 1993 Regents of the University of California */ |
| 2 |
|
|
| 3 |
|
#ifndef lint |
| 4 |
|
static char SCCSid[] = "$SunId$ LBL"; |
| 39 |
|
#define MAXFORK 0 |
| 40 |
|
#endif |
| 41 |
|
#endif |
| 42 |
< |
|
| 42 |
> |
/* protection from SYSV signals(!) */ |
| 43 |
> |
#if defined(sgi) || defined(hpux) |
| 44 |
> |
#define guard_io() sighold(SIGALRM) |
| 45 |
> |
#define unguard() sigrelse(SIGALRM) |
| 46 |
> |
#endif |
| 47 |
> |
#ifndef guard_io |
| 48 |
> |
#define guard_io() 0 |
| 49 |
> |
#define unguard() 0 |
| 50 |
> |
#endif |
| 51 |
|
/* rpict command */ |
| 52 |
|
char *rpargv[128] = {"rpict", "-S", "1", "-x", "512", "-y", "512", "-pa", "1"}; |
| 53 |
|
int rpargc = 9; |
| 359 |
|
exit(cleanup(1)); |
| 360 |
|
} |
| 361 |
|
/* check header from rpict */ |
| 362 |
+ |
guard_io(); |
| 363 |
|
getheader(fromrp, NULL, NULL); |
| 364 |
|
if (!fscnresolu(&hr, &vr, fromrp) || hr != hres | vr != vres) { |
| 365 |
|
fprintf(stderr, "%s: resolution mismatch from %s\n", |
| 366 |
|
progname, rpargv[0]); |
| 367 |
|
exit(cleanup(1)); |
| 368 |
|
} |
| 369 |
+ |
unguard(); |
| 370 |
|
/* load new piece into buffer */ |
| 371 |
< |
for (y = 0; y < vr; y++) |
| 371 |
> |
for (y = 0; y < vr; y++) { |
| 372 |
> |
guard_io(); |
| 373 |
|
if (freadcolrs(pbuf+y*hr, hr, fromrp) < 0) { |
| 374 |
|
fprintf(stderr, "%s: read error from %s\n", |
| 375 |
|
progname, rpargv[0]); |
| 376 |
|
exit(cleanup(1)); |
| 377 |
|
} |
| 378 |
+ |
unguard(); |
| 379 |
+ |
} |
| 380 |
|
#if MAXFORK |
| 381 |
|
/* fork so we don't slow rpict down */ |
| 382 |
|
if ((pid = fork()) > 0) { |
| 391 |
|
#else |
| 392 |
|
pid = -1; /* no forking */ |
| 393 |
|
#endif |
| 394 |
< |
fls.l_len = (long)vres*hmult*hres*sizeof(COLR); |
| 395 |
< |
fls.l_start = scanorig + (vmult-1-ypos)*fls.l_len; |
| 394 |
> |
fls.l_start = scanorig + |
| 395 |
> |
((long)(vmult-1-ypos)*vres*hmult+xpos)*hres*sizeof(COLR); |
| 396 |
|
#if NFS |
| 397 |
+ |
fls.l_len = ((long)(vres-1)*hmult+1)*hres*sizeof(COLR); |
| 398 |
|
/* lock file section so NFS doesn't mess up */ |
| 399 |
|
fls.l_whence = 0; |
| 400 |
|
fls.l_type = F_WRLCK; |
| 401 |
|
fcntl(outfd, F_SETLKW, &fls); |
| 402 |
|
#endif |
| 403 |
|
/* write new piece to file */ |
| 404 |
< |
if (lseek(outfd, fls.l_start+(long)xpos*hres*sizeof(COLR), 0) == -1) |
| 404 |
> |
if (lseek(outfd, fls.l_start, 0) == -1) |
| 405 |
|
goto seekerr; |
| 406 |
|
if (hmult == 1) { |
| 407 |
|
if (writebuf(outfd, (char *)pbuf, |