blob: 1a788401c7a920b2d5b541aa31ae41efc94f1e1e [file] [log] [blame]
# Copyright 2025 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from __future__ import annotations
import dataclasses
@dataclasses.dataclass(frozen=True)
class ProcessMeminfo:
pid: int
name: str
pss_total: int
rss_total: int
swap_total: int