Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add page faults #3

Open
andrewrk opened this issue Jun 14, 2023 · 0 comments
Open

add page faults #3

andrewrk opened this issue Jun 14, 2023 · 0 comments
Labels
enhancement New feature or request

Comments

@andrewrk
Copy link
Owner

This is part of rusage. Potentially helpful snippet:

pub inline fn getPageFaults(rus: ResourceUsageStatistics) ?usize {
    switch (builtin.os.tag) {
        .linux, .macos, .ios => {
            if (rus.rusage) |ru| {
                return @intCast(usize, ru.ru_minflt);
            } else {
                return null;
            }
        },
        .windows => {
            if (rus.rusage) |ru| {
                return ru.PageFaultCount;
            } else {
                return null;
            }
        },
        else => return null,
    }
}
@andrewrk andrewrk added the enhancement New feature or request label Jun 14, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant