-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.cpp
More file actions
30 lines (25 loc) · 760 Bytes
/
main.cpp
File metadata and controls
30 lines (25 loc) · 760 Bytes
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
/******************************************************************************
* PROJECT: LiveEVM
* Author: Adam Nickle
*
* Senior Project 2014
*****************************************************************************/
#include <iostream>
//#include "classes/Params.hpp"
//#include "classes/Amplifier.hpp"
#include "classes/Recorder.hpp"
#include "constants.hpp"
//Instantiate Globals
bool Running[T_COUNT] = {0};
bool Ready[T_COUNT] = {0};
std::mutex m[T_COUNT];
std::condition_variable cnd[T_COUNT];
std::thread* Threads[T_COUNT];
/**********************************************************
* Function: main()
*********************************************************/
int main() {
Recorder* rec = new Recorder();
rec->run();
return 0;
}