Skip to content

Commit

Permalink
linux-user/sparc: Rename target_errno.h -> target_errno_defs.h
Browse files Browse the repository at this point in the history
We want to have one generic target_errno.h (API to access target
errno), and will add target errno definitions in target_errno_defs.h.
The sparc target already have its errnos in an header, simply rename
it.

Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210708170550.1846343-3-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
  • Loading branch information
philmd authored and vivier committed Jul 12, 2021
1 parent f7588fe commit f007472
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
@@ -1,5 +1,5 @@
#ifndef SPARC_TARGET_ERRNO_H
#define SPARC_TARGET_ERRNO_H
#ifndef SPARC_TARGET_ERRNO_DEFS_H
#define SPARC_TARGET_ERRNO_DEFS_H

/* Target errno definitions taken from asm-sparc/errno.h */
#undef TARGET_EWOULDBLOCK
Expand Down
2 changes: 1 addition & 1 deletion linux-user/sparc/target_syscall.h
@@ -1,7 +1,7 @@
#ifndef SPARC_TARGET_SYSCALL_H
#define SPARC_TARGET_SYSCALL_H

#include "target_errno.h"
#include "target_errno_defs.h"

#if defined(TARGET_SPARC64) && !defined(TARGET_ABI32)
struct target_pt_regs {
Expand Down

0 comments on commit f007472

Please sign in to comment.