gdb/testsuite/

* gdb.threads/pthread_cond_wait.c (main): Remove variable ts.  Replace
	nanosleep by sleep.
This commit is contained in:
Jan Kratochvil 2013-02-14 15:24:11 +00:00
parent d6c44983c3
commit 420f4384af
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2013-02-14 Jan Kratochvil <jan.kratochvil@redhat.com>
* gdb.threads/pthread_cond_wait.c (main): Remove variable ts. Replace
nanosleep by sleep.
2013-02-14 Pedro Alves <palves@redhat.com>
* gdb.cp/userdef.exp (ptype &*c): Don't expect an &.

View File

@ -59,12 +59,11 @@ int
main (void)
{
pthread_t forever;
const struct timespec ts = { 0, 10000000 }; /* 0.01 sec */
pthread_create (&forever, NULL, forever_pthread, NULL);
for (;;)
{
nanosleep (&ts, NULL);
sleep (2);
break_me();
}