blob: 829b0f2697a9f842d79d2e39942ec08c52b235e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team, 2008-2017
*
* Support for fast binary event logging.
*
* ---------------------------------------------------------------------------*/
#pragma once
#include <stddef.h>
#include <stdbool.h>
#include "Rts.h"
/*
* Abstraction for writing eventlog data.
*/
typedef struct {
// Initialize an EventLogWriter (may be NULL)
void (* initEventLogWriter) (void);
// Write a series of events
bool (* writeEventLog) (void *eventlog, size_t eventlog_size);
// Flush possibly existing buffers (may be NULL)
void (* flushEventLog) (void);
// Close an initialized EventLogOutput (may be NULL)
void (* stopEventLogWriter) (void);
} EventLogWriter;
/*
* An EventLogWriter which writes eventlogs to
* a file `program.eventlog`.
*/
extern const EventLogWriter FileEventLogWriter;
|