opnsense-src/include/lldb/Core/StreamAsynchronousIO.h
Ed Maste 866dcdacfe Import lldb as of SVN r201577 (git 2bdc2f6)
(A number of files not required for the FreeBSD build have been removed.)

Sponsored by:	DARPA, AFRL
2014-02-18 16:23:10 +00:00

41 lines
995 B
C++

//===-- StreamAsynchronousIO.h -----------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_StreamAsynchronousIO_h_
#define liblldb_StreamAsynchronousIO_h_
#include <string>
#include "lldb/Core/Stream.h"
namespace lldb_private {
class StreamAsynchronousIO :
public Stream
{
public:
StreamAsynchronousIO (Broadcaster &broadcaster, uint32_t broadcast_event_type);
virtual ~StreamAsynchronousIO ();
virtual void
Flush ();
virtual size_t
Write (const void *src, size_t src_len);
private:
Broadcaster &m_broadcaster;
uint32_t m_broadcast_event_type;
std::string m_accumulated_data;
};
} // namespace lldb_private
#endif // #ifndef liblldb_StreamAsynchronousIO_h