mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
10 lines
193 B
C++
10 lines
193 B
C++
|
|
#include <stdio.h>
|
||
|
|
#include <Kernel/Syscall.h>
|
||
|
|
|
||
|
|
int main(int, char**)
|
||
|
|
{
|
||
|
|
int purged_page_count = syscall(SC_purge);
|
||
|
|
printf("Purged page count: %d\n", purged_page_count);
|
||
|
|
return 0;
|
||
|
|
}
|