mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-06-10 11:34:06 +03:00
25 lines
391 B
C++
Executable File
25 lines
391 B
C++
Executable File
// File: OSD_PThread.hxx
|
|
// Created: Fri Mar 10 17:00:00 2006
|
|
// Author: data exchange team
|
|
// <det@decex.nnov.opencascade.com>
|
|
|
|
|
|
#ifndef OSD_PThread_HeaderFile
|
|
#define OSD_PThread_HeaderFile
|
|
|
|
// Platform-dependent definition of the thread handle type
|
|
|
|
#ifdef WNT
|
|
|
|
#include <windows.h>
|
|
typedef HANDLE OSD_PThread;
|
|
|
|
#else
|
|
|
|
#include <pthread.h>
|
|
typedef pthread_t OSD_PThread;
|
|
|
|
#endif
|
|
|
|
#endif
|