MemTesterNX: A userspace utility for testing memory faults and stability based on [memtester](https://pyropus.ca/software/memtester/)

This commit is contained in:
KazushiM
2021-10-25 22:53:44 +08:00
parent e947b47598
commit 4861bd0d96
11 changed files with 1480 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/*
* Very simple (yet, for some reason, very effective) memory tester.
* Originally by Simon Kirby <sim@stormix.com> <sim@neato.org>
* Version 2 by Charles Cazabon <charlesc-memtester@pyropus.ca>
* Version 3 not publicly released.
* Version 4 rewrite:
* Copyright (C) 2004-2020 Charles Cazabon <charlesc-memtester@pyropus.ca>
* Licensed under the terms of the GNU General Public License version 2 (only).
* See the file COPYING for details.
*
* This file contains the declarations for external variables from the main file.
* See other comments in that file.
*
*/
#include <sys/types.h>
/* extern declarations. */
extern int use_phys;
extern off_t physaddrbase;