From dca0483e9a0411e00573de2b00f8f06eafbcd11b Mon Sep 17 00:00:00 2001 From: Itamar Date: Tue, 5 May 2020 14:09:44 +0300 Subject: [PATCH] LibC: Log calls to getrusage --- Libraries/LibC/ulimit.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Libraries/LibC/ulimit.cpp b/Libraries/LibC/ulimit.cpp index cf7bdc9fb9..8bff47a578 100644 --- a/Libraries/LibC/ulimit.cpp +++ b/Libraries/LibC/ulimit.cpp @@ -24,6 +24,7 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include #include #include #include @@ -42,6 +43,7 @@ int getrusage(int who, struct rusage* usage) { (void)who; (void)usage; + dbg() << "LibC: getrusage is not implemented"; return -1; } }