TDME2 1.9.121
ThreadingError.h
Go to the documentation of this file.
1#pragma once
2
3#include <iostream>
4#include <string>
5
6using std::cout;
7using std::endl;
8using std::string;
9using std::to_string;
10
11#define PTHREAD_CHECK_ERROR(NAME, MSG, FUNCTION) if (result != 0) cout << (NAME + "(" + FUNCTION + "): " + MSG + "(" + to_string(result) + ")") << endl;