diff options
author | barkalow@iabervon.org <barkalow@iabervon.org> | 2005-08-02 19:46:10 -0400 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-08-02 22:53:09 -0700 |
commit | 1e8be59d14f36128e5eb12cc0457e676bb79690c (patch) | |
tree | 3fa313f2f2ce5e0958010d133e5434012d0033f2 /http-pull.c | |
parent | 66e481b007e843be54b9ff6a4be6e139c103a695 (diff) | |
download | git-1e8be59d14f36128e5eb12cc0457e676bb79690c.tar.gz git-1e8be59d14f36128e5eb12cc0457e676bb79690c.tar.xz |
[PATCH] Parallelize the pull algorithm
This processes objects in two simultaneous passes. Each object will
first be given to prefetch(), as soon as it is possible to tell that
it will be needed, and then will be given to fetch(), when it is the
next object that needs to be parsed. Unless an implementation does
something with prefetch(), this should have no effect.
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'http-pull.c')
-rw-r--r-- | http-pull.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/http-pull.c b/http-pull.c index bd6195537..e70ab39c0 100644 --- a/http-pull.c +++ b/http-pull.c @@ -67,6 +67,10 @@ static size_t fwrite_sha1_file(void *ptr, size_t eltsize, size_t nmemb, return size; } +void prefetch(unsigned char *sha1) +{ +} + static int got_indices = 0; static struct packed_git *packs = NULL; |