Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2004-05-18 19:10:23 +0400
committerMiguel de Icaza <miguel@gnome.org>2004-05-18 19:10:23 +0400
commit97575ebbd297eaf9af36740f142a9a9ae6340178 (patch)
tree13a65b7b9a480c00a495cc8807d37ab2555c64d9 /web/issues
parentc21e20f026ad2884b205e7512d461e1a03d05c0e (diff)
Add new file
svn path=/trunk/mono/; revision=27593
Diffstat (limited to 'web/issues')
-rw-r--r--web/issues40
1 files changed, 40 insertions, 0 deletions
diff --git a/web/issues b/web/issues
new file mode 100644
index 00000000000..25eedb4db44
--- /dev/null
+++ b/web/issues
@@ -0,0 +1,40 @@
+<a name="wapi"></a>
+* ~/.wapi error message
+
+Q: What does the following error message mean?
+
+ <pre>
+ Failed to attach shared memory!
+ Falling back to non-shared handles
+ </pre>
+
+A: To properly implement the handle semantics expected by .NET
+ applications where a handle number is all that its needed to pass
+ a descriptor from one process to another and have it just work.
+
+ Handles are used to specify: files, events, locks, semaphores,
+ sockets, pipes and processes descriptors. So two Mono processes
+ can share any of those resources just by exchanging the handle
+ tokens (a number) between them.
+
+ This is accomplished by using a helper process that is launched by
+ the first Mono invocation (that is why you see two mono processes
+ running on your machine).
+
+ The various Mono processes communicate with each other with a local
+ file in the ~/.wapi directory (one per hostname, so this works fine
+ over NFS).
+
+ If the system crashes, or all of the Mono processes are killed
+ without a chance to shut down properly those files will remain
+ there, but there will no longer be an owner for them. If a new
+ Mono start up, it will notice that the file exists, but it will
+ fail to contact the helper process, issuing the above warning.
+
+Q: How do I fix the problem?
+
+A: If you are sure that no other Mono process is running, you can just
+ delete the contents of the ~/.wapi directory:
+
+ rm -i ~/.wapi/*
+