blob: 5e5ad03269f503e48edb43a5344792d2bddba255 [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.
#pragma once
#if defined(__Fuchsia__)
#include "src/developer/debug/shared/message_loop_zircon.h"
#else
#include "src/developer/debug/shared/message_loop_poll.h"
#endif
namespace debug_ipc {
#if defined(__Fuchsia__)
using PlatformMessageLoop = MessageLoopZircon;
#else
using PlatformMessageLoop = MessageLoopPoll;
#endif
} // namespace debug_ipc