lupus

520
reputation
61 views

Registered User

name lupus
member for 1 year
seen 51 mins ago
website
location
age
Oct
12
awarded  Yearling
Aug
19
accepted Embedding Mono - Overhead of a native -> managed context switch.
Aug
19
comment Embedding Mono - Overhead of a native -> managed context switch.
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.
Aug
18
accepted Overhead of Mono Tasklet/Co-Routines
Aug
18
answered Overhead of Mono Tasklet/Co-Routines
Aug
18
answered Embedding Mono - Overhead of a native -> managed context switch.
Aug
3
awarded  Enlightened
Jul
31
comment PerlEmbed - C# - Mono - Linux
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 '
Jul
29
answered PerlEmbed - C# - Mono - Linux
Jul
23
comment Using Precompiled .NET Assembly DLL in Mono?
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.
Jul
22
answered Using Precompiled .NET Assembly DLL in Mono?
Jul
2
awarded  Nice Answer
Jun
26
awarded