Skip to content

Commit a76b138

Browse files
hanwengitster
authored andcommitted
move sleep_millisec to git-compat-util.h
The sleep function is defined in wrapper.c, so it makes more sense to be a in system compatibility header. Signed-off-by: Han-Wen Nienhuys <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 898f807 commit a76b138

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

cache.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1960,7 +1960,6 @@ int stat_validity_check(struct stat_validity *sv, const char *path);
19601960
void stat_validity_update(struct stat_validity *sv, int fd);
19611961

19621962
int versioncmp(const char *s1, const char *s2);
1963-
void sleep_millisec(int millisec);
19641963

19651964
/*
19661965
* Create a directory and (if share is nonzero) adjust its permissions

git-compat-util.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1352,4 +1352,6 @@ static inline void *container_of_or_null_offset(void *ptr, size_t offset)
13521352
((uintptr_t)&(ptr)->member - (uintptr_t)(ptr))
13531353
#endif /* !__GNUC__ */
13541354

1355+
void sleep_millisec(int millisec);
1356+
13551357
#endif

0 commit comments

Comments
 (0)