blob: c7ad5305049abff723b0ceaed91625ecc5cbd8c2 [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 "garnet/lib/debug_ipc/helper/message_loop_zircon.h"
#else
#include "garnet/lib/debug_ipc/helper/message_loop_poll.h"
#endif
namespace debug_ipc {
#if defined(__Fuchsia__)
using PlatformMessageLoop = MessageLoopZircon;
#else
using PlatformMessageLoop = MessageLoopPoll;
#endif
} // namespace debug_ipc