mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-15 04:17:57 -05:00
kernel/process_capability: Handle debug capability flags
This commit is contained in:
@ -165,6 +165,17 @@ public:
|
||||
return kernel_version;
|
||||
}
|
||||
|
||||
/// Whether or not this process can be debugged.
|
||||
bool IsDebuggable() const {
|
||||
return is_debuggable;
|
||||
}
|
||||
|
||||
/// Whether or not this process can forcibly debug another
|
||||
/// process, even if that process is not considered debuggable.
|
||||
bool CanForceDebug() const {
|
||||
return can_force_debug;
|
||||
}
|
||||
|
||||
private:
|
||||
/// Attempts to parse a given sequence of capability descriptors.
|
||||
///
|
||||
|
Reference in New Issue
Block a user