blob: 37f498982c67b1847b45d0574f08219fa9a0ef78 [file] [edit]
// Copyright 2023 The ChromiumOS Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef RUNTIME_PROBE_FUNCTIONS_MMC_HOST_H_
#define RUNTIME_PROBE_FUNCTIONS_MMC_HOST_H_
#include "runtime_probe/probe_function.h"
namespace runtime_probe {
// Probe mmc host components.
class MmcHostFunction : public PrivilegedProbeFunction {
using PrivilegedProbeFunction::PrivilegedProbeFunction;
public:
NAME_PROBE_FUNCTION("mmc_host");
private:
// PrivilegedProbeFunction overrides.
DataType EvalImpl() const override;
};
} // namespace runtime_probe
#endif // RUNTIME_PROBE_FUNCTIONS_MMC_HOST_H_