summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2013-10-24 18:01:47 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-10-24 22:44:52 (GMT)
commitec73f5807cd6e6f6d55e716cde80637a1019d67d (patch)
treedc0d69de635392484c0d514d330066dc46ea7baa /cache.h
parenta330de31d18ca08c773c64e3657b3bafd59cf751 (diff)
downloadgit-ec73f5807cd6e6f6d55e716cde80637a1019d67d.zip
git-ec73f5807cd6e6f6d55e716cde80637a1019d67d.tar.gz
git-ec73f5807cd6e6f6d55e716cde80637a1019d67d.tar.bz2
sha1_file: export `git_open_noatime`
The `git_open_noatime` helper can be of general interest for other consumers of git's different on-disk formats. Signed-off-by: Vicent Marti <tanoku@gmail.com> Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/cache.h b/cache.h
index 5e3fc72..f2e5aa7 100644
--- a/cache.h
+++ b/cache.h
@@ -780,6 +780,7 @@ extern int hash_sha1_file(const void *buf, unsigned long len, const char *type,
extern int write_sha1_file(const void *buf, unsigned long len, const char *type, unsigned char *return_sha1);
extern int pretend_sha1_file(void *, unsigned long, enum object_type, unsigned char *);
extern int force_object_loose(const unsigned char *sha1, time_t mtime);
+extern int git_open_noatime(const char *name);
extern void *map_sha1_file(const unsigned char *sha1, unsigned long *size);
extern int unpack_sha1_header(git_zstream *stream, unsigned char *map, unsigned long mapsize, void *buffer, unsigned long bufsiz);
extern int parse_sha1_header(const char *hdr, unsigned long *sizep);