mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 12:20:54 -05:00
(A number of files not required for the FreeBSD build have been removed.) Sponsored by: DARPA, AFRL
41 lines
995 B
C++
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
|