mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 14:37:08 +00:00
Implement thread->where (backtrace)
This commit is contained in:
parent
5b097f62ae
commit
7a5ba3bf6a
4 changed files with 16 additions and 2 deletions
|
|
@ -68,5 +68,7 @@ struct ProcessOps {
|
|||
|
||||
SysResult (*processNeeded)(Thread *thread);
|
||||
SysResult (*registerEhFrames)(Thread *thread);
|
||||
|
||||
void (*where)(Thread *);
|
||||
};
|
||||
} // namespace orbis
|
||||
|
|
|
|||
|
|
@ -32,6 +32,9 @@ struct Thread {
|
|||
uint64_t evfResultPattern;
|
||||
uint64_t evfIsCancelled;
|
||||
|
||||
// Print backtrace
|
||||
void where();
|
||||
|
||||
// FIXME: implement thread destruction
|
||||
void incRef() {}
|
||||
void decRef() {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue