Kernel: Rename conflicting kernel object names.
These are names that can often conflict with system headers in ports. Let's just simplify by prefixing with PSP. No actual functional/code changes, just syntax and names.
This commit is contained in:
parent
a540274435
commit
7d36b70a8e
11 changed files with 327 additions and 418 deletions
|
@ -21,7 +21,7 @@
|
|||
|
||||
class KernelThreadDebugInterface : public MIPSDebugInterface {
|
||||
public:
|
||||
KernelThreadDebugInterface(MIPSState *c, ThreadContext &t) : MIPSDebugInterface(c), ctx(t) {
|
||||
KernelThreadDebugInterface(MIPSState *c, PSPThreadContext &t) : MIPSDebugInterface(c), ctx(t) {
|
||||
}
|
||||
|
||||
unsigned int getPC() override { return ctx.pc; }
|
||||
|
@ -86,5 +86,5 @@ public:
|
|||
}
|
||||
|
||||
protected:
|
||||
ThreadContext &ctx;
|
||||
PSPThreadContext &ctx;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue