From d7aa12e045aeb99a7de516e8949736d3f79b4034 Mon Sep 17 00:00:00 2001 From: peter Date: Sun, 8 Feb 1998 06:48:37 +0000 Subject: Reduce the sleep(1) inbetween each diff, as suggested by bde some time ago. The real fix is rather large. --- contrib/cvs/src/rcscmds.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'contrib/cvs/src') diff --git a/contrib/cvs/src/rcscmds.c b/contrib/cvs/src/rcscmds.c index 9a237a9..f62b279 100644 --- a/contrib/cvs/src/rcscmds.c +++ b/contrib/cvs/src/rcscmds.c @@ -148,7 +148,8 @@ call_diff (out) The real fix, of course, will be to have the diff library do all its output through callbacks (which CVS will supply as cvs_output and cvs_outerr). */ - sleep (1); + /* sleep (1); */ + usleep (10000); if (out == RUN_TTY) return diff_run (call_diff_argc, call_diff_argv, NULL); @@ -171,7 +172,8 @@ call_diff3 (out) The real fix, of course, will be to have the diff library do all its output through callbacks (which CVS will supply as cvs_output and cvs_outerr). */ - sleep (1); + /* sleep (1); */ + usleep (10000); if (out == RUN_TTY) return diff3_run (call_diff_argc, call_diff_argv, NULL); -- cgit v1.1