| 1234567891011121314151617181920 |
- //
- // Copyright (c) 2017-2026, Manticore Software LTD (https://manticoresearch.com)
- // Copyright (c) 2001-2016, Andrew Aksyonoff
- // Copyright (c) 2008-2016, Sphinx Technologies Inc
- // All rights reserved
- //
- // This program is free software; you can redistribute it and/or modify
- // it under the terms of the GNU General Public License. You should have
- // received a copy of the GPL license along with this program; if you
- // did not, you can find it at http://www.gnu.org/
- //
- #pragma once
- #include "sphinxutils.h"
- constexpr int64_t DEFAULT_MALLOC_TRIM_PERIOD = 30*60*1000000ll;
- void ScheduleMallocTrim ();
- int PerformMallocTrim ( size_t iPad );
|