Is there a way to set the permissions with Named Shared Memory in Windows so that the access control is done by process rather than by user? I'd like to have one program create the memory, pass a handle or pass back a PID so that the client process can access the memory. All other processes should be denied access. Thanks
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Access control is only by security principals, which can be users, groups, computers, and the like. If you have an object that you want shared with another process, you can use DuplicateHandle. |
|||||||||
|
|
No, because processes are not security principles. Instead, use an unnamed file mapping and give the client process a copy of the handle using DuplicateHandle. |
|||||
|