mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-13 10:27:05 +02: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;
|
|
}
|