diff options
author | Andreas Kling <kling@serenityos.org> | 2021-07-18 01:13:34 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-07-18 01:53:04 +0200 |
commit | 9457d83986a9c4dce4a0e75a1d005aa7dd60f5cf (patch) | |
tree | c74f6434d1ed96276df14fb749ca5880033318d2 /Kernel/Syscalls/execve.cpp | |
parent | ab50a1480f340932868cfbb788210fb37da9c18f (diff) | |
download | serenity-9457d83986a9c4dce4a0e75a1d005aa7dd60f5cf.zip |
Kernel: Rename Locker => MutexLocker
Diffstat (limited to 'Kernel/Syscalls/execve.cpp')
-rw-r--r-- | Kernel/Syscalls/execve.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/Syscalls/execve.cpp b/Kernel/Syscalls/execve.cpp index 3c79f34069..6efb888f6d 100644 --- a/Kernel/Syscalls/execve.cpp +++ b/Kernel/Syscalls/execve.cpp @@ -525,7 +525,7 @@ KResult Process::do_exec(NonnullRefPtr<FileDescription> main_program_description // We commit to the new executable at this point. There is no turning back! // Prevent other processes from attaching to us with ptrace while we're doing this. - Locker ptrace_locker(ptrace_lock()); + MutexLocker ptrace_locker(ptrace_lock()); // Disable profiling temporarily in case it's running on this process. auto was_profiling = m_profiling; |