pack-objects: Print a message describing the number of threads for packing

Signed-off-by: Brandon Casey <casey@nrlssc.navy.mil>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Brandon Casey 2008-02-22 20:12:58 -06:00 committed by Junio C Hamano
parent 833e3df171
commit 6c723f5e6b
1 changed files with 3 additions and 0 deletions

View File

@ -2239,6 +2239,9 @@ int cmd_pack_objects(int argc, const char **argv, const char *prefix)
#ifdef THREADED_DELTA_SEARCH
if (!delta_search_threads) /* --threads=0 means autodetect */
delta_search_threads = online_cpus();
if (progress)
fprintf(stderr, "Using %d pack threads.\n",
delta_search_threads);
#endif

prepare_packed_git();