From: Bart Van Assche Date: Sun, 19 Sep 2010 17:16:39 +0000 (+0000) Subject: Fixed a typo. X-Git-Tag: svn/VALGRIND_3_6_0~90 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3169936a1ba1fe8b96354ca9b54a5becbc340bcc;p=thirdparty%2Fvalgrind.git Fixed a typo. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11367 --- diff --git a/memcheck/tests/linux/timerfd-syscall.c b/memcheck/tests/linux/timerfd-syscall.c index 71c7ddbbdf..8562e09a86 100644 --- a/memcheck/tests/linux/timerfd-syscall.c +++ b/memcheck/tests/linux/timerfd-syscall.c @@ -202,7 +202,7 @@ int main(int ac, char **av) return 1; } - fprintf(stderr, "wating timer ...\n"); + fprintf(stderr, "waiting timer ...\n"); ticks = waittmr(tfd, -1); ttmr = getustime(clks[i].id); if (ticks <= 0) @@ -222,7 +222,7 @@ int main(int ac, char **av) return 1; } - fprintf(stderr, "wating timer ...\n"); + fprintf(stderr, "waiting timer ...\n"); ticks = waittmr(tfd, -1); ttmr = getustime(clks[i].id); if (ticks <= 0) @@ -255,7 +255,7 @@ int main(int ac, char **av) fprintf(stderr, "sleeping 1 second ...\n"); sleep(1); - fprintf(stderr, "wating timer ...\n"); + fprintf(stderr, "waiting timer ...\n"); ticks = waittmr(tfd, -1); ttmr = getustime(clks[i].id); if (ticks <= 0) @@ -278,7 +278,7 @@ int main(int ac, char **av) fprintf(stderr, "timerfd = %d\n", tfd); #endif - fprintf(stderr, "wating timer (flush the single tick) ...\n"); + fprintf(stderr, "waiting timer (flush the single tick) ...\n"); ticks = waittmr(tfd, -1); ttmr = getustime(clks[i].id); if (ticks <= 0) diff --git a/memcheck/tests/linux/timerfd-syscall.stderr.exp b/memcheck/tests/linux/timerfd-syscall.stderr.exp index b19e906c4c..3e1cb41ff4 100644 --- a/memcheck/tests/linux/timerfd-syscall.stderr.exp +++ b/memcheck/tests/linux/timerfd-syscall.stderr.exp @@ -6,20 +6,20 @@ --------------------------------------- relative timer test (at 500 ms) ... -wating timer ... +waiting timer ... got timer ticks (1) after 0.5 s absolute timer test (at 500 ms) ... -wating timer ... +waiting timer ... got timer ticks (1) after 0.5 s sequential timer test (100 ms clock) ... sleeping one second ... timerfd_gettime returned: it_value = 0.1 it_interval = 0.1 sleeping 1 second ... -wating timer ... +waiting timer ... got timer ticks (20) after 2.0 s O_NONBLOCK test ... -wating timer (flush the single tick) ... +waiting timer (flush the single tick) ... got timer ticks (1) after 0.1 s success @@ -29,20 +29,20 @@ success --------------------------------------- relative timer test (at 500 ms) ... -wating timer ... +waiting timer ... got timer ticks (1) after 0.5 s absolute timer test (at 500 ms) ... -wating timer ... +waiting timer ... got timer ticks (1) after 0.5 s sequential timer test (100 ms clock) ... sleeping one second ... timerfd_gettime returned: it_value = 0.1 it_interval = 0.1 sleeping 1 second ... -wating timer ... +waiting timer ... got timer ticks (20) after 2.0 s O_NONBLOCK test ... -wating timer (flush the single tick) ... +waiting timer (flush the single tick) ... got timer ticks (1) after 0.1 s success