* AssemblyNameTest.cs: Added tests for Clone and serialization without
[mono.git] / man / mono.1
index cc588c83108211b3466fd7a92daf716a1b506dec..0401a7b5c3b7040347d516727126ad486ff468a4 100644 (file)
@@ -116,11 +116,10 @@ elimination and inlining, you can use:
 .fi
 .TP
 .I "--security"
-Activate the security manager (experimental in 1.1). This allows the 
-support for declarative security attributes (e.g. execution of, CAS or 
-non-CAS, security demands). The security manager is OFF by default 
-(experimental). Note that this options is currently not compatible with
-AOT. The security manager will be disabled if AOT (--aot) is specified.
+Activate the security manager (experimental feature in 1.1). This allows 
+mono to support declarative security attributes (e.g. execution of, CAS 
+or non-CAS, security demands). The security manager is OFF by default 
+(experimental).
 .TP
 .I "-V", "--version"
 Prints JIT version information.
@@ -322,7 +321,9 @@ dynamically loaded into your application.
 You can control this with the MONO_XMLSERIALIZER_THS environment
 variable.
 .PP
-The possible values are `no' to disable the use of a C# customized
+The possible values are 
+.B `no' 
+to disable the use of a C# customized
 serializer, or an integer that is the minimum number of uses before
 the runtime will produce a custom serializer (0 will produce a
 custom serializer on the first access, 50 will produce a serializer on
@@ -354,10 +355,22 @@ environment variable.
 .TP
 .I "MONO_DEBUG"
 If set, enables some features of the runtime useful for debugging.
-It makes the runtime display the stack traces for all the threads
-running and exit when mono is interrupted (Ctrl-C) and print some
-additional messages on error conditions. It may not exit cleanly. Use at
-your own risk.
+Currently this enables two features: stack traces when interrupting
+the process from the shell;  Visible error messages on assembly
+loading and also to track problems with delegates that are released,
+but a reference is kept in unmanaged code.
+.TP
+The stack tracing option makes the runtime display the stack traces
+for all the threads running and exit when mono is interrupted (Ctrl-C)
+and print some additional messages on error conditions. It may not
+exit cleanly. Use at your own risk.
+.TP
+Also, this option will leak delegate trampolines that are no longer
+referenced as to present the user with more information about a
+delegate missuse.  Basically a delegate instance might be created,
+passed to unmanaged code, and no references kept in managed code,
+which will garbage collect the code.  With this option it is possible
+to track down the source of the problems. 
 .TP
 .I "MONO_DISABLE_AIO"
 If set, tells mono NOT to attempt using native asynchronous I/O services. In
@@ -424,12 +437,19 @@ Directories are separated by the platform path separator (colons on unix). Examp
 Experimental RTC support in the statistical profiler: if the user has
 the permission, more accurate statistics are gathered.  The MONO_RTC
 value must be restricted to what the linux rtc allows: power of two
-from 64 to 8192 Hz.
+from 64 to 8192 Hz. To enable higher frequencies like 4096 Hz, run as root:
+.nf
+       echo 4096 > /proc/sys/dev/rtc/max-user-freq
+.fi
 .Sp
 For example:
 .nf
        MONO_RTC=4096 mono --profiler=default:stat program.exe
 .fi
+.TP
+.I "MONO_NO_TLS"
+Disable inlining of thread local accesses. Try setting this if you get a segfault
+early on in the execution of mono.
 .TP 
 .I "MONO_SHARED_DIR"
 If set its the directory where the ".wapi" handle state is stored.
@@ -472,17 +492,27 @@ assemblies are located.
 Mono runtime configuration file.  See the mono-config(5) manual page
 for more information.
 .PP
-~/.config/.mono/certs
+~/.config/.mono/certs, /usr/share/.mono/certs
+.PP
+Contains Mono certificate stores for users / machine. See the certmgr(1) 
+manual page for more information on managing certificate stores.
+.PP
+~/.config/.mono/keypairs, /usr/share/.mono/keypairs
 .PP
-Contains Mono certificate stores. See the certmgr(1) manual page for
-more information.
+Contains Mono cryptographic keypairs for users / machine. They can be 
+accessed by using a CspParameters object with DSACryptoServiceProvider
+and RSACryptoServiceProvider classes.
+.PP
+~/.config/.isolatedstorage, ~/.local/share/.isolatedstorage, /usr/share/.isolatedstorage
+.PP
+Contains Mono isolated storage for non-roaming users, roaming users and 
+local machine. Isolated storage can be accessed using the classes from 
+the System.IO.IsolatedStorage namespace.
 .SH MAILING LISTS
-Visit http://mail.ximian.com/mailman/mono-list for details.
+Visit http://lists.ximian.com/mailman/listinfo/mono-list for details.
 .SH WEB SITE
 Visit: http://www.mono-project.com for details
 .SH SEE ALSO
 .BR mcs(1), mint(1), monodis(1), mono-config(5), certmgr(1).
 .PP
 For ASP.NET-related documentation, see the xsp(1) manual page
-
-