blob: a5c059019ff37aebcf850d62dccc5850ac6cb8f8 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef GARNET_LIB_PERFMON_TYPES_H_
#define GARNET_LIB_PERFMON_TYPES_H_
#include <string>
namespace perfmon {
enum class ReaderStatus {
kOk,
kNoMoreRecords,
kHeaderError,
kRecordError,
kIoError,
kInvalidArgs,
};
std::string ReaderStatusToString(ReaderStatus status);
} // namespace perfmon
#endif // GARNET_LIB_PERFMON_TYPES_H_