From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22969 invoked by alias); 16 Aug 2004 14:37:04 -0000 Mailing-List: contact ecos-cvs-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Post: List-Help: , Sender: ecos-cvs-owner@sources.redhat.com List-Subscribe: Received: (qmail 22955 invoked by uid 453); 16 Aug 2004 14:37:04 -0000 Date: Mon, 16 Aug 2004 14:37:00 -0000 Message-ID: <20040816143704.22954.qmail@sourceware.org> From: jlarmour@sourceware.org To: ecos-cvs@ecos.sourceware.org Subject: ecos/packages/language/c/libc/stdio/current Ch ... X-SW-Source: 2004/txt/msg00381.txt.bz2 List-Id: CVSROOT: /cvs/ecos Module name: ecos Changes by: jlarmour@sourceware.org 2004-08-16 14:37:04 Modified files: packages/language/c/libc/stdio/current: ChangeLog packages/language/c/libc/stdio/current/src/common: stream.cxx Log message: * src/common/stream.cxx (read): fixed performance problem with unbuffered reads. Long unbuffered i/o read requests would cause one roundtrip to the underlying file system for each byte, instead of a single trip as intended.