mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-04 08:36:12 +00:00
Kernel+Userland: Move prctl numbers header file to Kernel/API directory
This commit is contained in:
parent
d62c95d779
commit
e7142c482a
Notes:
sideshowbarker
2024-07-17 04:09:56 +09:00
Author: https://github.com/supercomputer7
Commit: e7142c482a
Pull-request: https://github.com/SerenityOS/serenity/pull/17599
3 changed files with 2 additions and 2 deletions
10
Kernel/API/prctl_numbers.h
Normal file
10
Kernel/API/prctl_numbers.h
Normal file
|
@ -0,0 +1,10 @@
|
|||
/*
|
||||
* Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#define PR_SET_DUMPABLE 1
|
||||
#define PR_GET_DUMPABLE 2
|
|
@ -4,8 +4,8 @@
|
|||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <Kernel/API/prctl_numbers.h>
|
||||
#include <Kernel/Process.h>
|
||||
#include <LibC/sys/prctl_numbers.h>
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue