Revert "upload-archive: use start_command instead of fork"

This reverts commit c09cd77ea2, expecting a
better version to be rerolled soon.
This commit is contained in:
Junio C Hamano
2011-11-15 15:39:33 -08:00
parent bc1bbe0c19
commit f0c7fd49c0
4 changed files with 55 additions and 31 deletions

View File

@ -85,6 +85,8 @@ static inline int symlink(const char *oldpath, const char *newpath)
{ errno = ENOSYS; return -1; }
static inline int fchmod(int fildes, mode_t mode)
{ errno = ENOSYS; return -1; }
static inline pid_t fork(void)
{ errno = ENOSYS; return -1; }
static inline unsigned int alarm(unsigned int seconds)
{ return 0; }
static inline int fsync(int fd)