blob: 57a73c8470058de4093417211956f3e2888a0ce6 [file] [log] [blame]
// Copyright 2020 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_MEMORY_H_
#define RUNTIME_PROBE_FUNCTIONS_MEMORY_H_
#include "runtime_probe/probe_function.h"
namespace runtime_probe {
class MemoryFunction : public PrivilegedProbeFunction {
using PrivilegedProbeFunction::PrivilegedProbeFunction;
public:
NAME_PROBE_FUNCTION("memory");
private:
DataType EvalImpl() const override;
};
} // namespace runtime_probe
#endif // RUNTIME_PROBE_FUNCTIONS_MEMORY_H_