12
votes
How do I code a Mono Daemon
You should implement a service and use mono-service. Google for it and you'll find several examples.
…
1
vote
4
votes
C# mono p/invoke failure
You could run the program with gdb and see exactly where the SEGV happens (see the mono wiki for instructions).
A likely c …
2
votes
Using Precompiled .NET Assembly DLL in Mono?
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 …
2
votes
PerlEmbed - C# - Mono - Linux
It fails on perl_parse() because your binding is incorrect.
The argv argument is a char** (to be interpreted as an argc-sized array of char*): this has no relation to StringBuilder, which r …
4
votes
Embedding Mono - Overhead of a native -> managed context switch.
The current API for invoking a managed method from C code has these kinds of overhead:
It does some locking and hash lookup operations to see if the method you're calling and a synthe …
4
votes
Overhead of Mono Tasklet/Co-Routines
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.
Considering that mono will usually execute …
