Let memory stat functions return uint64_t
This commit is contained in:
parent
c21ca98e4c
commit
496d8f19fc
4 changed files with 14 additions and 14 deletions
|
|
@ -592,17 +592,17 @@ struct Time {
|
|||
};
|
||||
*/
|
||||
|
||||
int _OS::get_static_memory_usage() const {
|
||||
uint64_t _OS::get_static_memory_usage() const {
|
||||
|
||||
return OS::get_singleton()->get_static_memory_usage();
|
||||
}
|
||||
|
||||
int _OS::get_static_memory_peak_usage() const {
|
||||
uint64_t _OS::get_static_memory_peak_usage() const {
|
||||
|
||||
return OS::get_singleton()->get_static_memory_peak_usage();
|
||||
}
|
||||
|
||||
int _OS::get_dynamic_memory_usage() const {
|
||||
uint64_t _OS::get_dynamic_memory_usage() const {
|
||||
|
||||
return OS::get_singleton()->get_dynamic_memory_usage();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue