From db577eb54e92c48d19d4d61305023b98d906c4e4 Mon Sep 17 00:00:00 2001 From: braam Date: Fri, 8 Nov 2002 00:11:51 +0000 Subject: [PATCH] - add something that prints the time every 10,000 creates --- lustre/tests/createmany.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lustre/tests/createmany.c b/lustre/tests/createmany.c index 27ba3f7..4c3bc2a 100644 --- a/lustre/tests/createmany.c +++ b/lustre/tests/createmany.c @@ -1,6 +1,7 @@ #include #include #include +#include #include #include #include @@ -33,6 +34,8 @@ int main(int argc, char ** argv) filename, strerror(errno)); break; } + if ( (i%10000) == 0 ) + printf(" - created %d (time %d)\n", i, time(0)); } return rc; } -- 1.8.3.1