SDL 3.0
SDL_test_memory.h
Go to the documentation of this file.
1/*
2 Simple DirectMedia Layer
3 Copyright (C) 1997-2024 Sam Lantinga <slouken@libsdl.org>
4
5 This software is provided 'as-is', without any express or implied
6 warranty. In no event will the authors be held liable for any damages
7 arising from the use of this software.
8
9 Permission is granted to anyone to use this software for any purpose,
10 including commercial applications, and to alter it and redistribute it
11 freely, subject to the following restrictions:
12
13 1. The origin of this software must not be misrepresented; you must not
14 claim that you wrote the original software. If you use this software
15 in a product, an acknowledgment in the product documentation would be
16 appreciated but is not required.
17 2. Altered source versions must be plainly marked as such, and must not be
18 misrepresented as being the original software.
19 3. This notice may not be removed or altered from any source distribution.
20*/
21
22/**
23 * \file SDL_test_memory.h
24 *
25 * Memory tracking related functions of SDL test framework.
26 *
27 * This code is a part of the SDL test library, not the main SDL library.
28 */
29
30#ifndef SDL_test_memory_h_
31#define SDL_test_memory_h_
32
33#include <SDL3/SDL_stdinc.h>
34
35#include <SDL3/SDL_begin_code.h>
36/* Set up for C function definitions, even when using C++ */
37#ifdef __cplusplus
38extern "C" {
39#endif
40
41/**
42 * Start tracking SDL memory allocations
43 *
44 * \note This should be called before any other SDL functions for complete tracking coverage
45 */
46void SDLCALL SDLTest_TrackAllocations(void);
47
48/**
49 * Fill allocations with random data
50 *
51 * \note This implicitly calls SDLTest_TrackAllocations()
52 */
53void SDLCALL SDLTest_RandFillAllocations(void);
54
55/**
56 * Print a log of any outstanding allocations
57 *
58 * \note This can be called after SDL_Quit()
59 */
60void SDLCALL SDLTest_LogAllocations(void);
61
62/* Ends C function definitions when using C++ */
63#ifdef __cplusplus
64}
65#endif
66#include <SDL3/SDL_close_code.h>
67
68#endif /* SDL_test_memory_h_ */
void SDLTest_LogAllocations(void)
void SDLTest_TrackAllocations(void)
void SDLTest_RandFillAllocations(void)