mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-24 10:12:25 -05:00
LibC: Add getpriority() and setpriority() stubs
Expected behavior left as a FIXME is outlined here: https://pubs.opengroup.org/onlinepubs/7908799/xsh/getpriority.html
This commit is contained in:
parent
a6539cc031
commit
380c42c405
Notes:
sideshowbarker
2024-07-18 03:31:30 +09:00
Author: https://github.com/gmta Commit: https://github.com/SerenityOS/serenity/commit/380c42c4056 Pull-request: https://github.com/SerenityOS/serenity/pull/10182 Reviewed-by: https://github.com/linusg ✅
3 changed files with 31 additions and 0 deletions
|
@ -22,6 +22,7 @@ set(LIBC_SOURCES
|
|||
net.cpp
|
||||
netdb.cpp
|
||||
poll.cpp
|
||||
priority.cpp
|
||||
pthread_forward.cpp
|
||||
pthread_integration.cpp
|
||||
pthread_tls.cpp
|
||||
|
|
23
Userland/Libraries/LibC/priority.cpp
Normal file
23
Userland/Libraries/LibC/priority.cpp
Normal file
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* Copyright (c) 2021, the SerenityOS developers.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <AK/Format.h>
|
||||
#include <sys/resource.h>
|
||||
|
||||
extern "C" {
|
||||
|
||||
int getpriority([[maybe_unused]] int which, [[maybe_unused]] id_t who)
|
||||
{
|
||||
dbgln("FIXME: Implement getpriority()");
|
||||
return -1;
|
||||
}
|
||||
|
||||
int setpriority([[maybe_unused]] int which, [[maybe_unused]] id_t who, [[maybe_unused]] int value)
|
||||
{
|
||||
dbgln("FIXME: Implement setpriority()");
|
||||
return -1;
|
||||
}
|
||||
}
|
|
@ -58,4 +58,11 @@ struct rlimit {
|
|||
int getrlimit(int, struct rlimit*);
|
||||
int setrlimit(int, struct rlimit const*);
|
||||
|
||||
#define PRIO_PROCESS 0
|
||||
#define PRIO_PGRP 1
|
||||
#define PRIO_USER 2
|
||||
|
||||
int getpriority(int, id_t);
|
||||
int setpriority(int, id_t, int);
|
||||
|
||||
__END_DECLS
|
||||
|
|
Loading…
Add table
Reference in a new issue