X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/blobdiff_plain/03019e41fc3299020c8acdda06cf57a1e2c57a25..cbdf862c63c8b1b764247668a83430da0bf49559:/catch_crash_signals.diff diff --git a/catch_crash_signals.diff b/catch_crash_signals.diff index 472b71e..d7c0e12 100644 --- a/catch_crash_signals.diff +++ b/catch_crash_signals.diff @@ -25,20 +25,22 @@ To use this patch, run these commands for a successful build: ./configure (optional if already run) make ---- old/errcode.h -+++ new/errcode.h +diff --git a/errcode.h b/errcode.h +--- a/errcode.h ++++ b/errcode.h @@ -47,6 +47,8 @@ - #define RERR_TIMEOUT 30 /* timeout in data send/receive */ + #define RERR_CONTIMEOUT 35 /* timeout waiting for daemon connection */ +#define RERR_WECRASHED 50 /* We have crashed. */ + /* Although it doesn't seem to be specified anywhere, * ssh and the shell seem to return these values: * ---- old/log.c -+++ new/log.c -@@ -77,6 +77,7 @@ struct { +diff --git a/log.c b/log.c +--- a/log.c ++++ b/log.c +@@ -82,6 +82,7 @@ struct { { RERR_TERMINATED , "sibling process terminated abnormally" }, { RERR_SIGNAL1 , "received SIGUSR1" }, { RERR_SIGNAL , "received SIGINT, SIGTERM, or SIGHUP" }, @@ -46,9 +48,10 @@ To use this patch, run these commands for a successful build: { RERR_WAITCHILD , "waitpid() failed" }, { RERR_MALLOC , "error allocating core memory buffers" }, { RERR_PARTIAL , "some files could not be transferred" }, ---- old/main.c -+++ new/main.c -@@ -149,8 +149,11 @@ static void wait_process_with_flush(pid_ +diff --git a/main.c b/main.c +--- a/main.c ++++ b/main.c +@@ -163,8 +163,11 @@ static void wait_process_with_flush(pid_t pid, int *exit_code_ptr) *exit_code_ptr = RERR_TERMINATED; else *exit_code_ptr = RERR_WAITCHILD; @@ -61,7 +64,7 @@ To use this patch, run these commands for a successful build: } /* This function gets called from all 3 processes. We want the client side -@@ -1211,6 +1214,14 @@ RETSIGTYPE remember_children(UNUSED(int +@@ -1306,6 +1309,14 @@ RETSIGTYPE remember_children(UNUSED(int val)) break; } } @@ -76,7 +79,7 @@ To use this patch, run these commands for a successful build: } #endif #ifndef HAVE_SIGACTION -@@ -1269,6 +1280,12 @@ static RETSIGTYPE rsync_panic_handler(UN +@@ -1364,6 +1375,12 @@ static RETSIGTYPE rsync_panic_handler(UNUSED(int whatsig)) } #endif @@ -89,7 +92,7 @@ To use this patch, run these commands for a successful build: int main(int argc,char *argv[]) { -@@ -1291,6 +1308,11 @@ int main(int argc,char *argv[]) +@@ -1386,6 +1403,11 @@ int main(int argc,char *argv[]) SIGACTMASK(SIGFPE, rsync_panic_handler); SIGACTMASK(SIGABRT, rsync_panic_handler); SIGACTMASK(SIGBUS, rsync_panic_handler); @@ -101,9 +104,10 @@ To use this patch, run these commands for a successful build: #endif starttime = time(NULL); ---- old/socket.c -+++ new/socket.c -@@ -454,7 +454,17 @@ int is_a_socket(int fd) +diff --git a/socket.c b/socket.c +--- a/socket.c ++++ b/socket.c +@@ -512,7 +512,17 @@ int is_a_socket(int fd) static RETSIGTYPE sigchld_handler(UNUSED(int val)) { #ifdef WNOHANG