| 88 |
|
* ray_psend(&myRay); |
| 89 |
|
* } |
| 90 |
|
* |
| 91 |
< |
* Note that it is a fatal error to call ra_psend() when |
| 92 |
< |
* ray_pnidle is zero. The ray_presult() and/or ray_pqueue() |
| 93 |
< |
* functions may be called subsequently to read back the results. |
| 91 |
> |
* Note that it is a mistake to call ra_psend() when |
| 92 |
> |
* ray_pnidle is zero, and nothing will be sent in |
| 93 |
> |
* this case. Otherwise, the ray_presult() and/or ray_pqueue() |
| 94 |
> |
* functions may be called subsequently to read back the results |
| 95 |
> |
* of rays queued by ray_psend(). |
| 96 |
|
* |
| 97 |
|
* When you are done, you may call ray_pdone(1) to close |
| 98 |
|
* all child processes and clean up memory used by Radiance. |
| 232 |
|
} |
| 233 |
|
|
| 234 |
|
|
| 235 |
< |
void |
| 235 |
> |
int |
| 236 |
|
ray_psend( /* add a ray to our send queue */ |
| 237 |
|
RAY *r |
| 238 |
|
) |
| 239 |
|
{ |
| 240 |
< |
if (r == NULL) |
| 241 |
< |
return; |
| 240 |
> |
int rv; |
| 241 |
> |
|
| 242 |
> |
if ((r == NULL) | (ray_pnidle <= 0)) |
| 243 |
> |
return(0); |
| 244 |
|
/* flush output if necessary */ |
| 245 |
< |
if (sendq_full() && ray_pflush() <= 0) |
| 246 |
< |
error(INTERNAL, "ray_pflush failed in ray_psend()"); |
| 245 |
> |
if (sendq_full() && (rv = ray_pflush()) <= 0) |
| 246 |
> |
return(rv); |
| 247 |
|
|
| 248 |
|
r_queue[r_send_next++] = *r; |
| 249 |
+ |
return(1); |
| 250 |
|
} |
| 251 |
|
|
| 252 |
|
|
| 265 |
|
return(-1); |
| 266 |
|
/* put new ray in queue */ |
| 267 |
|
r_queue[r_send_next++] = mySend; |
| 268 |
< |
/* XXX r_send_next may now be > RAYQLEN */ |
| 268 |
> |
|
| 269 |
|
return(1); |
| 270 |
|
} |
| 271 |
|
/* else add ray to send queue */ |