http://bugzilla.novell.com/show_bug.cgi?id=597230
http://bugzilla.novell.com/show_bug.cgi?id=597230#c3 Gonzalo Paniagua Javier <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |INVALID --- Comment #3 from Gonzalo Paniagua Javier <[email protected]> 2010-04-19 14:19:37 UTC --- The two warnings might cause the timeout because they can make a threadpool thread exit without notice. What you can do to verify that the right System.dll and Mono.Security.dll are used is to check /proc/[PID]/maps (as root) while the program is still running (PID is the pid of your program). Verify that the System.dll and Mono.Security.dll come from the /opt/mono2.6/lib/mono/gac/... directory. As for your test: ---------------------------------- gonz...@laptop:/tmp$ which mono /opt/mono-2-6/bin/mono gonz...@laptop:/tmp$ mono --version Mono JIT compiler version 2.6.4 (/branches/mono-2-6/mono r155633 Fri Apr 16 11:27:38 EDT 2010) Copyright (C) 2002-2010 Novell, Inc and Contributors. www.mono-project.com TLS: __thread GC: Included Boehm (with typed GC and Parallel Mark) SIGSEGV: altstack Notifications: epoll Architecture: x86 Disabled: none gonz...@laptop:/tmp$ cat > a.cs << EOF public class MainClass { public static void Main (string[] args) { var clt = new System.Net.WebClient (); clt.DownloadData ("http://www.google.com/"); System.Console.WriteLine ("OK"); System.Environment.Exit (0); } } EOF gonz...@laptop:/tmp$ gmcs a.cs gonz...@laptop:/tmp$ mono a.exe OK ------------------------------------------------------- -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
