fff1743e23bb709b7473a48b67895d3ace431ac8
hiram
  Fri Jan 4 11:35:50 2013 -0800
adding cgiExitTime printout to a number of CGI binaries
diff --git src/hg/hgGene/hgGene.c src/hg/hgGene/hgGene.c
index 2f28fa8..4f9f854 100644
--- src/hg/hgGene/hgGene.c
+++ src/hg/hgGene/hgGene.c
@@ -667,23 +667,25 @@
 	    genome, curGeneName, curGeneId);
 	webMain(conn);
 	cartWebEnd();
 	}
     hFreeConn(&spConn);
     hFreeConn(&conn);
     }
 cartRemovePrefix(cart, hggDoPrefix);
 }
 
 char *excludeVars[] = {"Submit", "submit", NULL};
 
 int main(int argc, char *argv[])
 /* Process command line. */
 {
+long enteredMainTime = clock1000();
 cgiSpoof(&argc, argv);
 htmlSetStyle(htmlStyleUndecoratedLink);
 if (argc != 1)
     usage();
 oldVars = hashNew(10);
 cartEmptyShell(cartMain, hUserCookie(), excludeVars, oldVars);
+cgiExitTime("hgGene", enteredMainTime);
 return 0;
 }