mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-03 19:54:24 +08:00
- pymol::memory_usage() - pymol::memory_available() - Replace iOS-only function get_free_memory() with pymol::memory_available()
14 lines
134 B
C++
14 lines
134 B
C++
/*
|
|
* Memory usage info
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace pymol
|
|
{
|
|
|
|
size_t memory_usage();
|
|
size_t memory_available();
|
|
|
|
} // namespace pymol
|