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

Replaced some CONFIG_* with UML_CONFIG_*.

parent 6ec67d6a
......@@ -8,11 +8,11 @@
#include "uml-config.h"
#ifdef CONFIG_MODE_TT
#ifdef UML_CONFIG_MODE_TT
#include "ptrace-tt.h"
#endif
#ifdef CONFIG_MODE_SKAS
#ifdef UML_CONFIG_MODE_SKAS
#include "ptrace-skas.h"
#endif
......@@ -23,10 +23,10 @@ struct uml_pt_regs {
long syscall;
int is_user;
union {
#ifdef CONFIG_MODE_TT
#ifdef UML_CONFIG_MODE_TT
void *tt;
#endif
#ifdef CONFIG_MODE_SKAS
#ifdef UML_CONFIG_MODE_SKAS
struct {
unsigned long regs[HOST_FRAME_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