mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
Include cleanup Reworked buildsystem (Linux only) Removed dynamic libs, Linux now again uses static linking (like windows)
25 lines
445 B
C++
25 lines
445 B
C++
/** @file
|
|
*
|
|
* @par History
|
|
* - 2006/09/23 Shinigami: Script_Cycles, Sleep_Cycles and Script_passes uses 64bit now
|
|
*/
|
|
|
|
|
|
#include "escriptv.h"
|
|
|
|
#include "../clib/rawtypes.h"
|
|
|
|
namespace Pol
|
|
{
|
|
namespace Bscript
|
|
{
|
|
int include_debug;
|
|
|
|
int executor_count = 0;
|
|
std::atomic<int> eobject_imp_count( 0 );
|
|
std::atomic<int> eobject_imp_constructions( 0 );
|
|
int escript_program_count = 0;
|
|
u64 escript_instr_cycles = 0;
|
|
int escript_execinstr_calls = 0;
|
|
}
|
|
}
|