mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
Authors are not forced to use the clang-format setting, but should atleast be inspired by the style. The only thing which is now not allowed are tabs for ident/alignment!
31 lines
528 B
C++
31 lines
528 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
|
|
{
|
|
namespace 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;
|
|
}
|
|
}
|
|
#endif
|