2002-02-24 Michael Chastain <mec@shout.net>
* gdb.threads/pthreads.c (thread1): Add a return statement. (thread2): Likewise. (foo): Likewise.
This commit is contained in:
parent
aab4e0ec4b
commit
258ad32d2b
@ -1,3 +1,9 @@
|
||||
2002-02-24 Michael Chastain <mec@shout.net>
|
||||
|
||||
* gdb.threads/pthreads.c (thread1): Add a return statement.
|
||||
(thread2): Likewise.
|
||||
(foo): Likewise.
|
||||
|
||||
2002-02-23 Michael Chastain <mec@shout.net>
|
||||
|
||||
* gdb.threads/linux-dp.c (philosopher): Add a return statement
|
||||
|
@ -79,6 +79,7 @@ thread1 (void *arg)
|
||||
common_routine (1);
|
||||
sleep(1);
|
||||
}
|
||||
return (void *) 0;
|
||||
}
|
||||
|
||||
static void *
|
||||
@ -96,9 +97,10 @@ thread2 (void * arg)
|
||||
sleep(1);
|
||||
}
|
||||
sleep(100);
|
||||
return (void *) 0;
|
||||
}
|
||||
|
||||
int
|
||||
void
|
||||
foo (a, b, c)
|
||||
int a, b, c;
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user