You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
558 B
31 lines
558 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: |
|
// |
|
//============================================================================= |
|
|
|
#ifndef ENGINETHREADS_H |
|
#define ENGINETHREADS_H |
|
|
|
#include "tier0/threadtools.h" |
|
#include "const.h" |
|
|
|
#if defined( _WIN32 ) |
|
#pragma once |
|
#endif |
|
|
|
#ifdef SOURCE_MT |
|
|
|
extern bool g_bThreadedEngine; |
|
extern int g_nMaterialSystemThread; |
|
extern int g_nServerThread; |
|
|
|
#define IsEngineThreaded() (g_bThreadedEngine) |
|
|
|
#else |
|
|
|
#define IsEngineThreaded() (false) |
|
|
|
#endif |
|
|
|
#endif // ENGINETHREADS_H
|
|
|