From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59358) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XK5uN-0004Bp-3Q for qemu-devel@nongnu.org; Wed, 20 Aug 2014 09:26:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XK5uG-0000y9-VX for qemu-devel@nongnu.org; Wed, 20 Aug 2014 09:26:35 -0400 Received: from mx1.redhat.com ([209.132.183.28]:54004) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XK5uG-0000xu-OW for qemu-devel@nongnu.org; Wed, 20 Aug 2014 09:26:28 -0400 Message-ID: <53F4A1FF.5030200@redhat.com> Date: Wed, 20 Aug 2014 15:26:23 +0200 From: Paolo Bonzini MIME-Version: 1.0 References: <1408528887-22200-1-git-send-email-famz@redhat.com> <1408528887-22200-4-git-send-email-famz@redhat.com> In-Reply-To: <1408528887-22200-4-git-send-email-famz@redhat.com> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 3/6] stubs: Add openpty.c List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Fam Zheng , qemu-devel@nongnu.org Cc: kwolf@redhat.com, mjt@tls.msk.ru, stefanha@redhat.com Il 20/08/2014 12:01, Fam Zheng ha scritto: > Add function "openpty" which is used by util/qemu-openpty.c. > > Signed-off-by: Fam Zheng > --- > stubs/Makefile.objs | 1 + > stubs/openpty.c | 21 +++++++++++++++++++++ > 2 files changed, 22 insertions(+) > create mode 100644 stubs/openpty.c > > diff --git a/stubs/Makefile.objs b/stubs/Makefile.objs > index d9cad1b..f5d2cdd 100644 > --- a/stubs/Makefile.objs > +++ b/stubs/Makefile.objs > @@ -41,3 +41,4 @@ stub-obj-y += cpus.o > stub-obj-y += kvm.o > stub-obj-y += qmp_pc_dimm_device_list.o > stub-obj-y += iohandler.o > +stub-obj-y += openpty.o > diff --git a/stubs/openpty.c b/stubs/openpty.c > new file mode 100644 > index 0000000..31e6ff5 > --- /dev/null > +++ b/stubs/openpty.c > @@ -0,0 +1,21 @@ > +/* > + * openpty stub > + * > + * Copyright Red Hat, Inc., 2014 > + * > + * Author: Fam Zheng > + * > + * This work is licensed under the terms of the GNU GPL, version 2 or > + * later. See the COPYING file in the top-level directory. > + */ > + > +#include > +#include > + > +int openpty(int *amaster, int *aslave, char *name, > + const struct termios *termp, > + const struct winsize *winp) > +{ > + abort(); > +} > + > Please move -lutil from libs_softmmu to LIBS instead. Paolo