blob: 07daf7ab9e9b58ec66048474e3af2e3358bb8a74 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/// @file
#include "../vortex.h"
#include "v1/vortex.h"
#include "v1/allocate.h"
/* u3v_v1_reclaim(): clear ad-hoc persistent caches to reclaim memory.
*/
void
u3v_v1_reclaim(void)
{
// clear the u3v_wish cache
//
u3a_v1_lose(u3A_v1->yot);
u3A_v1->yot = u3_nul;
}
|