User lupus - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T17:01:58Z http://stackoverflow.com/feeds/user/27051 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1290051/overhead-of-mono-tasklet-co-routines/1292211#1292211 4 Answer by lupus for Overhead of Mono Tasklet/Co-Routines lupus 2009-08-18T06:53:13Z 2009-08-18T06:53:13Z <p>If I didn't count wrong, your code does more than 2 million yields per second, which should be roughtly in the same ballpark as stackless python.</p> <p>Considering that mono will usually execute the real application code 10 to 100 times faster than python, the performance is likely going to be very good unless all your code does is yield without ever doing any real work, which I don't think is very useful:)</p> http://stackoverflow.com/questions/1291093/embedding-mono-overhead-of-a-native-managed-context-switch/1292174#1292174 4 Answer by lupus for Embedding Mono - Overhead of a native -> managed context switch. lupus 2009-08-18T06:41:07Z 2009-08-18T06:41:07Z <p>The current API for invoking a managed method from C code has these kinds of overhead:</p> <ul> <li>It does some locking and hash lookup operations to see if the method you're calling and a synthetized helper method are compiled</li> <li>If the methods are not already compiled to native code they are compiled</li> <li>The actual method invocation is fast and contrary to the speculation in some of the answers no marshaling overhead happens, so blittable types and other such considerations don't apply</li> <li>If the return type is a valuetype then the value is boxed: this causes some GC overhead. Note that for methods returning void or a reference type there is no overhead</li> </ul> <p>We're going to introduce a new API that does away with the overhead in the first and the last points above. In the mean time, unless you're doing millions of calls per second, these overheads are pretty small and almost always dwarfed by the actual managed method called doing real work.</p> http://stackoverflow.com/questions/1196620/perlembed-c-mono-linux/1198423#1198423 2 Answer by lupus for PerlEmbed - C# - Mono - Linux lupus 2009-07-29T06:50:06Z 2009-07-29T06:50:06Z <p>It fails on perl_parse() because your binding is incorrect.</p> <p>The argv argument is a char** (to be interpreted as an argc-sized array of char*): this has no relation to StringBuilder, which represents a modifiable string.</p> <p>I suggest you manually marshal this array: use a IntPtr[] as the argv and env arguments and fill the elements of the array with pointers to byte strings, for example using Marshal.StringToCoTaskMemAnsi() if the encoding is good enough for you. Remember also to free the memory allocated by that.</p> <p>Of course, you should make all this work inside an helper method that exposes a more natural interface to C# programmers that takes a string[] instead of the argc/argv pair.</p> http://stackoverflow.com/questions/1160722/using-precompiled-net-assembly-dll-in-mono/1163608#1163608 2 Answer by lupus for Using Precompiled .NET Assembly DLL in Mono? lupus 2009-07-22T07:25:16Z 2009-07-22T07:25:16Z <p>The likely issues are that the assembly is not put in the same directory as the program or that the case sensitivity of the assembly file name is not preserved when it was copied. For example, you may have a OUR.ASSEMLY reference, but the filename is OurAssembly.DlL or any other invalid case combination that people can come up with.</p> http://stackoverflow.com/questions/851624/c-mono-p-invoke-failure/856522#856522 4 Answer by lupus for C# mono p/invoke failure lupus 2009-05-13T07:17:45Z 2009-05-13T07:17:45Z <p>You could run the program with gdb and see exactly where the SEGV happens (see the mono <a href="http://www.mono-project.com/Debugging" rel="nofollow">wiki</a> for instructions).</p> <p>A likely cause is that some other incorrect p/invoke declaration and call in the code corrupted memory so later you get the crash.</p> http://stackoverflow.com/questions/835639/zlib-for-mono-net-without-a-known-checksum/838622#838622 1 Answer by lupus for Zlib for Mono/.Net without a known Checksum lupus 2009-05-08T07:32:21Z 2009-05-08T07:32:21Z <p>Just use DeflateStream instead of GZipStream.</p> http://stackoverflow.com/questions/738541/how-to-decode-wav-mp3-and-or-ogg-in-net-mono/739712#739712 2 Answer by lupus for How to decode wav, mp3, and/or ogg in .Net/Mono? lupus 2009-04-11T07:52:30Z 2009-04-11T07:52:30Z <p>For simple support for WAV files you can look at mono's implementation in mcs/class/System/System.Media/AudioData.cs (<a href="http://anonsvn.mono-project.com/viewvc/trunk/mcs/class/System/System.Media/" rel="nofollow">http://anonsvn.mono-project.com/viewvc/trunk/mcs/class/System/System.Media/</a>).</p> <p>For decoding ogg audio files you can look at the csvorbis module in mono's sn server: <a href="http://anonsvn.mono-project.com/viewvc/trunk/csvorbis/" rel="nofollow">http://anonsvn.mono-project.com/viewvc/trunk/csvorbis/</a></p> http://stackoverflow.com/questions/580011/how-do-to-set-run-time-options-when-embedding-mono/581767#581767 3 Answer by lupus for How do to set run time options when embedding mono? lupus 2009-02-24T13:40:03Z 2009-02-24T13:40:03Z <p>--config -> mono_config_parse ()</p> <p>--trace -> mono_jit_set_trace_options ()</p> <p>--runtime -> mono_jit_init_version ()</p> <p>--verbose and --optimize -> mono_set_defaults () and mono_parse_default_optimizations ()</p> <p>--profiler -> mono_profiler_load ()</p> http://stackoverflow.com/questions/536771/with-this-technology-would-it-be-possible-to-compile-and-run-silverlight-il-in-f/540458#540458 3 Answer by lupus for With this technology, would it be possible to compile and run silverlight IL in Flash? lupus 2009-02-12T08:16:47Z 2009-02-12T08:16:47Z <p>I'm sure a really good and dedicated hacker, able to change both the mono runtime and the flash player, could get a trivial hello-world-like program to run in a few months of work. That said, implementing all the features would be either extremely complex or extremely slow, so, from a practical point of view using this approach wouldn't work.</p> <p>If you'd like to run CLR-based managed code in the browser, check out the Moonlight 2.0 progress <a href="http://tirania.org/blog/archive/2009/Feb-11.html" rel="nofollow">here</a>: it works today, it is fast and it can be easily ported to run on a wide range of devices (there is also a Mono port to Android, for example).</p> http://stackoverflow.com/questions/186493/how-do-i-code-a-mono-daemon/193971#193971 12 Answer by lupus for How do I code a Mono Daemon lupus 2008-10-11T11:18:29Z 2008-10-11T11:18:29Z <p>You should implement a service and use mono-service. Google for it and you'll find several examples.</p> http://stackoverflow.com/questions/183377/does-mono-net-support-and-compile-c-cli/193967#193967 3 Answer by lupus for Does Mono .NET support and compile C++ / CLI? lupus 2008-10-11T11:13:04Z 2008-10-11T11:13:04Z <p>We don't have a compiler for C++/CLI, it would be a very large undertaking for a very small userbase. Consider also that the C++/CLI spec is inherently flawed and non-portable, so being able to compile it wouldn't help much in the general case.</p> <p>You can compile using the MS .NET compiler and run in mono with these restrictions: 1) run with mono on any system if the C++/CLI app is pure managed (but then, why use such an ugly language and not C#?)</p> <p>2) run with mono on windows in the other cases (C++/CLI apps are in general non-portable and include native code, so they can run only on windows and are uninteresting for the major objective of mono which is to run managed programs on Linux)</p> <p>Note that MS itself will eventually drop C++/CLI, so don't invest too much on it and switch to C#.</p> http://stackoverflow.com/questions/1291093/embedding-mono-overhead-of-a-native-managed-context-switch/1292174#1292174 Comment by lupus on Embedding Mono - Overhead of a native -> managed context switch. lupus 2009-08-19T07:00:38Z 2009-08-19T07:00:38Z It is a lock, but it has no relation to the GIL in python: all the python code requires the GIL to run, so no other code can run in the meantime. The locks I was talking about are basically held only for the duration of the hash lookup, all the rest of the code can run concurrently with other code. A complex class is just a reference and since no marshaling happens it's just a pointer copy. You and other people are confused about the embedding invoke API we're talking about in this thread and the P/Invoke mechanism. http://stackoverflow.com/questions/1196620/perlembed-c-mono-linux/1198423#1198423 Comment by lupus on PerlEmbed - C# - Mono - Linux lupus 2009-07-31T05:12:37Z 2009-07-31T05:12:37Z That function is exported as Perl_eval_pv, so you need to use that in C#, too. You can check the exported symbols of libperl with something like: nm -D /usr/lib/libperl.so | grep ' T ' http://stackoverflow.com/questions/1160722/using-precompiled-net-assembly-dll-in-mono/1163608#1163608 Comment by lupus on Using Precompiled .NET Assembly DLL in Mono? lupus 2009-07-23T07:27:32Z 2009-07-23T07:27:32Z If you don't ewant to post the output log from setting the env vars, you might want to try and execute mono under strace: strace -f -e open mono yourtest.exe and see what file it is trying to load and where. http://stackoverflow.com/questions/287927/best-way-to-learn-c/287957#287957 Comment by lupus on Best way to learn C# lupus 2009-02-18T08:43:42Z 2009-02-18T08:43:42Z If you last used Mono more than a year ago you have no idea of where Mono is at now:). Mono and MonoDevelop would fullfill all the needs of the poster wrt learning the C# language (besides Mono provides things like the interactive C# console that will be available from MS only later). http://stackoverflow.com/questions/527568/does-anybody-use-mono-for-commercial-development Comment by lupus on Does anybody use Mono for commercial development? lupus 2009-02-10T10:05:49Z 2009-02-10T10:05:49Z A clarification: Mono is not a .NET port, it is a completely independent implementation. http://stackoverflow.com/questions/18450/is-mono-ready-for-prime-time/233213#233213 Comment by lupus on Is Mono ready for prime time? lupus 2008-10-27T08:27:06Z 2008-10-27T08:27:06Z Bugzilla is the place to report bugs: Miguel is extremely busy and nobody can keep up with everyone sending him individual bug reports. If you can't publish the sample code you should still report the issue in bugzilla and note there that you sent the sample to Miguel or me (lupus@ximian.com). http://stackoverflow.com/questions/183377/does-mono-net-support-and-compile-c-cli/193967#193967 Comment by lupus on Does Mono .NET support and compile C++ / CLI? lupus 2008-10-13T07:37:55Z 2008-10-13T07:37:55Z An old and established language has less development needs and still C++ from MS has seen much more exposure than C++/CLI. But it's your money, so if you want to invest in C++/CLI it's up to you, I'm just giving my advice: people should stay away from C++/CLI and doubly so if they value portability. http://stackoverflow.com/questions/183377/does-mono-net-support-and-compile-c-cli/193967#193967 Comment by lupus on Does Mono .NET support and compile C++ / CLI? lupus 2008-10-12T08:59:57Z 2008-10-12T08:59:57Z Managed C++ is already unsupported and discontinued, it didn't take them long to do that. Now go count the news items related to C++/CLI in the last year or two, the blog posts, the announcements. Connect the dots.