From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18242 invoked by alias); 30 Jul 2008 17:55:43 -0000 Received: (qmail 18218 invoked by uid 22791); 30 Jul 2008 17:55:42 -0000 X-Spam-Check-By: sourceware.org Received: from mtaout6.012.net.il (HELO mtaout6.012.net.il) (84.95.2.16) by sourceware.org (qpsmtpd/0.31) with ESMTP; Wed, 30 Jul 2008 17:55:18 +0000 Received: from HOME-C4E4A596F7 ([84.229.228.238]) by i-mtaout6.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0K4T00DCWZ3RKT30@i-mtaout6.012.net.il> for gdb-patches@sourceware.org; Wed, 30 Jul 2008 20:55:04 +0300 (IDT) Date: Wed, 30 Jul 2008 17:55:00 -0000 From: Eli Zaretskii Subject: Re: minor doc fix In-reply-to: X-012-Sender: halo1@inter.net.il To: Bart Veer Cc: gdb-patches@sourceware.org Reply-to: Eli Zaretskii Message-id: References: X-IsSubscribed: yes Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2008-07/txt/msg00566.txt.bz2 > Date: Wed, 30 Jul 2008 16:54:43 +0100 > From: Bart Veer > > Current docs for the remote protocol file I/O extension state that a > struct timeval is 8 bytes. It is actually 12, a 4-byte time_t tv_sec > and an 8-byte long tv_usec. You are on a 64-bit machine, right? On a 32-bit machine, a long takes 4 bytes, like an int. So if you want to get this text right, you will need to rewrite it such that it is correct on both architectures. Thanks.