Re: [Mono-dev] Add a libgmp-wrapper to mono

2008-09-20 Thread Seo Sanghyeon
hat's a completely different topic, though. If you don't like Google (I don't) you may want to try other project hosting sites like Bitbucket or Kenai. http://www.bitbucket.org/ http://kenai.com/ -- Seo Sanghyeon ___ Mono-devel-list ma

Re: [Mono-dev] Removing #region and #endregion from source code`

2008-09-26 Thread Seo Sanghyeon
2008/9/27 Atsushi Eno <[EMAIL PROTECTED]>: > I disagree; the only people who actually hack the source file should > have the right to decision. Isn't source code for API users as much as API developers who hack on it? -- Seo Sanghyeon _

[Mono-dev] Invalid construct in DLR's MSBuild file?

2008-12-10 Thread Seo Sanghyeon
is actually valid (then I argue documentation is confusing), I think it would be a good idea to quote this anyway. -- Seo Sanghyeon ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] greetings (new here)... a few things...

2009-01-06 Thread Seo Sanghyeon
much else. See also docs/internal-calls. -- Seo Sanghyeon ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

[Mono-dev] Mono and OProfile

2009-03-27 Thread Seo Sanghyeon
What is the status of Mono and OProfile? I found that, in current SVN, configure defines HAVE_OPROFILE, but this is not used at all. Instead, mono/profiler/mono-profiler-logging.c uses HAS_OPROFILE[!]. -- Seo Sanghyeon ___ Mono-devel-list mailing list

Re: [Mono-dev] Mono and OProfile

2009-03-27 Thread Seo Sanghyeon
nce OProfile has other virtues, even if its JIT support sucks big time, it may still be useful to support it. -- Seo Sanghyeon ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Generics problem (issue #488960)

2009-04-05 Thread Seo Sanghyeon
a difficult case? is it possible to squeeze a quick fix into 2.4.1 > (if such a release is planned)? I attached a patch to the bug. It wasn't a difficult case. It seemed to be introduced by r31 by mistake, while reorganizing paramter handling codes. This does seem to be a regression

Re: [Mono-dev] LLVM back-end for the JIT compiler.

2009-04-21 Thread Seo Sanghyeon
2009/4/22 Levi Campbell : > 2. Where can I find the JIT compiler in the source code? mono/mono/mini. > 3. Is there any other documentation that talks about how the JIT compiler > works? mono/docs. Grep fot JIT. -- Seo Sanghyeon ___ Mono-d

Re: [Mono-dev] running mono on Ubuntu 8.04

2009-04-23 Thread Seo Sanghyeon
d update Ubuntu directly. Can anybody > advise? This is a bug in Ubuntu 8.04's kernel package. Upgrade to the latest kernel package in 8.04 and *reboot* (It's kernel). -- Seo Sanghyeon ___ Mono-devel-list mailing list Mono-deve

Re: [Mono-dev] Maybe an Error?

2009-05-05 Thread Seo Sanghyeon
2009/5/5 Friedrich Dominicus : > And then I'd really like to know why > System.Linq should be ok if .NET and Monot should be compatible... Isn't System.Linq included in System.Core.dll? I think it should work fine on .NET too... It is quite different code from System.Xml.Linq. -

Re: [Mono-dev] General questions about mono

2009-05-05 Thread Seo Sanghyeon
2009/5/5 Friedrich Dominicus : > Ok for the beginnint unmanaged thread registering with the runtime > would be fine. Now that is not vague! I think you are looking for mono_thread_attach. -- Seo Sanghyeon ___ Mono-devel-list mailing list Mono

[Mono-dev] [PATCH] sgen GC on x86

2009-06-04 Thread Seo Sanghyeon
I know sgen GC is work-in-progress, etc., but attached patch lets me try it on x86. Or anyone else who haven't moved to 64-bit paradise yet... -- Seo Sanghyeon Index: mono/mini/mini-x86.c === --- mono/mini/mini-x86.c (rev

Re: [Mono-dev] Apport, and automated debugging

2009-06-12 Thread Seo Sanghyeon
2009/6/10 Jo Shields : > (snip: Apport support for Mono) Have you looked at https://wiki.ubuntu.com/ApportMonoCrashes ? -- Seo Sanghyeon ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/m

Re: [Mono-dev] status of System.Messaging in Mono

2009-07-13 Thread Seo Sanghyeon
to be outdated. Check this blog post too: http://mikes-tech.blogspot.com/2008/12/more-mono-amqp-and-systemmessaging.html -- Seo Sanghyeon ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Issues to build IronPython on mono

2009-07-25 Thread Seo Sanghyeon
9b6fdd2e9faa7d Both problems are already known. https://bugzilla.novell.com/show_bug.cgi?id=336258 https://bugzilla.novell.com/show_bug.cgi?id=415375 -- Seo Sanghyeon ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.

Re: [Mono-dev] Beyond C#

2009-07-26 Thread Seo Sanghyeon
2009/7/26 Scott Thomas : > That's my piece. I think we should do it. Respond! I think this is a good idea. It's about time we embrace and extend (TM) C#. -- Seo Sanghyeon ___ Mono-devel-list mailing list Mono-devel-list@lists.xi

[Mono-dev] PATCH: Implement System.DateTime.IsDaylightSavingTime

2006-04-13 Thread Seo Sanghyeon
Hi, Attached patch implements System.DateTime.IsDaylightSavingTime by delegating to System.TimeZone.IsDaylightSavingTime. Does this look okay? Seo Sanghyeon Index: class/corlib/System/DateTime.cs === --- class/corlib/System