]> git.ipfire.org Git - thirdparty/git.git/commit
connected: use buffered I/O to talk to rev-list
authorRené Scharfe <l.s.r@web.de>
Wed, 12 Aug 2020 16:52:49 +0000 (18:52 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 17 Aug 2020 17:29:39 +0000 (10:29 -0700)
commit24b75faf0da7a025a192ab4c65cb1f1d6dc6b7f6
tree37546d347e816f108ff39a2e1bd74eea0f271d37
parent47ae905ffb98cc4d4fd90083da6bc8dab55d9ecc
connected: use buffered I/O to talk to rev-list

Like f0bca72dc77 (send-pack: use buffered I/O to talk to pack-objects,
2016-06-08), significantly reduce the number of system calls and
simplify the code for sending object IDs to rev-list by using stdio's
buffering.

Take care to handle errors immediately to get the correct error code,
and to flush the buffer explicitly before closing the stream in order to
catch any write errors for these last bytes.

Helped-by: Chris Torek <chris.torek@gmail.com>
Helped-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
connected.c