From: Ulrich Drepper Date: Wed, 18 Jun 2003 22:25:33 +0000 (+0000) Subject: Update. X-Git-Tag: cvs/glibc-2_3_3~565 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ca343e73586cd05cb39e8fa884637d804558bf4c;p=platform%2Fupstream%2Fglibc.git Update. * tst-cancel4.c (tf_msgsnd): Don't always use 100 as the type, find a random value. (tf_msgrcv): Likewise. Also don't report msgrcv returns if errno==EIDRM. --- diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 846ebf0..d3221e8 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,5 +1,10 @@ 2003-06-18 Ulrich Drepper + * tst-cancel4.c (tf_msgsnd): Don't always use 100 as the type, + find a random value. + (tf_msgrcv): Likewise. Also don't report msgrcv returns if + errno==EIDRM. + * sysdeps/unix/sysv/linux/timer_settime.c: Add prototype for compat_timer_settime. * sysdeps/unix/sysv/linux/timer_gettime.c: Add prototype for diff --git a/nptl/tst-cancel4.c b/nptl/tst-cancel4.c index d729de6..8b0b735 100644 --- a/nptl/tst-cancel4.c +++ b/nptl/tst-cancel4.c @@ -1898,7 +1898,17 @@ tf_msgrcv (void *arg) long int type; char mem[10]; } m; - msgrcv (tempmsg, (struct msgbuf *) &m, 10, 100, 0); + int randnr; + /* We need a positive random number. */ + do + randnr = random (); + while (randnr <= 0); + do + { + errno = 0; + msgrcv (tempmsg, (struct msgbuf *) &m, 10, randnr, 0); + } + while (errno == EIDRM); pthread_cleanup_pop (0); @@ -1939,7 +1949,10 @@ tf_msgsnd (void *arg) long int type; char mem[1]; } m; - m.type = 100; + /* We need a positive random number. */ + do + m.type = random (); + while (m.type <= 0); msgsnd (tempmsg, (struct msgbuf *) &m, sizeof (m.mem), 0); pthread_cleanup_pop (0);