diff options
Diffstat (limited to 'include/lldb/Utility/IOObject.h')
-rw-r--r-- | include/lldb/Utility/IOObject.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/include/lldb/Utility/IOObject.h b/include/lldb/Utility/IOObject.h index 61f288183850..1640200a01d9 100644 --- a/include/lldb/Utility/IOObject.h +++ b/include/lldb/Utility/IOObject.h @@ -1,9 +1,8 @@ //===-- IOObject.h ----------------------------------------------*- C++ -*-===// // -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// @@ -20,10 +19,10 @@ namespace lldb_private { class IOObject { public: - typedef enum { + enum FDType { eFDTypeFile, // Other FD requiring read/write eFDTypeSocket, // Socket requiring send/recv - } FDType; + }; // TODO: On Windows this should be a HANDLE, and wait should use // WaitForMultipleObjects |