Skip to content
Snippets Groups Projects
Commit 9d73bf1a authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Fixed a warning.

Rev: src/threads.c:1.71
parent a44a2caf
No related branches found
No related tags found
No related merge requests found
#include "global.h" #include "global.h"
RCSID("$Id: threads.c,v 1.70 1998/04/23 23:48:17 hubbe Exp $"); RCSID("$Id: threads.c,v 1.71 1998/05/01 15:49:18 grubba Exp $");
int num_threads = 1; int num_threads = 1;
int threads_disabled = 0; int threads_disabled = 0;
...@@ -887,6 +887,8 @@ static void *farm(void *_a) ...@@ -887,6 +887,8 @@ static void *farm(void *_a)
mt_unlock( &rosie ); mt_unlock( &rosie );
/* fprintf(stderr, "farm_endwait %p\n", me); */ /* fprintf(stderr, "farm_endwait %p\n", me); */
} while(1); } while(1);
// NOT_REACHED
return NULL; // Keep the compiler happy.
} }
int th_num_idle_farmers(void) int th_num_idle_farmers(void)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment