[Mono-dev] Mono Windows Debugger

2009-08-27 Thread Joachim Ante
Hi, Unity is releasing all the sourcecode that Friedrich Dominicus has done on the mono debugger, as part of a contracting agreement with Unity, under the MIT-X11 license. Joachim Ante, CTO Unity ___ Mono-devel-list mailing list Mono-devel-list

Re: [Mono-dev] Detect List from C code

2009-06-21 Thread Joachim Ante
Now i have the generic type from the field in a MonoClass* pointer, how do I correctly create an instance from the class? If the only thing you have is a ListT, you cannot create a class from it because you need to know the T. But if your field's class is a *closed* generic type like Listint,

[Mono-dev] Detect List from C code

2009-06-20 Thread Joachim Ante
(mono_field_get_type (field)); if (myCachedPtrToSomeClass == compareClass) ; Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Detect List from C code

2009-06-20 Thread Joachim Ante
in a MonoClass* pointer, how do I correctly create an instance from the class? mono_object_new and mono_runtime_object_init doesn't seem to work. The values don't seem to be correctly initialized when i use those two functions on the MonoClass extracted from the MonoClassField. Joachim Ante

[Mono-dev] Extract MonoField

2009-06-10 Thread Joachim Ante
presume there are some extra steps i have to do. Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] What mono branch/tag to use from svn

2009-05-08 Thread Joachim Ante
do I fix the issue? Or specifically which checkin did fix the issue? Joachim Ante Hi, I just checked with the latest mono 2.4 installer and it works correctly there on os x. The tagged mono 2.4 http://anonsvn.mono-project.com/source/tags/ mono-2-4/mono does have the problem on my

Re: [Mono-dev] What mono branch/tag to use from svn

2009-05-08 Thread Joachim Ante
X download page it says: Mono 2.4_7. Does this mean there have been 7 updates to the Mac OS X dmg installer after 2.4 was shipped? Or why is a _7 appended to the release name? Joachim Ante Hi, I am still looking for a solution to this so I can get mono 2.4 running in Unity. So far we

Re: [Mono-dev] What mono branch/tag to use from svn

2009-05-06 Thread Joachim Ante
Hi, I just checked with the latest mono 2.4 installer and it works correctly there on os x. The tagged mono 2.4 http://anonsvn.mono-project.com/source/tags/ mono-2-4/mono does have the problem on my machine. Can someone confirm that the tagged mono-2-4 has this issue? Joachim Ante Hi

Re: [Mono-dev] Building mcs from source without mono

2009-05-02 Thread Joachim Ante
e[1]: *** [../../class/lib/net_1_1_bootstrap/sn.exe] Error 2make: *** [do-all] Error 2Is there something else i have to change to run this on a clean mcs checkout?Joachim Ante Is there an easy way to remove the dependency to the mono folder  completely? Not easy as a general framework, but for the handful

[Mono-dev] Building mcs from source without mono

2009-05-01 Thread Joachim Ante
. Is there an easy way to remove the dependency to the mono folder completely? Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Use eglib as a default for mono 2.6

2009-04-17 Thread Joachim Ante
Hi Paolo, Fair points you make. If we contribute the changes like you suggested, will you make eglib be the default as part of mono 2.6? Joachim Ante On 04/15/09 Joachim Ante wrote: Can you guys please switch to eglib as the default across the board, so that this codepath gets properly

[Mono-dev] Use eglib as a default for mono 2.6

2009-04-15 Thread Joachim Ante
to build mono. I asked if that could be done for mono 2.4 and it was too late for that, I understand. But could you guys please fix this for mono 2.6. It would really make a big difference for us. Joachim Ante ___ Mono-devel-list mailing list Mono

Re: [Mono-dev] [PATCH] Implement support for compiled regular expressions in profile 1.x

2009-04-07 Thread Joachim Ante
and using 2.0 would make it worse. At the same time we would like to get features like SGEN GC and other optimizations on the iPhone. So from our perspective, we would really like to have you keep supporting the 1.0 profile in mono. Joachim Ante ___ Mono

[Mono-dev] Mono debugger on windows

2009-02-18 Thread Joachim Ante
the Windows debugging API works If you are interested in this, please contact me. I am eager to move ahead on this very quickly. Below I have pasted some more detailed information from an e-mail conversion with Martin and Miguel. Best regards, Joachim Ante Hi, I quickly talked to Miguel

[Mono-dev] Mono Develop native menus on Mac OS X

2009-02-18 Thread Joachim Ante
of in the menu bar, our users would most likely fly to Denmark and put us on a pitchfork. It's actually a really serious issue for us. It's kind of cultural difference but Mac people care about this. Joachim Ante ___ Mono-devel-list mailing list

Re: [Mono-dev] Mono Develop native menus on Mac OS X

2009-02-18 Thread Joachim Ante
switch for all the hotkeys like cmd-c / ctrl-c for copy paste etc. So the faster this one gets fixed, the faster / easier I can convince people to use Mono Develop instead of what ever text editor they are using now. Joachim Ante ___ Mono-devel-list

Re: [Mono-dev] Extract method name from IEnumerator

2008-10-05 Thread Joachim Ante
. Are there functions i can call to do a lookup of the function name, should i parse the whole file myself or add some function to mono to do it? Best regards, Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com

[Mono-dev] Extract method name from IEnumerator

2008-10-04 Thread Joachim Ante
the embedding API. Relying on specific implementation details of the gmcs is perfectly fine. Best regards, Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Paid mono hacking: Make AOT generate all code ahead of time

2008-06-05 Thread Joachim Ante
The current AOT code does generate shared libraries, but all the methods are in a giant array named 'methods', we resolve its address using dlsym (), then add offsets to it to get the addresses of the code for the individual methods. Is there a device were this will not work ? That sounds

[Mono-dev] GC stop world stopping audio threads

2008-06-04 Thread Joachim Ante
mono_thread_attach? Best regards, Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

[Mono-dev] Paid mono hacking: Make AOT generate all code ahead of time

2008-06-04 Thread Joachim Ante
don't need that simplify this task: * No need for generics * No need for pinvoke * No need for cross domain code If you are interested in working on this as a contractor, drop me a mail. Best regards, Joachim Ante ___ Mono-devel-list mailing list Mono

Re: [Mono-dev] Paid mono hacking: Make AOT generate all code ahead of time

2008-06-04 Thread Joachim Ante
in the AOT then. Best regards, Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] [PATCH] Mono DTrace provider

2008-05-28 Thread Joachim Ante
Hi, What is this patch capable of at the moment. Can I do managed code performance profiling with it by using Apple's Instruments tools? Or does this require adding specific probes for performance profiling. Best regards, Joachim Ante Some comments about the patch: - I would vote

[Mono-dev] gmcs regression in svn

2007-09-18 Thread Joachim Ante
() { MyColor[] c = new MyColor [1]; c[0] += new MyColor (1.0F); System.Console.WriteLine(Finnished running to the end); } } Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

[Mono-dev] Daily test tarballs no more ?

2007-09-12 Thread Joachim Ante
Hi, It seems the daily test tarballs are not being generated anymore. The last test tar ball was 21-08, last month. http://mono.ximian.com/daily/ I'd really appreciate if someone can fix this. Best regards, Joachim Ante ___ Mono-devel-list mailing

[Mono-dev] mono_debug_close_image bug

2007-09-12 Thread Joachim Ante
(mono_debug_handles, image); Best regards, Joachim Ante void mono_debug_close_image (MonoImage *image) { MonoDebugHandle *handle; if (!mono_debug_initialized) return; handle = _mono_debug_get_image (image); if (!handle) return

[Mono-dev] Unloading domain assert

2007-08-20 Thread Joachim Ante
. The sample uses no internal mono functions and creates the domain entirely from managed code. It does switch domains from unmanaged code. http://bugzilla.ximian.com/show_bug.cgi?id=82510 Best regards, Joachim Ante ___ Mono-devel-list mailing list Mono-devel

[Mono-dev] Mono Win 98 / ME port - Contracting Work

2007-07-20 Thread Joachim Ante
Hi, We are looking for someone who will port Mono to Windows 98 and ME for us. This is a paid contracting gig. Anyone seriously interested please contact me directly. Best regards, Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list

Re: [Mono-dev] Crash when throwing exceptions after unloading domains

2007-07-17 Thread Joachim Ante
someone is throwing an exception. Best regards, Joachim Ante Instinctively I'd say it crashes because you're calling mono_jit_exec () twice. Try mono_runtime_exec_main () instead. I changed to use mono_runtime_exec_main the code and i get the same crash. Joachim Ante

Re: [Mono-dev] Crash when throwing exceptions after unloading domains

2007-07-05 Thread Joachim Ante
Hi, Instinctively I'd say it crashes because you're calling mono_jit_exec () twice. Try mono_runtime_exec_main () instead. I changed to use mono_runtime_exec_main the code and i get the same crash. Joachim Ante ___ Mono-devel-list mailing list

[Mono-dev] Crash when throwing exceptions after unloading domains

2007-07-04 Thread Joachim Ante
if i run the code that throws / catches the exception before unloading the domain one time. And one time after unloading the domain, the crash goes away. Best regards, Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http

Re: [Mono-dev] Walking all managed objects

2007-07-03 Thread Joachim Ante
detail and the user can't perform the same traversal safely). Modifying the mono code for this is not a problem. Is there some piece of code i could look at to see how to do this? Best regards, Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list

Re: [Mono-dev] Walking all managed objects

2007-07-03 Thread Joachim Ante
. Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

[Mono-dev] Walking all managed objects

2007-07-02 Thread Joachim Ante
to override the finalizer for performance reasons. In our situation there are specific times where i can just spend a bunch of time on cleanup. Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman

[Mono-dev] Domain Unload crash

2007-06-29 Thread Joachim Ante
(MonoBehaviour.cpp:931) Best regards, Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

[Mono-dev] wapi_shm_semaphores_init exits on startup

2007-03-12 Thread Joachim Ante
will automatically be created in an invisible folder called .wapi. Some of our tech savvy end-users do complain about this. * We will never need any cross application shared memory or mutexes A compile time define could simply replace system wide mutex with a normal mutex... Best regards, Joachim Ante

Re: [Mono-dev] _wapi_shm_semaphores_init

2006-12-19 Thread Joachim Ante
Hi, PS. Being able to disable .wapi completely with a compiler flag would be really useful It's on my todo list, as is the rest of bug 78739. Glad to hear that. Any idea when that will be done? Best regards, Joachim Ante ___ Mono-devel-list

[Mono-dev] Compatible dll's

2006-10-11 Thread Joachim Ante
to detect compatibility between two dll's? Are there some functions to already do this? Best regards, Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Compatible dll's

2006-10-11 Thread Joachim Ante
a runtime exception at some point when jitting one of the functions? Maybe i could make mono preload the dll completely and if that fails i know they are not compatible? Best regards Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list

Re: [Mono-dev] Compatible dll's

2006-10-11 Thread Joachim Ante
of the dll we compiled against is the same as the one we will now replace it with. If the signature is the same i can simply skip compiling all dependent scripts, thus save a bunch of unnecessary compile time. Best regards, Joachim Ante ___ Mono-devel-list

[Mono-dev] PPC create domain

2006-08-28 Thread Joachim Ante
Hi, I am having a bit of trouble getting domain creation under control on PPC machines. Very rarely i am getting this error: ** ERROR **: file mini-ppc.c: line 2329 (handle_thunk): assertion failed: (pdata.found == 1) aborting...

[Mono-dev] PPC create domain

2006-08-28 Thread Joachim Ante
a hint. Best regards, Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

[Mono-dev] Mach-o based exception handling

2006-08-25 Thread Joachim Ante
. So instead i am looking for some person who has experience with mono and is willing to implement this feature for a 400$. If anyone is interested please contact me. Best regards Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list

Re: [Mono-dev] Leaking threads tls data

2006-07-02 Thread Joachim Ante
is now installed on 1 million machines btw. www.unity3d.com) Whats the point of mini_cleanup at all, if not cleaning up memory / threads / tls data. Joachim Ante www.unity3d.com ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http

[Mono-dev] Leaking threads tls data

2006-06-30 Thread Joachim Ante
- fair enough. Leaking tls data - ok. But leaking an entire thread, thats really bad. Best regards, Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

[Mono-dev] PPC build broken

2006-06-01 Thread Joachim Ante
Hi, Building on ppc seems to be broken. I tried with the daily tarball package http://mono.ximian.com/daily/mono-1.1.15.20060601.tar.gz Is anyone else seeing this? Joachim Ante - exceptions-ppc.c:557: error: parse error before else exceptions-ppc.c:567: warning: type defaults to `int

[Mono-dev] mini-ppc.c handle_thunk assertion

2006-05-08 Thread Joachim Ante
(Debug)[433] LSOpenFromURLSpec() returned -1 for application /Users/joe/unity/build/Report Bug.app path (null). Best regards, Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel

[Mono-dev] mini-ppc.c handle_thunk assertion

2006-05-08 Thread Joachim Ante
Hi, I found the source of the problem for more info see the bug report: http://bugzilla.ximian.com/show_bug.cgi?id=78338 Best regards, Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman

[Mono-dev] Mono Trace Leak patch

2006-05-06 Thread Joachim Ante
Hi, The attached patch fixes a leak in mono trace. mono_trace_cleanup was never called. Can someon merge it into svn. Joachim Ante mono_trace.patch Description: Binary data ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http

[Mono-dev] AppDomain from unmanaged code and handle_thunk

2006-05-05 Thread Joachim Ante
of different ways of activating the domain most of which just crashed in random places and this one got me farthest. What is the recommended way of activating/creating/unloading an appdomain from c code? Best regards, Joachim Ante ___ Mono-devel-list mailing

[Mono-dev] Raw Symbols store patch

2006-04-30 Thread Joachim Ante
with symbol store should work as well) Can someone commit this. Best regards, Joachim Ante www.otee.dk raw_symbols.patch Description: Binary data ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono

[Mono-dev] runtime handles missing assemblies/classes etc. ungracefully

2006-04-26 Thread Joachim Ante
browser down because a dll could not be found is just not a very good idea. Can someone who actually knows mono fix this? Best regards, Joachim Ante www.otee.dk mono_runtime_invoke.patch Description: Binary data ___ Mono-devel-list mailing list Mono-devel

[Mono-dev] Stack traces

2006-04-23 Thread Joachim Ante
on? Best regards, Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Re: What would you like to see in Mono? [.wapi-less config]

2006-04-09 Thread Joachim Ante
Hi, So will such a configure variable be added? Or will MONO_DISABLE_SHM be reintroduced? I've had several people complaining about that our web player creates folders in the home directory. Joachim Ante ___ Mono-devel-list mailing list Mono-devel

Re: [Mono-dev] What would you like to see in Mono?

2006-03-31 Thread Joachim Ante
MONO_DISABLE_SHM=1 on your environment As far as i can see this environment variable doesn't exist anymore. Is there another way to disable wapi? Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman

Re: [Mono-dev] What would you like to see in Mono?

2006-03-30 Thread Joachim Ante
What i'd like to see in mono is the ability to start up an application without it needing a .WAPI folder. I understand why mono needs the wapi folder, but i'm sure there are application for which one wouldn't need one at all. Yeah that would really useful. Joachim Ante

[Mono-dev] MacOSX 10.2 compilation patch

2006-02-20 Thread Joachim Ante
Hi, This patch fixes some issues when compiling for mac os x 10.2. Joachim Ante mono10.2.patch Description: Binary data ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] MacOSX 10.2 compilation patch

2006-02-20 Thread Joachim Ante
Hello, This patch fixes some issues when compiling for mac os x 10.2. But this patch changes the behavior of Mono when built on Mono 10.3, maybe this code needs to use some configure.in-based checks Which part of the patch changes behaviour when building on 10.3? Joachim Ante

[Mono-dev] MonoType patch

2006-02-18 Thread Joachim Ante
appreciate if someone could apply this patch. Joachim Ante MonoType.patch Description: Binary data ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

[Mono-dev] Re: MonoType patch

2006-02-18 Thread Joachim Ante
appreciate if someone could apply this patch. Forgot to say that this patches InvokeMember in MonoType.cs Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

[Mono-dev] OS X Intel support

2006-01-05 Thread Joachim Ante
drop me a mail. Joachim Ante www.otee.dk ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

[Mono-dev] AOT on PPC

2005-12-12 Thread Joachim Ante
:8846): WARNING **: unable to handle jump info 25 ** ERROR **: file aot.c: line 2306 (emit_method_info): should not be reached aborting... Abort trap Joachim Ante ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com

Re: [Mono-dev] AOT on PPC

2005-12-12 Thread Joachim Ante
Hi, I presume there are no plans to make it be supported? Joachim Ante Hi, No, its not supported. It used to work, but got broken in the meantime. Zoltan On 12/12/05, Joachim Ante [EMAIL PROTECTED] wrote: Hi, Is AOT supposed to work on PPC