X-Git-Url: http://git.apps.os.sepia.ceph.com/?p=xfstests-dev.git;a=blobdiff_plain;f=src%2Ft_enospc.c;h=4070ea51666ff15dc03dd3e2fef5feca820e03bb;hp=d06c6764c581f31bd63e204cbadc2a07d57277cc;hb=0c5013c565b7fa9af74add55760c4986c6d1d19e;hpb=62cf7ce77f4fff388d33b68502d2e591e724dda7 diff --git a/src/t_enospc.c b/src/t_enospc.c index d06c6764..4070ea51 100644 --- a/src/t_enospc.c +++ b/src/t_enospc.c @@ -44,6 +44,7 @@ void handle_sigbus(int sig) void enospc_test(int id) { + int i; int fd; char fpath[255] = {0}; char *addr; @@ -85,7 +86,7 @@ void enospc_test(int id) addr = mmap(NULL, size, PROT_WRITE, MAP_SHARED, fd, 0); assert(addr != MAP_FAILED); - for (int i = 0; i < size; i++) { + for (i = 0; i < size; i++) { addr[i] = 0xAB; } @@ -104,10 +105,11 @@ void *spawn_test_thread(void *arg) void _run_test(int threads) { + int i; pthread_t tid[threads]; pthread_barrier_init(&bar, NULL, threads+1); - for (int i = 0; i < threads; i++) { + for (i = 0; i < threads; i++) { struct thread_s *thread_info = (struct thread_s *) malloc(sizeof(struct thread_s)); thread_info->id = i; assert(pthread_create(&tid[i], NULL, spawn_test_thread, thread_info) == 0); @@ -115,7 +117,7 @@ void _run_test(int threads) pthread_barrier_wait(&bar); - for (int i = 0; i