Newsgroups: comp.parallel.pvm
From: andy@la.asu.edu (Andy Vaught)
Subject: Re: strange error
Organization: Arizona State University
Date: 15 Jul 1997 16:14:02 GMT
Message-ID: <5qg7ka$hqa@news.asu.edu>

dione@athene.as.arizona.edu (Matt Cheselka) writes:

>I've encountered a strange error that I can't make sense of.  Anyone have any
>suggestions or ideas?  I won't be too specific with the workings of the code
>at this point, since I don't believe it's the code that producing the error.

>I start up the pvm daemon, and then run my program.  If I'm running the
>'master' daemon on this machine, I get the error:

>libpvm [pid20253]: pvmbeatask() shmget: No space left on device

>If I run the 'master' daemon on another machine, the program runs just fine.

>Thanks,

>Matt

It looks like your machine has run out of shared memory.  One problem
with shared memory is that is is not reclaimed when the processes
using it terminate.  Let this go on long enough and no space will be
left.  There is usually a program called 'ipcs' that will show you
what shared memory is allocated and another called 'ipcrm' to remove
them.

       Andy
--
-----------------
Andy Vaught
andy@green.la.asu.edu      ....         do iters=1, 10
                           :  :   /call msolve(a,b,x,i,iters,tol)
Arizona State University   ======|write(6,201) iters, tol
Tempe, Arizona, USA        OOOOOO \enddo    return

