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
Notes: sideshowbarker 2024-07-19 06:54:01 +09:00

View File

@ -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;
}
}