mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-22 10:19:20 +00:00
LibC: Log calls to getrusage
This commit is contained in:
parent
b184f12aaf
commit
dca0483e9a
Notes:
sideshowbarker
2024-07-19 06:54:01 +09:00
Author: https://github.com/itamar8910
Commit: dca0483e9a
Pull-request: https://github.com/SerenityOS/serenity/pull/2118
Reviewed-by: https://github.com/awesomekling
1 changed files with 2 additions and 0 deletions
|
@ -24,6 +24,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <AK/LogStream.h>
|
||||
#include <assert.h>
|
||||
#include <sys/resource.h>
|
||||
#include <ulimit.h>
|
||||
|
@ -42,6 +43,7 @@ int getrusage(int who, struct rusage* usage)
|
|||
{
|
||||
(void)who;
|
||||
(void)usage;
|
||||
dbg() << "LibC: getrusage is not implemented";
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue