From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KmREN-000403-E9 for qemu-devel@nongnu.org; Sun, 05 Oct 2008 06:52:55 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KmREM-0003zr-Ou for qemu-devel@nongnu.org; Sun, 05 Oct 2008 06:52:54 -0400 Received: from [199.232.76.173] (port=44574 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KmREM-0003zm-I0 for qemu-devel@nongnu.org; Sun, 05 Oct 2008 06:52:54 -0400 Received: from savannah.gnu.org ([199.232.41.3]:46639 helo=sv.gnu.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KmREM-00069Z-6G for qemu-devel@nongnu.org; Sun, 05 Oct 2008 06:52:54 -0400 Received: from cvs.savannah.gnu.org ([199.232.41.69]) by sv.gnu.org with esmtp (Exim 4.63) (envelope-from ) id 1KmREL-0001Rv-Bf for qemu-devel@nongnu.org; Sun, 05 Oct 2008 10:52:53 +0000 Received: from blueswir1 by cvs.savannah.gnu.org with local (Exim 4.63) (envelope-from ) id 1KmREL-0001Rr-1C for qemu-devel@nongnu.org; Sun, 05 Oct 2008 10:52:53 +0000 MIME-Version: 1.0 Errors-To: blueswir1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Blue Swirl Message-Id: Date: Sun, 05 Oct 2008 10:52:53 +0000 Subject: [Qemu-devel] [5426] Make ioctl table static Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Revision: 5426 http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5426 Author: blueswir1 Date: 2008-10-05 10:52:52 +0000 (Sun, 05 Oct 2008) Log Message: ----------- Make ioctl table static Modified Paths: -------------- trunk/darwin-user/syscall.c trunk/linux-user/syscall.c Modified: trunk/darwin-user/syscall.c =================================================================== --- trunk/darwin-user/syscall.c 2008-10-05 10:51:10 UTC (rev 5425) +++ trunk/darwin-user/syscall.c 2008-10-05 10:52:52 UTC (rev 5426) @@ -654,7 +654,7 @@ #define MAX_STRUCT_SIZE 4096 -IOCTLEntry ioctl_entries[] = { +static IOCTLEntry ioctl_entries[] = { #define IOCTL(cmd, access, types...) \ { cmd, cmd, #cmd, access, { types } }, #include "ioctls.h" Modified: trunk/linux-user/syscall.c =================================================================== --- trunk/linux-user/syscall.c 2008-10-05 10:51:10 UTC (rev 5425) +++ trunk/linux-user/syscall.c 2008-10-05 10:52:52 UTC (rev 5426) @@ -2139,7 +2139,7 @@ #define MAX_STRUCT_SIZE 4096 -IOCTLEntry ioctl_entries[] = { +static IOCTLEntry ioctl_entries[] = { #define IOCTL(cmd, access, types...) \ { TARGET_ ## cmd, cmd, #cmd, access, { types } }, #include "ioctls.h"