File diff r10959:4b345c618e31 → r10960:e97ebf9cf99b
src/thread_pthread.cpp
Show inline comments
 
/* $Id$ */
 

	
 
/** @file thread_pthread.cpp POSIX pthread implementation of Threads. */
 

	
 
#include "stdafx.h"
 
#include "thread.h"
 
#include "debug.h"
 
#include "core/alloc_func.hpp"
 
#include <stdlib.h>
 
#include <pthread.h>
 
#include <semaphore.h>
 
#include <unistd.h>
 

	
 
/**
 
 * POSIX pthread version for ThreadObject.
 
 */
 
class ThreadObject_pthread : public ThreadObject {
 
private: