21 |
|
|
22 |
|
extern char *progname; /* global argv[0] */ |
23 |
|
|
24 |
– |
extern char *shm_boundary; /* boundary of shared memory */ |
25 |
– |
|
24 |
|
/* persistent processes define */ |
25 |
|
#ifdef F_SETLKW |
26 |
|
#define PERSIST 1 /* normal persist */ |
57 |
|
char *tralist[MAXMODLIST]; /* list of modifers to trace (or no) */ |
58 |
|
int traincl = -1; /* include == 1, exclude == 0 */ |
59 |
|
|
60 |
< |
double (*sens_curve)(SCOLOR scol) = NULL; /* spectral conversion for 1-channel */ |
60 |
> |
double (*sens_curve)(const SCOLOR scol) = NULL; /* spectral conversion for 1-channel */ |
61 |
|
double out_scalefactor = 1; /* output calibration scale factor */ |
62 |
|
RGBPRIMP out_prims = stdprims; /* output color primitives (NULL if spectral) */ |
63 |
|
static RGBPRIMS our_prims; /* private output color primitives */ |
451 |
|
dup2(duped1, fileno(stdout)); |
452 |
|
close(duped1); |
453 |
|
if (persist == PARALLEL) { /* multiprocessing */ |
454 |
< |
preload_objs(); /* preload scene */ |
457 |
< |
shm_boundary = (char *)malloc(16); |
458 |
< |
strcpy(shm_boundary, "SHM_BOUNDARY"); |
454 |
> |
cow_memshare(); /* preloads scene */ |
455 |
|
while ((rval=fork()) == 0) { /* keep on forkin' */ |
456 |
|
pflock(1); |
457 |
|
pfhold(); |
508 |
|
) |
509 |
|
{ |
510 |
|
int lasterrno = errno; |
511 |
+ |
if (erract[WARNING].pf == NULL) |
512 |
+ |
return; /* called by calcomp or someone */ |
513 |
|
eputs(s); |
514 |
|
errno = lasterrno; |
515 |
|
} |
630 |
|
out_prims[GRN][0], out_prims[GRN][1], |
631 |
|
out_prims[BLU][0], out_prims[BLU][1], |
632 |
|
out_prims[WHT][0], out_prims[WHT][1]); |
633 |
< |
if (NCSAMP > 3) |
633 |
> |
if ((sens_curve == NULL) & (NCSAMP > 3)) |
634 |
|
printf(out_prims != NULL ? "-co-\t\t\t\t# output tristimulus colors\n" : |
635 |
|
"-co+\t\t\t\t# output spectral values\n"); |
636 |
|
print_rdefaults(); |