2014-11-25 16:00:58 -05:00
|
|
|
//===-- IOObject.cpp --------------------------------------------*- C++ -*-===//
|
|
|
|
|
//
|
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
|
//
|
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
2017-07-01 09:24:58 -04:00
|
|
|
#include "lldb/Utility/IOObject.h"
|
2014-11-25 16:00:58 -05:00
|
|
|
|
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
|
|
const IOObject::WaitableHandle IOObject::kInvalidHandleValue = -1;
|
2017-07-01 09:24:58 -04:00
|
|
|
IOObject::~IOObject() = default;
|