mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-29 14:14:45 +03: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: https://github.com/SerenityOS/serenity/commit/dca0483e9a0 Pull-request: https://github.com/SerenityOS/serenity/pull/2118 Reviewed-by: https://github.com/awesomekling
@ -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…
Reference in New Issue
Block a user