mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-03 23:25:20 +00:00
Kernel: Use Process::require_no_promises instead of REQUIRE_NO_PROMISES
This change lays the foundation for making the require_promise return an error hand handling the process abort outside of the syscall implementations, to avoid cases where we would leak resources. It also has the advantage that it makes removes a gs pointer read to look up the current thread, then process for every syscall. We can instead go through the Process this pointer in most cases.
This commit is contained in:
committed by
Andreas Kling
parent
bad6d50b86
commit
0f7fe1eb08
@@ -19,7 +19,7 @@ u64 g_profiling_event_mask;
|
||||
ErrorOr<FlatPtr> Process::sys$profiling_enable(pid_t pid, u64 event_mask)
|
||||
{
|
||||
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
||||
REQUIRE_NO_PROMISES;
|
||||
require_no_promises();
|
||||
|
||||
if (pid == -1) {
|
||||
if (!is_superuser())
|
||||
@@ -69,7 +69,7 @@ ErrorOr<FlatPtr> Process::sys$profiling_enable(pid_t pid, u64 event_mask)
|
||||
ErrorOr<FlatPtr> Process::sys$profiling_disable(pid_t pid)
|
||||
{
|
||||
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
||||
REQUIRE_NO_PROMISES;
|
||||
require_no_promises();
|
||||
|
||||
if (pid == -1) {
|
||||
if (!is_superuser())
|
||||
@@ -99,7 +99,7 @@ ErrorOr<FlatPtr> Process::sys$profiling_disable(pid_t pid)
|
||||
ErrorOr<FlatPtr> Process::sys$profiling_free_buffer(pid_t pid)
|
||||
{
|
||||
VERIFY_PROCESS_BIG_LOCK_ACQUIRED(this)
|
||||
REQUIRE_NO_PROMISES;
|
||||
require_no_promises();
|
||||
|
||||
if (pid == -1) {
|
||||
if (!is_superuser())
|
||||
|
||||
Reference in New Issue
Block a user