blob: 5e353d3446e5a4e4881769acfe0f560bcd221f96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/// @file
#include "v1/manage.h"
#include "v1/allocate.h"
#include "v1/hashtable.h"
#include "v1/jets.h"
#include "v1/nock.h"
#include "v1/vortex.h"
/* u3m_v1_reclaim: clear persistent caches to reclaim memory
*/
void
u3m_v1_reclaim(void)
{
u3v_v1_reclaim();
u3j_v1_reclaim();
u3n_v1_reclaim();
u3a_v1_reclaim();
}
|