1*80814287SRaphael Isemann //===-- IOObject.cpp ------------------------------------------------------===// 24ccd9954SPavel Labath // 32946cd70SChandler Carruth // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 42946cd70SChandler Carruth // See https://llvm.org/LICENSE.txt for license information. 52946cd70SChandler Carruth // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 64ccd9954SPavel Labath // 74ccd9954SPavel Labath //===----------------------------------------------------------------------===// 84ccd9954SPavel Labath 94ccd9954SPavel Labath #include "lldb/Utility/IOObject.h" 104ccd9954SPavel Labath 114ccd9954SPavel Labath using namespace lldb_private; 124ccd9954SPavel Labath 134ccd9954SPavel Labath const IOObject::WaitableHandle IOObject::kInvalidHandleValue = -1; 144ccd9954SPavel Labath IOObject::~IOObject() = default; 15