search for: no_flush

Displaying 8 results from an estimated 8 matches for "no_flush".

Did you mean: io_flush
2001 Aug 22
1
@RSYNC EXIT / @RSYNC EOF
...no timeout is specified then use a 60 second select timeout */ #define SELECT_TIMEOUT 60 -extern int bwlimit; - static int io_multiplexing_out; static int io_multiplexing_in; static int multiplex_in_fd; static int multiplex_out_fd; static time_t last_io; -static int eof_error=1; +static int no_flush; + +extern int bwlimit; extern int verbose; extern int io_timeout; extern struct stats stats; + +/** Ignore EOF errors while reading a module listing if the remote + version is 24 or less. */ +int kludge_around_eof = False; + + static int io_error_fd = -1; static void read_loop(int fd,...
2001 Oct 23
1
wine-20011004 Problems
I'm having major problems with the 10/4 Wine release. Currently the only thing I really use Wine for is Eudora Light 3.0.5. The most stable release for me thus far has been wine-20010112, which is what I'm using right now. Most of the releases since then have had window problems with Eudora-- messages having too much blank space, strange things. So I tried 1004, and it has a new
2001 Nov 03
3
Programs under wine can't connect to the network
Hey all Have a very strange problem in slack 8, using wine 20011004. First noticed this with counterstrike, than checked with other programs that should access the net. I get this error, and programs fail: fixme:winsock:_get_sock_fd handle 304 is not a socket (GLE 6) Documentation seems to imply that if I can get on the net with linux, I should be able to use wine with it. Weirdest part is
2007 Nov 12
3
DO NOT REPLY [Bug 5075] New: Syncing with --iconv may yield protocol error
...arding_keep = 1; /* defer_forwarding_messages++ on return */ writefd_unbuffered(fd, buffer, n+4); defer_forwarding_keep = 0; len -= n; buf += n; if (len) writefd_unbuffered(fd, buf, len); if (!--defer_forwarding_messages && !no_flush) msg_flush(); } Context diff based on 3.0.0pre5 follows: *** io.c~ Sat Nov 3 00:20:05 2007 --- io.c Sun Nov 11 21:59:57 2007 *************** *** 468,485 **** char buffer[BIGPATHBUFLEN]; /* Oversized for use by iconv code. */ size_t n = len; - S...
2004 Apr 19
3
[PATCH] time limit
...: * When -x (--one-file-system) is combined with -L (--copy-links) diff -urN rsync-2.6.1pre-2/io.c rsync-2.6.1pre-2_modified/io.c --- rsync-2.6.1pre-2/io.c 2004-01-16 11:31:47.000000000 -0500 +++ rsync-2.6.1pre-2_modified/io.c 2004-04-19 16:07:57.000000000 -0400 @@ -47,6 +47,7 @@ static int no_flush; extern int bwlimit; +extern int timelimit; extern int verbose; extern int io_timeout; extern int am_server; @@ -759,6 +760,26 @@ select(0, NULL, NULL, NULL, &tv); } +/** + When --timelimit is used, compare rsync_start_time and the current time and + return 1 when the timelimit has...
2004 Apr 22
2
[PATCH] --timelimit and --stopat
...* When -x (--one-file-system) is combined with -L (--copy-links) diff -urN rsync-2.6.1pre-2/io.c rsync-2.6.1pre-2_modified/io.c --- rsync-2.6.1pre-2/io.c 2004-01-16 11:31:47.000000000 -0500 +++ rsync-2.6.1pre-2_modified/io.c 2004-04-22 15:52:21.000000000 -0400 @@ -47,13 +47,14 @@ static int no_flush; extern int bwlimit; +extern int timelimit; extern int verbose; extern int io_timeout; extern int am_server; extern int am_daemon; extern int am_sender; extern struct stats stats; - +extern char *stopat; const char phase_unknown[] = "unknown"; @@ -759,6 +760,58 @@ select(0...
2002 Dec 09
2
Rsync performance increase through buffering
...2002 +++ rsync-craig/io.c Sun Dec 8 17:54:23 2002 @@ -41,8 +41,8 @@ static int io_multiplexing_out; static int io_multiplexing_in; -static int multiplex_in_fd; -static int multiplex_out_fd; +static int multiplex_in_fd = -1; +static int multiplex_out_fd = -1; static time_t last_io; static int no_flush; @@ -286,17 +286,31 @@ static size_t remaining; int tag, ret = 0; char line[1024]; + static char *buffer; + static size_t bufferIdx = 0; + static size_t bufferSz; - if (!io_multiplexing_in || fd != multiplex_in_fd) + if (fd != multiplex_in_fd) return read_timeout(f...
2005 Mar 21
4
Patch: Offline transfer mode
...ern int batch_gen_fd; extern int am_server; extern int relative_paths; Index: rsync-2.6.3/io.c =================================================================== --- rsync-2.6.3.orig/io.c 2004-08-01 19:43:54.%N -0700 +++ rsync-2.6.3/io.c 2005-03-19 04:33:29.%N -0800 @@ -88,7 +88,7 @@ static int no_flush; static int write_batch_monitor_in = -1; -static int write_batch_monitor_out = -1; +int write_batch_monitor_out = -1; static int io_filesfrom_f_in = -1; static int io_filesfrom_f_out = -1; Index: rsync-2.6.3/syscall.c =================================================================== --- rs...