Displaying 6 results from an estimated 6 matches for "rerr_waitchild".
2005 Sep 23
1
Unexplained error
Hello,
I like to use rsync to transfer over mine and other peoples ever changing
mail folder onto a remote server.
My Server (FreeBSD 5.4) RSYNC Version is: 2.6.6 Protocol Version 29
My Client (OSX 10.4.2) RSYNC Version is: 2.6.3 Protocol Version 28
I use this command
rsync -vvv --progress --stats --recursive --times \
--perms --links \
--delete /test/my?email?folder/*
2003 Oct 25
1
Trivial documentation patch
...rting client-server protocol
+
dit(bf(RERR_SOCKETIO 10)) Error in socket IO
dit(bf(RERR_FILEIO 11)) Error in file IO
dit(bf(RERR_STREAMIO 12)) Error in rsync protocol data stream
@@ -1126,6 +1128,7 @@
dit(bf(RERR_SIGNAL 20)) Received SIGUSR1 or SIGINT
dit(bf(RERR_WAITCHILD 21)) Some error returned by waitpid()
dit(bf(RERR_MALLOC 22)) Error allocating core memory buffers
+dit(bf(RERR_PARTIAL 23)) Partial transfer
dit(bf(RERR_TIMEOUT 30)) Timeout in data send/receive
enddit()
2003 Jun 07
1
patch to rsync to add options for pre- and post-transfer commands
...IPT 17 /* error running pre-transfer script */
+ #define RERR_POSTSCRIPT 18 /* error running post-transfer script */
+ #define RERR_SCRIPT 19 /* system error running transfer script */
+
#define RERR_SIGNAL 20 /* status returned when sent SIGUSR1, SIGINT */
#define RERR_WAITCHILD 21 /* some error returned by waitpid() */
#define RERR_MALLOC 22 /* error allocating core memory buffers */
Common subdirectories: rsync-2.5.6.orig/lib and rsync-2.5.6/lib
diff --exclude='*.o' -b --context rsync-2.5.6.orig/loadparm.c rsync-2.5.6/loadparm.c
*** rsync-2.5.6.o...
2004 Sep 05
1
minor typo fix for 2.6.3 pre 1
I'm sure that someone's gonna complain that parsing the output is messed
up by this patch, but then they should have told about the typo
themselves :-)
--- log.c.orig 2004-08-17 10:25:57.000000000 +0200
+++ log.c 2004-09-05 16:28:42.000000000 +0200
@@ -61,7 +61,7 @@
{ RERR_WAITCHILD , "some error returned by waitpid()" },
{ RERR_MALLOC , "error allocating core memory buffers" },
{ RERR_PARTIAL , "some files could not be transferred" },
- { RERR_VANISHED , "some files vanished before they could be transfered" },
+ { RERR_VAN...
2006 Feb 13
1
rsync SIGSEGV signal handler in Cygwin.
...g.c Sat Jan 28 04:37:10 2006
@@ -66,6 +66,7 @@
{ RERR_MESSAGEIO , "errors with program diagnostics" },
{ RERR_IPC , "error in IPC code" },
{ RERR_SIGNAL , "received SIGUSR1 or SIGINT" },
+ { RERR_CRASH , "*** WE HAVE CRASHED :-( ***" },
{ RERR_WAITCHILD , "some error returned by waitpid()" },
{ RERR_MALLOC , "error allocating core memory buffers" },
{ RERR_PARTIAL , "some files could not be transferred" },
diff -ur rsync-2.6.6/main.c rsync/main.c
--- rsync-2.6.6/main.c Thu May 12 11:43:14 2005
+++ rsync/main...
2004 May 29
1
[patch] Filename conversion
...a stream */
#define RERR_MESSAGEIO 13 /* errors with program diagnostics */
#define RERR_IPC 14 /* error in IPC code */
+#define RERR_FNAMECONV 15 /* error in filename conversion */
#define RERR_SIGNAL 20 /* status returned when sent SIGUSR1, SIGINT */
#define RERR_WAITCHILD 21 /* some error returned by waitpid() */
diff -rupNP rsync-2.6.2/flist.c rsync-2.6.2-fnameconv.clean/flist.c
--- rsync-2.6.2/flist.c 2004-04-29 22:37:15.000000000 +0300
+++ rsync-2.6.2-fnameconv.clean/flist.c 2004-05-29 21:17:08.000000000 +0300
@@ -333,7 +333,7 @@ void send_file_entry(struct...