mirror of
https://gitee.com/bianbu-linux/tcm
synced 2025-04-23 21:57:07 -04:00
24 lines
716 B
C
24 lines
716 B
C
/*
|
|
* 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-2012 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. */
|
|
|
|
// typedef long unsigned int off_t;
|
|
|
|
extern int use_phys;
|
|
extern off_t physaddrbase;
|
|
|