summaryrefslogtreecommitdiff
path: root/src/md/inc
diff options
context:
space:
mode:
authorKoundinya Veluri <kouvel@microsoft.com>2015-08-21 11:43:34 -0700
committerKoundinya Veluri <kouvel@microsoft.com>2015-08-26 21:35:47 -0700
commit96846758a0df94985aedc6c301a8576ee1f1da4b (patch)
tree45206616b8e94b745fdcca3a4a76f030443b2c4a /src/md/inc
parentb7d38a0ff5a4faa3ed6da5b8e0e375b9e91e6a77 (diff)
downloadcoreclr-96846758a0df94985aedc6c301a8576ee1f1da4b.tar.gz
coreclr-96846758a0df94985aedc6c301a8576ee1f1da4b.tar.bz2
coreclr-96846758a0df94985aedc6c301a8576ee1f1da4b.zip
Return error upon attemping to create named objects in PAL.
Update PAL APIs that create named objects (mutex, semaphore, event, file mapping) to return a not-supported error code. It was decided to not support cross-process synchronization in PAL at present time due to complexities involved in reliably emulating Windows' behavior. @stephentoub has already made changes on the FX side to throw PlatformNotSupportedException in these cases. Related to issue #1237.
Diffstat (limited to 'src/md/inc')
-rw-r--r--src/md/inc/stgio.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/md/inc/stgio.h b/src/md/inc/stgio.h
index 887eeb0355..5db910f7d6 100644
--- a/src/md/inc/stgio.h
+++ b/src/md/inc/stgio.h
@@ -261,7 +261,6 @@ private:
// Flags and state data.
FILETYPE m_FileType; // Cached type of the file (based on extension).
- WCHAR m_rcShared[MAXSHMEM]; // Name of shared memory segment.
LONG m_cRef; // Ref count on this object.
bool m_bWriteThrough : 1; // true for write through mode.
bool m_bRewrite : 1; // State check for rewrite mode.