From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: [PATCH 06 of 26] libxl: make libxl_console_reader type opaque to users of libxl Date: Mon, 16 Aug 2010 15:33:30 +0100 Message-ID: <075c01bbdf4db1bf2cf3.1281969210@localhost.localdomain> References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com Cc: Ian Campbell List-Id: xen-devel@lists.xenproject.org # HG changeset patch # User Ian Campbell # Date 1281969065 -3600 # Node ID 075c01bbdf4db1bf2cf3b77cd82a59430afc894b # Parent 9c9b64a020535e99286bbb84502ec6cc30c8cc90 libxl: make libxl_console_reader type opaque to users of libxl Signed-off-by: Ian Campbell diff -r 9c9b64a02053 -r 075c01bbdf4d tools/libxl/libxl.h --- a/tools/libxl/libxl.h Mon Aug 16 15:31:04 2010 +0100 +++ b/tools/libxl/libxl.h Mon Aug 16 15:31:05 2010 +0100 @@ -744,14 +744,7 @@ int libxl_send_sysrq(libxl_ctx *ctx, uin int libxl_send_sysrq(libxl_ctx *ctx, uint32_t domid, char sysrq); int libxl_send_debug_keys(libxl_ctx *ctx, char *keys); -typedef struct { - char *buffer; - unsigned int size; - unsigned int count; - unsigned int clear; - unsigned int incremental; - unsigned int index; -} libxl_xen_console_reader; +typedef struct libxl__xen_console_reader libxl_xen_console_reader; libxl_xen_console_reader * libxl_xen_console_read_start(libxl_ctx *ctx, int clear); diff -r 9c9b64a02053 -r 075c01bbdf4d tools/libxl/libxl_internal.h --- a/tools/libxl/libxl_internal.h Mon Aug 16 15:31:04 2010 +0100 +++ b/tools/libxl/libxl_internal.h Mon Aug 16 15:31:05 2010 +0100 @@ -244,4 +244,13 @@ _hidden char *_libxl_poolid_to_name(libx _hidden char *libxl_uuid2string(libxl_gc *gc, const libxl_uuid uuid); +struct libxl__xen_console_reader { + char *buffer; + unsigned int size; + unsigned int count; + unsigned int clear; + unsigned int incremental; + unsigned int index; +}; + #endif