diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-03-06 23:53:07 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-03-06 23:53:07 +0100 |
commit | 713194ce54ea67d3fc666ef81aaece16d0e44928 (patch) | |
tree | 9c25a333045d9d000196e0e170594c83ae28bffa /cache.h | |
parent | Merge branch 'jc/maint-diff-patch-header' (diff) | |
parent | Add threaded versions of functions in symlinks.c. (diff) | |
download | git-713194ce54ea67d3fc666ef81aaece16d0e44928.tar.xz git-713194ce54ea67d3fc666ef81aaece16d0e44928.zip |
Merge branch 'jh/threadable-symlink-check'
By Jared Hance
* jh/threadable-symlink-check:
Add threaded versions of functions in symlinks.c.
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -950,7 +950,9 @@ struct cache_def { extern int has_symlink_leading_path(const char *name, int len); extern int threaded_has_symlink_leading_path(struct cache_def *, const char *, int); extern int check_leading_path(const char *name, int len); +extern int threaded_check_leading_path(struct cache_def *cache, const char *name, int len); extern int has_dirs_only_path(const char *name, int len, int prefix_len); +extern int threaded_has_dirs_only_path(struct cache_def *cache, const char *name, int len, int prefix_len); extern void schedule_dir_for_removal(const char *name, int len); extern void remove_scheduled_dirs(void); |