aboutsummaryrefslogtreecommitdiff
path: root/compat/mingw.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2008-08-18 21:57:16 +0200
committerJunio C Hamano <gitster@pobox.com>2008-08-18 22:37:55 -0700
commitfdb2a2a600969598fd80f01b009fbbb020d596ab (patch)
tree935e08662721c94bf3d4aabf2542653ae16bd20a /compat/mingw.h
parent2ebc02d32a4360da2cf69c2b5f5bfad0716d42b0 (diff)
downloadgit-fdb2a2a600969598fd80f01b009fbbb020d596ab.tar.gz
git-fdb2a2a600969598fd80f01b009fbbb020d596ab.tar.xz
compat: introduce on_disk_bytes()
Some platforms do not have st_blocks member in "struct stat"; mingw already emulates it by rounding it up to closest 512-byte blocks (even though it could overcount when a file has holes). The reason to use the member is only to figure out how many kilobytes the files occupy on-disk, so give a helper function in git-compat-util.h to compute this value. Signed-off-by: Junio C Hamano <gitster@pobox.com> Acked-by: Johannes Sixt <johannes.sixt@telecom.at>
Diffstat (limited to 'compat/mingw.h')
-rw-r--r--compat/mingw.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/compat/mingw.h b/compat/mingw.h
index a52e657c5..1472d5977 100644
--- a/compat/mingw.h
+++ b/compat/mingw.h
@@ -169,7 +169,6 @@ struct mingw_stat {
time_t st_mtime, st_atime, st_ctime;
unsigned st_dev, st_ino, st_uid, st_gid;
size_t st_size;
- size_t st_blocks;
};
int mingw_lstat(const char *file_name, struct mingw_stat *buf);
int mingw_fstat(int fd, struct mingw_stat *buf);