#include <cstdlib>
#include <pthread.h>
#include "core/Exceptions.h"
Go to the source code of this file.
◆ PTHREAD_EXCEPTION_CHECK
      
        
          | #define PTHREAD_EXCEPTION_CHECK | ( |  | pthread_call | ) |  | 
      
 
Value:
An Exception class for handling pthread exceptions.
Definition Thread.h:53
 
Exception wrapping for the pthread api. 
 
 
◆ PTHREAD_EXCEPTION_CHECK_NOTHROW
      
        
          | #define PTHREAD_EXCEPTION_CHECK_NOTHROW | ( |  | pthread_call | ) |  | 
      
 
Value:{int _pthread_ret_=pthread_call; if (_pthread_ret_ != 0) {fprintf(stderr, "%s:%d: Pthread error, returned %d\n", __FILE__, __LINE__, _pthread_ret_); abort();}}