CVS User Account cvsuser
Fri Jan 28 22:32:16 PST 2005
Log Message:
-----------
Updates to comments

Modified Files:
--------------
    slony1-engine/src/slon:
        slon.c (r1.41 -> r1.42)

-------------- next part --------------
Index: slon.c
===================================================================
RCS file: /usr/local/cvsroot/slony1/slony1-engine/src/slon/slon.c,v
retrieving revision 1.41
retrieving revision 1.42
diff -Lsrc/slon/slon.c -Lsrc/slon/slon.c -u -w -r1.41 -r1.42
--- src/slon/slon.c
+++ src/slon/slon.c
@@ -128,7 +128,7 @@
 	}
 
 	/*
-	 * Make sure the sync interval isn't too small.
+	 * Make sure the sync interval timeout isn't too small.
 	 */
 	if (sync_interval_timeout != 0 && sync_interval_timeout <= sync_interval)
 		sync_interval_timeout = sync_interval * 2;
@@ -193,7 +193,7 @@
 
 
 	/*
-	 * Connect to the local database for reading the initial configuration
+	 * Connect to the local database to read the initial configuration
 	 */
 
 
@@ -380,7 +380,7 @@
 	PQclear(res);
 
 	/*
-	 * Read configuration table sl_subscribe - our subscriptions only
+	 * Read configuration table sl_subscribe - only subscriptions for local node
 	 */
 	slon_mkquery(&query,
 				 "select sub_set, sub_provider, sub_forward, sub_active "
@@ -458,10 +458,10 @@
 	slon_log(SLON_CONFIG, "main: configuration complete - starting threads\n");
 
 	/*
-	 * Create the local event thread that is monitoring the local node for
-	 * administrative events to adjust the configuration at runtime. We wait
-	 * here until the local listen thread has checked that there is no other
-	 * slon daemon running.
+	 * Create the local event thread that monitors the local node
+	 * for administrative events to adjust the configuration at
+	 * runtime. We wait here until the local listen thread has
+	 * checked that there is no other slon daemon running.
 	 */
 	pthread_mutex_lock(&slon_wait_listen_lock);
 	if (pthread_create(&local_event_thread, NULL, localListenThread_main, NULL) < 0)


More information about the Slony1-commit mailing list