blob: 8dc3b872f2c59f12cdb7e0987e4de16e39495ea8 (
plain) (
blame)
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
|
//===-- klee-replay.h ------------------------------------------*- C++ -*--===//
//
// The KLEE Symbolic Virtual Machine
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef KLEE_REPLAY_H
#define KLEE_REPLAY_H
#define _LARGEFILE64_SOURCE
#define _FILE_OFFSET_BITS 64
#include "klee/Config/config.h"
// FIXME: This is a hack.
#include "../../runtime/POSIX/fd.h"
#include <sys/time.h>
// temporary directory used for replay
extern char replay_dir[];
void replay_create_files(exe_file_system_t *exe_fs);
void replay_delete_files();
void process_status(int status,
time_t elapsed,
const char *pfx)
__attribute__((noreturn));
#endif
|