1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 19:57:45 +00:00

LibC: Log calls to getrusage

This commit is contained in:
Itamar 2020-05-05 14:09:44 +03:00 committed by Andreas Kling
parent b184f12aaf
commit dca0483e9a

View file

@ -24,6 +24,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
#include <AK/LogStream.h>
#include <assert.h> #include <assert.h>
#include <sys/resource.h> #include <sys/resource.h>
#include <ulimit.h> #include <ulimit.h>
@ -42,6 +43,7 @@ int getrusage(int who, struct rusage* usage)
{ {
(void)who; (void)who;
(void)usage; (void)usage;
dbg() << "LibC: getrusage is not implemented";
return -1; return -1;
} }
} }