From: Stefan Weil <sw@weilnetz.de>
To: John Spencer <maillist-qemu@barfooze.de>
Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org
Subject: Re: [Qemu-trivial] [Qemu-devel] [PATCH 1/4] fix implicit declaration of syscall() in linux-user/mmap.c
Date: Mon, 10 Dec 2012 18:44:40 +0100 [thread overview]
Message-ID: <50C61F88.2040005@weilnetz.de> (raw)
In-Reply-To: <1355122786-29243-1-git-send-email-maillist-qemu@barfooze.de>
Am 10.12.2012 07:59, schrieb John Spencer:
> on glibc, this header is getting pulled in automatically via
> another header, however on musl we need to include it explicitly.
>
> linux-user/mmap.c:705:9: warning: implicit declaration of function 'syscall'
> linux-user/mmap.c:705:9: warning: nested extern declaration of 'syscall'
>
> Signed-off-by: John Spencer<maillist-qemu@barfooze.de>
>
> ---
> linux-user/mmap.c | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/linux-user/mmap.c b/linux-user/mmap.c
> index b412e3f..171b449 100644
> --- a/linux-user/mmap.c
> +++ b/linux-user/mmap.c
> @@ -25,6 +25,7 @@
> #include<sys/types.h>
> #include<sys/stat.h>
> #include<sys/mman.h>
> +#include<sys/syscall.h>
> #include<linux/mman.h>
> #include<linux/unistd.h>
According to the Linux man-page SYSCALL(2), syscall
is declared in unistd.h. On my Debian Linux with glibc,
this information is correct. Here is the result of grep:
/usr/include/unistd.h:extern long int syscall (long int __sysno, ...)
__THROW;
unistd.h is included implicitly via qemu-common.h,
so if you don't get the declaration, there is a buggy
implementation of the header files in musl:
http://git.musl-libc.org/cgit/musl/plain/include/unistd.h
does not match the Linux documentation.
Please report this to the musl developers.
Regards
Stefan Weil
WARNING: multiple messages have this Message-ID (diff)
From: Stefan Weil <sw@weilnetz.de>
To: John Spencer <maillist-qemu@barfooze.de>
Cc: qemu-trivial@nongnu.org, qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH 1/4] fix implicit declaration of syscall() in linux-user/mmap.c
Date: Mon, 10 Dec 2012 18:44:40 +0100 [thread overview]
Message-ID: <50C61F88.2040005@weilnetz.de> (raw)
In-Reply-To: <1355122786-29243-1-git-send-email-maillist-qemu@barfooze.de>
Am 10.12.2012 07:59, schrieb John Spencer:
> on glibc, this header is getting pulled in automatically via
> another header, however on musl we need to include it explicitly.
>
> linux-user/mmap.c:705:9: warning: implicit declaration of function 'syscall'
> linux-user/mmap.c:705:9: warning: nested extern declaration of 'syscall'
>
> Signed-off-by: John Spencer<maillist-qemu@barfooze.de>
>
> ---
> linux-user/mmap.c | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/linux-user/mmap.c b/linux-user/mmap.c
> index b412e3f..171b449 100644
> --- a/linux-user/mmap.c
> +++ b/linux-user/mmap.c
> @@ -25,6 +25,7 @@
> #include<sys/types.h>
> #include<sys/stat.h>
> #include<sys/mman.h>
> +#include<sys/syscall.h>
> #include<linux/mman.h>
> #include<linux/unistd.h>
According to the Linux man-page SYSCALL(2), syscall
is declared in unistd.h. On my Debian Linux with glibc,
this information is correct. Here is the result of grep:
/usr/include/unistd.h:extern long int syscall (long int __sysno, ...)
__THROW;
unistd.h is included implicitly via qemu-common.h,
so if you don't get the declaration, there is a buggy
implementation of the header files in musl:
http://git.musl-libc.org/cgit/musl/plain/include/unistd.h
does not match the Linux documentation.
Please report this to the musl developers.
Regards
Stefan Weil
next prev parent reply other threads:[~2012-12-10 17:44 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-10 6:59 [Qemu-trivial] [PATCH 1/4] fix implicit declaration of syscall() in linux-user/mmap.c John Spencer
2012-12-10 6:59 ` [Qemu-devel] " John Spencer
2012-12-10 6:59 ` [Qemu-trivial] [PATCH 2/4] fix build error on ARM due to wrong glibc check John Spencer
2012-12-10 6:59 ` [Qemu-devel] " John Spencer
2012-12-10 17:46 ` [Qemu-trivial] " Stefan Weil
2012-12-10 17:46 ` Stefan Weil
2012-12-18 16:23 ` [Qemu-trivial] " Stefan Hajnoczi
2012-12-18 16:23 ` [Qemu-devel] " Stefan Hajnoczi
2012-12-10 6:59 ` [Qemu-trivial] [PATCH 3/4] fix implicit declaration of syscall() in linux-user/syscall.c John Spencer
2012-12-10 6:59 ` [Qemu-devel] " John Spencer
2012-12-10 17:49 ` [Qemu-trivial] " Stefan Weil
2012-12-10 17:49 ` Stefan Weil
2012-12-11 1:23 ` [Qemu-trivial] " John Spencer
2012-12-11 1:23 ` John Spencer
2012-12-11 6:07 ` [Qemu-trivial] " Stefan Weil
2012-12-11 6:07 ` Stefan Weil
2012-12-10 6:59 ` [Qemu-trivial] [PATCH 4/4] linux-user/syscall.c: remove wrong forward decl of setgroups() John Spencer
2012-12-10 6:59 ` [Qemu-devel] " John Spencer
2012-12-10 17:47 ` [Qemu-trivial] " Stefan Weil
2012-12-10 17:47 ` Stefan Weil
2012-12-18 16:23 ` [Qemu-trivial] " Stefan Hajnoczi
2012-12-18 16:23 ` [Qemu-devel] " Stefan Hajnoczi
2012-12-10 17:44 ` Stefan Weil [this message]
2012-12-10 17:44 ` [Qemu-devel] [PATCH 1/4] fix implicit declaration of syscall() in linux-user/mmap.c Stefan Weil
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=50C61F88.2040005@weilnetz.de \
--to=sw@weilnetz.de \
--cc=maillist-qemu@barfooze.de \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.