Index: src/benchmark/create_pthrd.c
===================================================================
--- src/benchmark/create_pthrd.c	(revision d6ff3ffe233bdce51812ab9635b616b629ab09af)
+++ src/benchmark/create_pthrd.c	(revision 6ea87486b2b6353d6a7759b5de92a77328693534)
@@ -14,17 +14,18 @@
 		n = atoi(argv[1]);
 	}
-	printf("%lu\n", n);
+	printf("create %lu pthreads ... ", n);
 
 	for (size_t i = 0; i < n; i++) {
 		pthread_t thread;
 		if (pthread_create(&thread, NULL, foo, NULL) < 0) {
+			perror( "failure" );
 			return 1;
 		}
 
 		if (pthread_join( thread, NULL) < 0) {
+			perror( "failure" );
 			return 1;
 		}
 	}
-	pthread_exit(NULL);
-	return 0;
+	printf("finish\n");
 }
