Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 27dedf0c3b78d1072fb5449149421284f9e5297b authored by Junio C Hamano on 17 November 2005, 05:32:44 UTC
GIT 0.99.9j aka 1.0rc3
Tip revision: 27dedf0
copy.c
#include "cache.h"

int copy_fd(int ifd, int ofd)
{
	while (1) {
		int len;
		char buffer[8192];
		char *buf = buffer;
		len = read(ifd, buffer, sizeof(buffer));
		if (!len)
			break;
		if (len < 0) {
			int read_error;
			if (errno == EAGAIN)
				continue;
			read_error = errno;
			close(ifd);
			return error("copy-fd: read returned %s",
				     strerror(read_error));
		}
		while (1) {
			int written = write(ofd, buf, len);
			if (written > 0) {
				buf += written;
				len -= written;
				if (!len)
					break;
			}
			if (!written)
				return error("copy-fd: write returned 0");
			if (errno == EAGAIN || errno == EINTR)
				continue;
			return error("copy-fd: write returned %s",
				     strerror(errno));
		}
	}
	close(ifd);
	return 0;
}

back to top