forked from jemalloc/jemalloc-experiments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathThreadObject.h
36 lines (29 loc) · 889 Bytes
/
ThreadObject.h
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
#pragma once
#include <exception>
#include <mutex>
#include <queue>
#include <thread>
#include "Allocation.h"
class ThreadObject {
public:
// frees all allocations whose lifetime has elapsed
void free();
// free all allocations, even if the lifetime hasn't expired
void freeIgnoreLifetime();
// Add an allocation to be freed after a particular time
void addToFree(Allocation a);
// calls malloc, or return [nullptr] if the simulation should be done
void *allocate(size_t sz);
// get the current time for this threads logical clock
int currentPhase() const;
// the time that the simulation will stop (according to this thread's logical
// clock)
int maxPhase() const;
ThreadObject();
private:
std::mutex lock_;
std::priority_queue<Allocation, std::vector<Allocation>,
std::greater<Allocation>>
q_;
size_t allocSoFar_;
};