lkml.org 
[lkml]   [1998]   [Aug]   [21]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: Cyrix and the 2.0.35-pre6
On 21 Aug 1998, Turbo Fredriksson wrote:

> Hetz Ben-Hamo <hetzmail@mail.heunique.com> wrote:
>
> > I would suggest to you to check your memory with some good old DOS based
> > programs (I can recommend norton utility 6 or 5 if I'm not mistaken).
>
> I don't have DOS nore windows (or any other os, or what ever). This is a Linux-
> only machine... And I don't know anyone here that have DOS and NU...
>
> Is there no Linux software that's as good? I've tried 'memtest', but that
> doesn't say anything wrong...
>
>
> --
> -----------------------------------------------------------------------
> Turbo __ _ Debian GNU Unix _IS_ user friendly - it's just
> ^^^^^ / /(_)_ __ _ ___ __ selective about who its friends are
> / / | | '_ \| | | \ \/ / papadoc.nocrew.org
> _ /// / /__| | | | | |_| |> < Turbo Fredriksson turbo@tripnet.se
> \\\/ \____/_|_| |_|\__,_/_/\_\ Surrey/B.C./Canada (604)572-3523
> Debian Certified Linux Developer PGP#788CD1A9 www5.tripnet.se/~turbo
> ------- PGP: B7 92 93 0E 06 94 D6 22 98 1F 0B 5B FE 33 A1 0B --------
> Serbian Ft. Bragg $400 million in gold bullion Marxist Ft. Meade
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> Panama CIA assassination ammunition bomb Semtex Cocaine Legion of Doom
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
> security FSF
^^^^^^^^^^^^^^
Gotta keep those Kansas City (Kansas) machines humming -encript it.

Try this over night... It might pick up something.

#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#define LEN 0x1000000 /* Adjust to use most of your RAM */
/* But not swap too much */

int main()
{
unsigned short *ptr, *org;
size_t i;

if((ptr = malloc (LEN * sizeof(short))) != NULL)
{
org = ptr;
for(;;)
{
ptr = org;
for(i=0;i < LEN; i++)
*ptr++ = (unsigned short) i;
ptr = org;
for(i=0;i < LEN; i++)
*ptr++ ^= 0x5555;
ptr = org;
for(i=0;i < LEN; i++)
*ptr++ ^= 0xAAAA;
ptr = org;
for(i=0;i < LEN; i++)
*ptr++ ^= 0x55AA;
ptr = org;
for(i=0;i < LEN; i++)
*ptr++ ^= 0xAA55;

ptr = org;
for(i=0;i < LEN; i++)
*ptr++ ^= 0x5555;
ptr = org;
for(i=0;i < LEN; i++)
*ptr++ ^= 0xAAAA;
ptr = org;
for(i=0;i < LEN; i++)
*ptr++ ^= 0x55AA;
ptr = org;
for(i=0;i < LEN; i++)
*ptr++ ^= 0xAA55;
ptr = org;
for(i=0;i < LEN; i++)
if(*ptr++ != (unsigned short) i)
break;
fprintf(stdout, ".");
fflush(stdout);
}
fprintf(stderr, "Bad memory at virtual address %p\n", --ptr);
fprintf(stderr, "Sorry I don't know where it really is!\n");
free(ptr);
exit(EXIT_FAILURE);
}
else
{
fprintf(stderr,"Memory allocation failure\n");
exit(EXIT_FAILURE);
}
return /*@notreached@*/ EXIT_SUCCESS;
}


Cheers,
Dick Johnson
***** FILE SYSTEM WAS MODIFIED *****

Presidents take credit for good events during their
administration and other events are blamed upon their
predecessors. So Clinton can take credit for Viagra and the
problem with the girl and candy can be blamed upon Reagan
and his jelly beans.

Penguin : Linux version 2.1.115 on an i586 machine (66.15 BogoMips).
Warning : It's hard to remain at the trailing edge of technology.


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.altern.org/andrebalsa/doc/lkml-faq.html

\
 
 \ /
  Last update: 2005-03-22 13:44    [W:0.161 / U:0.096 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site