Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Program to view Shared Memory in Windows?

I'm looking for a program to view and browse the (local) shared memory in Windows x32/x64.

I know this exists because I've seen it in action before. For some reason Google and MSDN fail me on this one.

like image 858
DMeier Avatar asked Jan 21 '09 13:01

DMeier


People also ask

Does Windows have shared memory?

Windows operating systems provide shared memory using memory backed by the paging file but the lifetime semantics are different from the ones defined by POSIX (see Native windows shared memory section for more information). Some UNIX systems don't fully support POSIX shared memory objects at all.

How do you clear shared memory in SAP windows?

On Windows: You can use Microsoft Process Explorer to check the shared memory handle of saposcol and then try to find if another process holds it. You should see that some disp+work has the handle. Kill this and then you should be able to stop saposcol and clean the memory.


1 Answers

I think Accesschk can do this.

From the commandline: accesschk.exe -osv > objects.txt

Search for: "Type: Section"

like image 190
Brian Avatar answered Oct 05 '22 11:10

Brian