3622634bc6
Some of them use guard symbol TARGET_SYSCALL_H, but we also have CRIS_SYSCALL_H, MICROBLAZE_SYSCALLS_H, TILEGX_SYSCALLS_H and __UC32_SYSCALL_H__. They all upset scripts/clean-header-guards.pl. Reuse of the same guard symbol TARGET_SYSCALL_H in multiple headers is okay as long as they cannot be included together. The script can't tell, so it warns. The script dislikes the other guard symbols, too. They don't match their file name (they should, to make guard collisions less likely), and __UC32_SYSCALL_H__ is a reserved identifier. Clean them all up: use guard symbol $target_TARGET_SYSCALL_H for linux-user/$target/target_sycall.h. Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Richard Henderson <rth@twiddle.net>
35 lines
813 B
C
35 lines
813 B
C
#ifndef S390X_TARGET_SYSCALL_H
|
|
#define S390X_TARGET_SYSCALL_H
|
|
|
|
/* this typedef defines how a Program Status Word looks like */
|
|
typedef struct {
|
|
abi_ulong mask;
|
|
abi_ulong addr;
|
|
} __attribute__ ((aligned(8))) target_psw_t;
|
|
|
|
/*
|
|
* The pt_regs struct defines the way the registers are stored on
|
|
* the stack during a system call.
|
|
*/
|
|
|
|
#define TARGET_NUM_GPRS 16
|
|
|
|
struct target_pt_regs {
|
|
abi_ulong args[1];
|
|
target_psw_t psw;
|
|
abi_ulong gprs[TARGET_NUM_GPRS];
|
|
abi_ulong orig_gpr2;
|
|
unsigned short ilen;
|
|
unsigned short trap;
|
|
};
|
|
|
|
#define UNAME_MACHINE "s390x"
|
|
#define UNAME_MINIMUM_RELEASE "2.6.32"
|
|
|
|
#define TARGET_CLONE_BACKWARDS2
|
|
#define TARGET_MINSIGSTKSZ 2048
|
|
#define TARGET_MLOCKALL_MCL_CURRENT 1
|
|
#define TARGET_MLOCKALL_MCL_FUTURE 2
|
|
|
|
#endif /* S390X_TARGET_SYSCALL_H */
|