* sysdeps/pthread/aio_suspend.c (aio_suspend): Don't quite remove
any, but unify the test.
2003-01-02 Ulrich Drepper <drepper@redhat.com>
- * sysdeps/pthread/aio_suspend.c (aio_suspend): Simplify by
- removing 'any' variable.
+ * sysdeps/pthread/aio_suspend.c (aio_suspend): Don't quite remove
+ any, but unify the test.
2003-01-02 Jakub Jelinek <jakub@redhat.com>
#include <assert.h>
#include <errno.h>
+#include <stdbool.h>
#include <stdlib.h>
#include <sys/time.h>
struct requestlist *requestlist[nent];
pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
int cnt;
+ bool any = false;
int result = 0;
int dummy;
waitlist[cnt].sigevp = NULL;
waitlist[cnt].caller_pid = 0; /* Not needed. */
requestlist[cnt]->waiting = &waitlist[cnt];
+ any = true;
}
else
/* We will never suspend. */
/* Only if none of the entries is NULL or finished to be wait. */
- if (cnt == nent)
+ if (cnt == nent && any)
{
int oldstate;