blob: f9cb25fe623d25423932182fdd09f79642ce1046 (
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
38
39
40
|
/* -----------------------------------------------------------------------------
*
* (c) The GHC Team, 2008-2017
*
* Support for fast binary event logging.
*
* ---------------------------------------------------------------------------*/
#ifndef EVENTLOG_WRITER_H
#define EVENTLOG_WRITER_H
#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;
#endif /* EVENTLOG_WRITER_H */
|