From eeece1cd9ff500a474c52de822e4a3d1a6ea12e2 Mon Sep 17 00:00:00 2001 From: anserper Date: Mon, 20 Apr 2009 18:29:09 +0000 Subject: [PATCH] b=18951 i=Nathan Rutman i=Vladimir Saveliev fix the race between fflush and pause --- lustre/tests/multiop.c | 32 +++++++++++++++++++++----------- 1 file changed, 21 insertions(+), 11 deletions(-) diff --git a/lustre/tests/multiop.c b/lustre/tests/multiop.c index e906af6..86274f2 100755 --- a/lustre/tests/multiop.c +++ b/lustre/tests/multiop.c @@ -47,6 +47,7 @@ #include #include #include +#include #include #include @@ -55,6 +56,7 @@ char msg[] = "yabba dabba doo, I'm coming for you, I live in a shoe, I don't know what to do.\n'Bigger, bigger,and bigger yet!' cried the Creator. 'You are not yet substantial enough for my boundless intents!' And ever greater and greater the object became, until all was lost 'neath its momentus bulk.\n"; char *buf, *buf_align; int bufsize = 0; +sem_t sem; #define ALIGN 65535 char usage[] = @@ -87,10 +89,19 @@ char usage[] = " z[num] seek [optional position, default 0]\n" " _ wait for signal\n"; -static int usr1_received; void usr1_handler(int unused) { - usr1_received = 1; + int saved_errno = errno; + + /* + * signal(7): POSIX.1-2004 ...requires an implementation to guarantee + * that the following functions can be safely called inside a signal + * handler: + * sem_post() + */ + sem_post(&sem); + + errno = saved_errno; } static const char * @@ -188,22 +199,21 @@ int main(int argc, char **argv) } memset(&st, 0, sizeof(st)); - signal(SIGUSR1, usr1_handler); + sem_init(&sem, 0, 0); + /* use sigaction instead of signal to avoid SA_ONESHOT semantics */ + sigaction(SIGUSR1, &(const struct sigaction){.sa_handler = &usr1_handler}, + NULL); fname = argv[1]; for (commands = argv[2]; *commands; commands++) { switch (*commands) { case '_': - if (usr1_received == 0) { - if (verbose) { - printf("PAUSING\n"); - fflush(stdout); - } - pause(); + if (verbose) { + printf("PAUSING\n"); + fflush(stdout); } - usr1_received = 0; - signal(SIGUSR1, usr1_handler); + while (sem_wait(&sem) == -1 && errno == EINTR); break; case 'c': if (close(fd) == -1) { -- 1.8.3.1