correct pthread call

Steve Huss-Lederman (lederman@cs.wisc.edu)
Mon, 23 Jun 1997 09:40:06 -0500 (CDT)

On 174:29, the sample code has the call:

pthreadinit(reduce_thread, (void*)&args);

The correct syntax may be:

pthread_t thread;
...
pthread_create(&thread, NULL, reduce_thread, args);

but we are not posative. If anyone knows for sure, please let us
know.

Thanks,
Steve