- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - OpenVMS
- >
- Re: what is .shm file extension?
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Discussions
Discussions
Discussions
Forums
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-23-2009 10:10 AM
тАО03-23-2009 10:10 AM
what is .shm file extension?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-23-2009 10:29 AM
тАО03-23-2009 10:29 AM
Re: what is .shm file extension?
My next steps:
o dump your .shm file and see if there are any clues there.
o search your application source to see if any of them open .shm files.
Hve fun.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-23-2009 10:32 AM
тАО03-23-2009 10:32 AM
Re: what is .shm file extension?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-23-2009 10:43 AM
тАО03-23-2009 10:43 AM
Re: what is .shm file extension?
Actually, when citing something on the www, the actual URL is helpful.
When I query "shm openvms file" using Google, one of the hits I get is http://dotwhat.net, which seems to indicate that .SHM was used as a file extension by WordPerfect.
There is also several references to MIT Shared Memory. As was suggested, DUMP can be very useful here.
Many users and third party products have been known to define their own file extensions. The trick here is to determine what it is, now what it COULD be.
- Bob Gezelter, http://www.rlgsc.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-23-2009 10:54 AM
тАО03-23-2009 10:54 AM
Re: what is .shm file extension?
It's certainly not something on _my_ system:
ALP $ dire sys$sysdevice:[000000...].shm
%DIRECT-W-NOFILES, no files found
> I found one reference on web about 'shared
> memory file' for open VMS but it doesnt say
> what function it serves.
And you don't seem to have said anything
about where you found this "one reference",
so I'd assume that it was not worth
mentioning.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-23-2009 11:18 AM
тАО03-23-2009 11:18 AM
Re: what is .shm file extension?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-23-2009 12:08 PM
тАО03-23-2009 12:08 PM
Re: what is .shm file extension?
The term in VMS is usually "global section file", and the programmer is free to give it whatever name he wants.
What can be installed are shared libraries, which need not be code, but can be data sections only (Fortran common sections for example).
Global section files are not installed, but accessed by $crmpsc or $mgblsc system services at run-time.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-24-2009 12:50 AM
тАО03-24-2009 12:50 AM
Re: what is .shm file extension?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО03-24-2009 08:10 AM
тАО03-24-2009 08:10 AM
Re: what is .shm file extension?
Personally, I'd wager the developers whispered the incantation "shm" to start this off.
$ man -k shm
...
shm_open(2) - open a shared memory object
shm_unlink(2) - remove shared memory object
shmat(2), shmdt(2) - map/unmap shared memory
shmctl(2) - shared memory control operations
shmget(2) - get shared memory area identifier
...
That's the C interface that's (if you're crossing platforms and trying to map terms and concepts) likely to trigger "installed shared image". Though an installed shared image is not where I'd land if I were using shm stuff; I tend to prefer to avoid installed shared images as they've caused me pain in the past with compatibility and upgrades.