2002-02-23 Michael Chastain <mec@shout.net>

* gdb.threads/linux-dp.c (philosopher): Add a return statement
	to placate gcc.
This commit is contained in:
Michael Chastain 2002-02-24 00:42:39 +00:00
parent 3912137081
commit 04c3b3d429
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2002-02-23 Michael Chastain <mec@shout.net>
* gdb.threads/linux-dp.c (philosopher): Add a return statement
to placate gcc.
2002-02-23 Michael Chastain <mec@shout.net>
* gdb.c++/templates.exp: Remove setup_xfail_format "stabs" on

View File

@ -153,6 +153,8 @@ philosopher (void *data)
pthread_mutex_unlock (&fork_mutex[(n + 1) % num_philosophers]);
random_delay ();
}
return (void *) 0;
}
int