/****************************************************************************** * FILE: hellodump.c * DESCRIPTION: * A "hello world" Pthreads program that dumps core. Figure out why and * then fix it. * * SOURCE: 9/98 Blaise Barney * LAST REVISED: 10/8/99 Blaise Barney ******************************************************************************/ #include #include #define NTHREADS 8 #define ARRAY_SIZE 16000 void *Hello(void *threadid) { double A[ARRAY_SIZE]; int i; sleep(3); for (i=0; i