mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
Kernel: Make Process::start_tracing_from API OOM safe
Modify the API so it's possible to propagate error on OOM failure. NonnullOwnPtr<T> is not appropriate for the ThreadTracer::create() API, so switch to OwnPtr<T>, use adopt_own_if_nonnull() to handle creation.
This commit is contained in:
parent
dba261f79b
commit
956314f0a1
Notes:
sideshowbarker
2024-07-18 18:14:58 +09:00
Author: https://github.com/bgianfo
Commit: 956314f0a1
Pull-request: https://github.com/SerenityOS/serenity/pull/7077
4 changed files with 12 additions and 6 deletions
|
@ -6,8 +6,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <AK/NonnullOwnPtr.h>
|
||||
#include <AK/Optional.h>
|
||||
#include <AK/OwnPtr.h>
|
||||
#include <Kernel/UnixTypes.h>
|
||||
#include <LibC/sys/arch/i386/regs.h>
|
||||
|
||||
|
@ -15,7 +15,7 @@ namespace Kernel {
|
|||
|
||||
class ThreadTracer {
|
||||
public:
|
||||
static NonnullOwnPtr<ThreadTracer> create(ProcessID tracer) { return make<ThreadTracer>(tracer); }
|
||||
static OwnPtr<ThreadTracer> create(ProcessID tracer) { return adopt_own_if_nonnull(new ThreadTracer(tracer)); }
|
||||
|
||||
ProcessID tracer_pid() const { return m_tracer_pid; }
|
||||
bool has_pending_signal(u32 signal) const { return m_pending_signals & (1 << (signal - 1)); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue