예제 #1
0
파일: main.c 프로젝트: AlexShiLucky/linux
void big_gang_check(bool long_run)
{
	int i;

	for (i = 0; i < (long_run ? 1000 : 3); i++) {
		__big_gang_check();
		printv(2, "%d ", i);
		fflush(stdout);
	}
}
예제 #2
0
파일: main.c 프로젝트: 020gzh/linux
void big_gang_check(void)
{
	int i;

	for (i = 0; i < 1000; i++) {
		__big_gang_check();
		srand(time(0));
		printf("%d ", i);
		fflush(stdout);
	}
}