Check-in [a437da486d]
Not logged in
Overview

SHA1 Hash:a437da486daf3e17604928a8d566f2cca9359aa6
Date: 2007-12-02 06:58:49
User: aku
Comment:Added progress output to the breaking of backward branches.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified tools/cvs2fossil/lib/c2f_pbreakacycle.tcl from [2c3ba3a1ce] to [f65b1a9322].

@@ -122,11 +122,14 @@
 	# at least one incoming revision changeset which is committed
 	# after at least one of the outgoing revision changesets, per
 	# the order computed in pass 6. In "cvs2svn" this is called
 	# "retrograde".
 
+	set n 0
+	set max [llength [$graph nodes]]
 	foreach cset [$graph nodes] {
+	    log progress 2 breakacycle $n $max ; incr n
 	    if {![$cset isbranch]} continue
 	    CheckAndBreakBackward $graph $cset
 	}
 	return
     }