mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
* all except pol * pol and includes under defines * something weird has happened * remove own folder from include searchpath * fixed remaining, adapted include style for external headers * missing include
30 lines
541 B
C++
30 lines
541 B
C++
/** @file
|
|
*
|
|
* @par History
|
|
* - 2006/09/23 Shinigami: Script_Cycles, Sleep_Cycles and Script_passes uses 64bit now
|
|
*/
|
|
|
|
|
|
#ifndef BSCRIPT_ESCRIPTV_H
|
|
#define BSCRIPT_ESCRIPTV_H
|
|
|
|
#include "clib/rawtypes.h"
|
|
#include <atomic>
|
|
|
|
|
|
namespace Pol::Bscript
|
|
{
|
|
extern int include_debug;
|
|
|
|
extern int executor_count;
|
|
|
|
extern std::atomic<int> eobject_imp_count;
|
|
extern std::atomic<int> eobject_imp_constructions;
|
|
|
|
extern int escript_program_count;
|
|
|
|
extern u64 escript_instr_cycles;
|
|
extern int escript_execinstr_calls;
|
|
} // namespace Pol::Bscript
|
|
|
|
#endif
|