1*a580b014SDimitry Andric //===-- IOObject.cpp --------------------------------------------*- C++ -*-===// 2*a580b014SDimitry Andric // 3*a580b014SDimitry Andric // The LLVM Compiler Infrastructure 4*a580b014SDimitry Andric // 5*a580b014SDimitry Andric // This file is distributed under the University of Illinois Open Source 6*a580b014SDimitry Andric // License. See LICENSE.TXT for details. 7*a580b014SDimitry Andric // 8*a580b014SDimitry Andric //===----------------------------------------------------------------------===// 9*a580b014SDimitry Andric 10*a580b014SDimitry Andric #include "lldb/Utility/IOObject.h" 11*a580b014SDimitry Andric 12*a580b014SDimitry Andric using namespace lldb_private; 13*a580b014SDimitry Andric 14*a580b014SDimitry Andric const IOObject::WaitableHandle IOObject::kInvalidHandleValue = -1; 15*a580b014SDimitry Andric IOObject::~IOObject() = default; 16