mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-12-15 18:11:53 +00:00
Rename classes and small adjustments
This commit is contained in:
@@ -98,7 +98,7 @@ static int add_list(const char *pkg, const char *proc = "") {
|
||||
|
||||
// Critical region
|
||||
{
|
||||
MutexGuard lock(monitor_lock);
|
||||
mutex_guard lock(monitor_lock);
|
||||
hide_set.emplace(pkg, proc);
|
||||
}
|
||||
|
||||
@@ -119,7 +119,7 @@ int add_list(int client) {
|
||||
static int rm_list(const char *pkg, const char *proc = "") {
|
||||
{
|
||||
// Critical region
|
||||
MutexGuard lock(monitor_lock);
|
||||
mutex_guard lock(monitor_lock);
|
||||
bool remove = false;
|
||||
auto next = hide_set.begin();
|
||||
decltype(next) cur;
|
||||
|
||||
Reference in New Issue
Block a user