From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1Cb7o1-0007Ak-P2 for qemu-devel@nongnu.org; Sun, 05 Dec 2004 20:36:49 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1Cb7o1-0007AR-4m for qemu-devel@nongnu.org; Sun, 05 Dec 2004 20:36:49 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1Cb7o1-0007AK-0E for qemu-devel@nongnu.org; Sun, 05 Dec 2004 20:36:49 -0500 Received: from [65.74.133.9] (helo=mail.codesourcery.com) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.34) id 1Cb7e6-0003mS-J9 for qemu-devel@nongnu.org; Sun, 05 Dec 2004 20:26:34 -0500 From: Paul Brook Subject: Re: [Qemu-devel] Syscall 269 Date: Mon, 6 Dec 2004 01:26:29 +0000 References: <200411180138.46857.james@alentdesignsolutions.com> <200412041509.19222.paul@codesourcery.com> <200412051716.25918.james@alentdesignsolutions.com> In-Reply-To: <200412051716.25918.james@alentdesignsolutions.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200412060126.29749.paul@codesourcery.com> Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: james@alentdesignsolutions.com Cc: qemu-devel@nongnu.org On Monday 06 December 2004 01:16, James Pellow wrote: > Hi Paul, > > Ok, third time is the charm right... It looks like the functions you > referred to that handle struct timeval, are doing exactly what I had done. > Here is an updated patch that factors out the swap code using the existing > function. Hopefully this is ready for inclusion. Thanks for your help with > this and for a truely incredible project! Still not quite there. utimes takes [a pointer to] an array of two struct timeval. You only thunk the first one. Paul