mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:07:35 +00:00
LibC: Log calls to getrusage
This commit is contained in:
parent
b184f12aaf
commit
dca0483e9a
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