summaryrefslogtreecommitdiffstats
path: root/core/bind/core_bind.h
diff options
context:
space:
mode:
authorPedro J. Estébanez <pedrojrulez@gmail.com>2019-01-30 19:07:46 +0100
committerPedro J. Estébanez <pedrojrulez@gmail.com>2019-01-30 19:07:46 +0100
commit496d8f19fcad1acd466161ad389552ee93b70d87 (patch)
treeb645ec092239bbe01d73edaae0da0f4131d21ed7 /core/bind/core_bind.h
parentc21ca98e4c6e6228adefcc696b3ff6a1104c678e (diff)
downloadredot-engine-496d8f19fcad1acd466161ad389552ee93b70d87.tar.gz
Let memory stat functions return uint64_t
Diffstat (limited to 'core/bind/core_bind.h')
-rw-r--r--core/bind/core_bind.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/bind/core_bind.h b/core/bind/core_bind.h
index a4b4629037..1c8b985d73 100644
--- a/core/bind/core_bind.h
+++ b/core/bind/core_bind.h
@@ -283,9 +283,9 @@ public:
uint64_t get_system_time_secs() const;
uint64_t get_system_time_msecs() const;
- int get_static_memory_usage() const;
- int get_static_memory_peak_usage() const;
- int get_dynamic_memory_usage() const;
+ uint64_t get_static_memory_usage() const;
+ uint64_t get_static_memory_peak_usage() const;
+ uint64_t get_dynamic_memory_usage() const;
void delay_usec(uint32_t p_usec) const;
void delay_msec(uint32_t p_msec) const;