Home
last modified time | relevance | path

Searched hist:"04 b33e21866412689f18b7ad6daf0a54d8f959a7" (Results 1 – 2 of 2) sorted by relevance

/qemu/tests/tcg/i386/
H A Dtest-i386.c04b33e21866412689f18b7ad6daf0a54d8f959a7 Wed Jun 28 20:44:52 UTC 2017 Khem Raj <raj.khem@gmail.com> Replace 'struct ucontext' with 'ucontext_t' type

glibc used to have:

typedef struct ucontext { ... } ucontext_t;

glibc now has:

typedef struct ucontext_t { ... } ucontext_t;

(See https://sourceware.org/bugzilla/show_bug.cgi?id=21457
for detail and rationale for the glibc change)

However, QEMU used "struct ucontext" in declarations. This is a
private name and compatibility cannot be guaranteed. Switch to
only using the standardized type name.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Message-id: 20170628204452.41230-1-raj.khem@gmail.com
Cc: Kamil Rytarowski <kamil@netbsd.org>
Cc: Riku Voipio <riku.voipio@iki.fi>
Cc: Laurent Vivier <laurent@vivier.eu>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
[PMM: Rewrote commit message, based mostly on the one from
Nathaniel McCallum]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
/qemu/linux-user/
H A Dsignal.c04b33e21866412689f18b7ad6daf0a54d8f959a7 Wed Jun 28 20:44:52 UTC 2017 Khem Raj <raj.khem@gmail.com> Replace 'struct ucontext' with 'ucontext_t' type

glibc used to have:

typedef struct ucontext { ... } ucontext_t;

glibc now has:

typedef struct ucontext_t { ... } ucontext_t;

(See https://sourceware.org/bugzilla/show_bug.cgi?id=21457
for detail and rationale for the glibc change)

However, QEMU used "struct ucontext" in declarations. This is a
private name and compatibility cannot be guaranteed. Switch to
only using the standardized type name.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Message-id: 20170628204452.41230-1-raj.khem@gmail.com
Cc: Kamil Rytarowski <kamil@netbsd.org>
Cc: Riku Voipio <riku.voipio@iki.fi>
Cc: Laurent Vivier <laurent@vivier.eu>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
[PMM: Rewrote commit message, based mostly on the one from
Nathaniel McCallum]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>