Commit 394e913b authored by Jeff Dike's avatar Jeff Dike

Replaced some CONFIG_* with UML_CONFIG_*.

parent 6ec67d6a
...@@ -8,11 +8,11 @@ ...@@ -8,11 +8,11 @@
#include "uml-config.h" #include "uml-config.h"
#ifdef CONFIG_MODE_TT #ifdef UML_CONFIG_MODE_TT
#include "ptrace-tt.h" #include "ptrace-tt.h"
#endif #endif
#ifdef CONFIG_MODE_SKAS #ifdef UML_CONFIG_MODE_SKAS
#include "ptrace-skas.h" #include "ptrace-skas.h"
#endif #endif
...@@ -23,10 +23,10 @@ struct uml_pt_regs { ...@@ -23,10 +23,10 @@ struct uml_pt_regs {
long syscall; long syscall;
int is_user; int is_user;
union { union {
#ifdef CONFIG_MODE_TT #ifdef UML_CONFIG_MODE_TT
void *tt; void *tt;
#endif #endif
#ifdef CONFIG_MODE_SKAS #ifdef UML_CONFIG_MODE_SKAS
struct { struct {
unsigned long regs[HOST_FRAME_SIZE]; unsigned long regs[HOST_FRAME_SIZE];
unsigned long fp[HOST_FP_SIZE]; unsigned long fp[HOST_FP_SIZE];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment