/* SPDX-License-Identifier: GPL-2.0 */ /* * Very simple but very effective user-space memory tester. * Originally by Simon Kirby * Version 2 by Charles Cazabon * Version 3 not publicly released. * Version 4 rewrite: * Copyright (C) 2004-2010 Charles Cazabon * Licensed under the terms of the GNU General Public License version 2 (only). * See the file COPYING for details. * * This file contains typedefs, structure, and union definitions. * */ #ifndef __MEMTESTER_TYPES_H #define __MEMTESTER_TYPES_H typedef unsigned long ul; typedef unsigned long long ull; typedef unsigned long volatile ulv; typedef unsigned char volatile u8v; typedef unsigned short volatile u16v; struct test { char *name; int (*fp)(ulv *bufa, ulv *bufb, size_t count); }; #endif /* __MEMTESTER_TYPES_H */