Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: a9572072f0ab0ac97e64b0dc01254a3ad95befe1 authored by Junio C Hamano on 12 December 2005, 00:49:45 UTC
GIT 0.99.9m aka 1.0rc5
Tip revision: a957207
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