From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from sc8-sf-mx1-b.sourceforge.net ([10.3.1.91] helo=mail.sourceforge.net) by sc8-sf-list1-new.sourceforge.net with esmtp (Exim 4.43) id 1Htp8P-00011F-0P for user-mode-linux-devel@lists.sourceforge.net; Thu, 31 May 2007 11:12:30 -0700 Received: from saraswathi.solana.com ([198.99.130.12]) by mail.sourceforge.net with esmtps (TLSv1:AES256-SHA:256) (Exim 4.44) id 1Htp8O-0008CI-F8 for user-mode-linux-devel@lists.sourceforge.net; Thu, 31 May 2007 11:12:28 -0700 Date: Thu, 31 May 2007 14:04:29 -0400 From: Jeff Dike Message-ID: <20070531180429.GA9782@c2.user-mode-linux.org> Mime-Version: 1.0 Content-Disposition: inline Subject: [uml-devel] [PATCH 1/3] syslet demos - add more includes List-Id: The user-mode Linux development list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: user-mode-linux-devel-bounces@lists.sourceforge.net Errors-To: user-mode-linux-devel-bounces@lists.sourceforge.net To: Zach Brown , Ingo Molnar Cc: LKML , uml-devel Add a bunch of includes to sys.h and syslet.h to kill off compilation warnings. Signed-off-by: Jeff Dike -- sys.h | 7 +++++++ syslet.h | 2 ++ 2 files changed, 9 insertions(+) Index: async-test-v5/sys.h =================================================================== --- async-test-v5.orig/sys.h 2007-02-28 14:32:16.000000000 -0500 +++ async-test-v5/sys.h 2007-05-31 13:29:57.000000000 -0400 @@ -1,5 +1,12 @@ #include +#include +#include +#include +#include +#include + +#include "syslet.h" #if DEBUG # define pr(x...) do { printf("%d: ", sys_gettid()); printf(x); fflush(stdout); } while (0) Index: async-test-v5/syslet.h =================================================================== --- async-test-v5.orig/syslet.h 2007-02-28 14:32:16.000000000 -0500 +++ async-test-v5/syslet.h 2007-05-30 12:32:44.000000000 -0400 @@ -10,6 +10,8 @@ * User-space API/ABI definitions: */ +#include "common.h" + #ifndef __user # define __user #endif ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ User-mode-linux-devel mailing list User-mode-linux-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel