2016-01-28 14:52:40 +01:00
|
|
|
/** @file
|
|
|
|
|
*
|
|
|
|
|
* @par History
|
|
|
|
|
* - 2006/09/23 Shinigami: Script_Cycles, Sleep_Cycles and Script_passes uses 64bit now
|
|
|
|
|
*/
|
2016-02-11 22:54:43 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "escriptv.h"
|
|
|
|
|
|
2018-01-29 21:55:48 +01:00
|
|
|
#include "../clib/rawtypes.h"
|
|
|
|
|
|
2026-01-17 10:30:21 +01:00
|
|
|
|
|
|
|
|
namespace Pol::Bscript
|
2016-02-19 19:26:35 +01:00
|
|
|
{
|
|
|
|
|
int include_debug;
|
2016-02-11 22:54:43 +01:00
|
|
|
|
2016-02-19 19:26:35 +01:00
|
|
|
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;
|
2026-01-17 10:30:21 +01:00
|
|
|
} // namespace Pol::Bscript
|