Don Hatch (hatch++at++hell.engr.sgi.com)
Tue, 28 Oct 1997 13:08:54 -0800
Check out the bug notes at the bottom of the ogldebug man page:
If ogldebug terminates unexpectedly, it may leak shared memory. See ipcs
to check the status of shared memory segments and semaphores. See ipcrm
to remove leaked shared memory segments and semaphores.
I use a script "ipcrmall" that contains the following:
#!/bin/csh -f
foreach type (m s)
foreach thing (`ipcs -$type | tail +3 | grep -v : | awk '{print $2}'`)
echo ipcrm -$type $thing
ipcrm -$type $thing
end
end
Don
--
Don Hatch hatch++at++sgi.com (415) 933-5150 Silicon Graphics, Inc.
=======================================================================
List Archives, FAQ, FTP: http://www.sgi.com/Technology/Performer/
Submissions: info-performer++at++sgi.com
Admin. requests: info-performer-request++at++sgi.com
This archive was generated by hypermail 2.0b2 on Mon Aug 10 1998 - 17:56:08 PDT