Re: [doc][drlvm] The document Getting started with DRL is outdated

2006-11-13 Thread Egor Pasko
On the 0x21D day of Apache Harmony Nadezhda Morozova wrote: Egor, I think we're mixing things up a bit, or at least our perceptions of various docs. I'd not call what you're suggesting a tutorial - it's more of a howto doc, right? We are lucky to have Salikh write this How to write a GC? Doc

RE: Re: [doc][drlvm] The document Getting started with DRL is outdated

2006-11-13 Thread Morozova, Nadezhda
Ok, I'll use http://issues.apache.org/jira/browse/HARMONY-2150 to get an initial patch for the getting started document, and we can then work to improve it. Let's make it a short page with links to wiki and maybe some how-tos. Thank you, Nadya Morozova -Original Message- From: news

Re: [general] Sun will take GPL License?

2006-11-13 Thread Jin Mingjian
But does Apache License make JDK out of control? I don't think so:) 在 06-11-13,Geir Magnusson Jr.[EMAIL PROTECTED] 写道: Jin Mingjian wrote: GPL is not very compatible with Apache License. So, I guess Sun want to prevent Harmony from using any codes they owned?! Very Very Very... No - it was

Re: [general] Sun will take GPL License?

2006-11-13 Thread Geir Magnusson Jr.
Jin Mingjian wrote: But does Apache License make JDK out of control? I don't think so:) I think that it just means that it helps them limit the number of proprietary forks of the code. But I'm not worried about that being harmful no matter what the license - the market doesn't want broken

Re: [drlvm] [ipf] I suggest a series of patches for ipf code generator

2006-11-13 Thread Konstantin Anisimov
Hi Egor, good point about multimap :) I have fixed it and going to submit new patch in Jira. IpfEmitter is code of Igor and he already has patch for it. I suggest to wait for him. Thank you, Konstantin Egor Pasko [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On the 0x21D day of

Re: [drlvm][classlib] thread library - let there be one!

2006-11-13 Thread Andrey Chernyshev
On 11/10/06, Weldon Washburn [EMAIL PROTECTED] wrote: hmm it seems that we need to create kernel natives, the C version of java kernel classes. The expectation is that the JVM supplier would write their own kernel natives. And the classlib native code would only call kernel natives.

Re: [general] Sun will take GPL License?

2006-11-13 Thread Jin Mingjian
Java is still the trademark of Sun:) So I think we can do control though JCP. BTW, I like GPL as well:) Whatever, this is big step for Java community. 在 06-11-13,Geir Magnusson Jr.[EMAIL PROTECTED] 写道: Jin Mingjian wrote: But does Apache License make JDK out of control? I don't think so:) I

Re: [general] Sun will take GPL License?

2006-11-13 Thread Geir Magnusson Jr.
It's actually Sun's trademark, not the JCPs. And I don't like the GPL - but that's ok, because there are choices for people. Apache Harmony or Sun's OpenJDK project. geir Jin Mingjian wrote: Java is still the trademark of Sun:) So I think we can do control though JCP. BTW, I like GPL as

Re: [classlib][sql] SerialJavaObject constructor throws SerialException when the object is unserializable?

2006-11-13 Thread Mikhail Loenko
I guess that Sun has implemented some behavior and some exception could be thrown by that implementation. Then they wrapped that exception by SerialException and documented in the spec ;) You might want to implement it without exception throwing and if we find an inconsistency later -- fix it

Re: [drlvm] [ipf] I suggest a series of patches for ipf code generator

2006-11-13 Thread Egor Pasko
On the 0x220 day of Apache Harmony Konstantin Anisimov wrote: Hi Egor, good point about multimap :) I have fixed it and going to submit new patch in Jira. thanks for the new patch! I'll say that it is fine in JIRA for comitters to be easier at following The Idea of the issue IpfEmitter is

RE: [classlib][swing] Serialization of Swing classes

2006-11-13 Thread Ivanov, Alexey A
-Original Message- From: Tim Ellison [mailto:[EMAIL PROTECTED] Sent: Sunday, November 12, 2006 1:12 AM To: harmony-dev@incubator.apache.org Subject: Re: [classlib][swing] Serialization of Swing classes Nathan Beyer wrote: Runtime optimization - I'm not positive of this, nor do I

Re: [drlvm][threading] Should hythread_monitor_init() aquire the monitor?

2006-11-13 Thread Artem Aliev
It turned out that DRL implementation of hythread_monitor_init / hythread_monitor_init_with_name initializes and acquires a monitor. Eugeni, Both drlvm and classlib hythread work this way. This original hythread design that for compatibility reason was implemented in drlvm. Thanks Artem

Re: [doc][drlvm] The document Getting started with DRL is outdated

2006-11-13 Thread Egor Pasko
On the 0x220 day of Apache Harmony Nadezhda Morozova wrote: Ok, I'll use http://issues.apache.org/jira/browse/HARMONY-2150 to get an initial patch for the getting started document, and we can then work to improve it. OK, I am watching it Let's make it a short page with links to wiki and

RE: Re: [doc][drlvm] The document Getting started with DRL is outdated

2006-11-13 Thread Morozova, Nadezhda
-Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Egor Pasko Sent: Monday, November 13, 2006 12:40 PM To: harmony-dev@incubator.apache.org Subject: Re: [doc][drlvm] The document Getting started with DRL is outdated On the 0x220 day of Apache Harmony Nadezhda Morozova

Re: [drlvm] drlvm and gdb and shared libraries

2006-11-13 Thread Egor Pasko
On the 0x220 day of Apache Harmony Geir Magnusson, Jr. wrote: I have a dumb question - I was playing today with a toy launcher for DRLVM working out some embedding issues, and for the life of me, I couldn't get dgb to ever let me break on anything in a shared library. I loaded the vm via

Re: [doc][drlvm] The document Getting started with DRL is outdated

2006-11-13 Thread Egor Pasko
On the 0x220 day of Apache Harmony Nadezhda Morozova wrote: -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of Egor Pasko Sent: Monday, November 13, 2006 12:40 PM To: harmony-dev@incubator.apache.org Subject: Re: [doc][drlvm] The document Getting started with DRL is

[drlvm][threading] Which group to choose for new thread?

2006-11-13 Thread Evgueni Brevnov
Hi community, I'd like to discuss one particular feature of DRL threading library with you. TM provides four interface functions that can be used to create a new native thread or attach existing one to TM. Here they are: 1. hythread_create(hythread_t *handle, UDATA stacksize, UDATA priority,

Re: [drlvm][threading] Should hythread_monitor_init() aquire the monitor?

2006-11-13 Thread Evgueni Brevnov
Hello Artem, Are you 100% sure? I've looked at the classlib's implementation and can't find where the monitor is acquired. Moreover if you look at the initializeSignalTools() located in modules\portlib\src\main\native\port\linux\hysignal.c you will find that it initializes new monitors with

Re: [drlvm][threading] Should hythread_monitor_init() aquire the monitor?

2006-11-13 Thread Evgueni Brevnov
Could someone familiar with classlib's implementation comment on that ? Thanks in advance. Evgueni On 11/13/06, Evgueni Brevnov [EMAIL PROTECTED] wrote: Hello Artem, Are you 100% sure? I've looked at the classlib's implementation and can't find where the monitor is acquired. Moreover if

Re: [crypto] SHA-1 not implemented?

2006-11-13 Thread Yuri Dolgov
Sure, see https://issues.apache.org/jira/browse/HARMONY-2163 Thanks, Yuri. On 11/10/06, Tim Ellison [EMAIL PROTECTED] wrote: Good catch Yuri -- please log it into JIRA. Regards, Tim Yuri Dolgov wrote: Hello, I've made an investigation and found out the root of the problem. It seems

[classlib][swing][awt] fork mode for the tests

2006-11-13 Thread Mikhail Loenko
I've run swing and awt tests with fork mode once a dozen times on Windows and Linux. All tests passed. So to speed up precommit testing I'd like to change fork mode in swign and awt to ${hy.test.forkmode} like it's done in other modules. Objections? Thanks, Mikhail

RE: Re: [doc][drlvm] The document Getting started with DRL is outdated

2006-11-13 Thread Morozova, Nadezhda
Successfully added a patch to fix getting Started outdated content to http://issues.apache.org/jira/browse/HARMONY-2150. The patch is not final - need help to add more content. The current structure is: - overview - running an app - eclipse-related (now much shorter) -- running an app

Re: [drlvm][test]Exclude some tests from build test target, make 'build test' pass

2006-11-13 Thread Elena Semukhina
On 10/26/06, Elena Semukhina [EMAIL PROTECTED] wrote: After H-1823 has been committed, I still see intermittent failures of drlvm kernel ThreadTest. Normally this test passes but today I got ThreadTest.testInterrupt_Sleeping() and testGetStateBlocked() failures. There is H-1789 for the first

Re: Japi diffs for harmony

2006-11-13 Thread Stepan Mishura
On 11/9/06, Ivanov, Alexey A wrote: -Original Message- From: Nathan Beyer [mailto:[EMAIL PROTECTED] Sent: Thursday, November 09, 2006 5:49 AM To: harmony-dev@incubator.apache.org Subject: Re: Japi diffs for harmony No problem on the name change, but doesn't what Stuart is talking about

[testing][nio] 2 tests fail on the SUSE linux

2006-11-13 Thread Vladimir Ivanov
Hello everyone, today my cruise control failed on the linux SUSE box with 2 errors in the org.apache.harmony.nio.tests.java.nio.channels.SocketChannelTest test. Could somebody reproduce/ fix this issue? Thanks, Vlaidimir Tests testSocket_configureblocking and

Deleted version_svn_tag.h

2006-11-13 Thread Salikh Zakirov
Nathan Beyer wrote: I deleted the file and added it to the ignore property. For those of us poor souls not using SVN directly this deletion broke the build, as the file version_svn_tag.h is not available directly now. The issue HARMONY-2168 provides a fix: copy the file.

[app-testing] Geronimo

2006-11-13 Thread Tim Ellison
Has anyone tried running Geronimo recently? The wiki page [1] looks quite out of date. Just wondering how we are doing? [1] http://wiki.apache.org/harmony/Apache_Geronimo Regards, Tim -- Tim Ellison ([EMAIL PROTECTED]) IBM Java technology centre, UK.

RE: [doc][drlvm] The document Getting started with DRL is outdated

2006-11-13 Thread Morozova, Nadezhda
What about the portions of the Unicode copyright? Thank you, Nadya Morozova -Original Message- From: Geir Magnusson Jr. [mailto:[EMAIL PROTECTED] Sent: Monday, November 13, 2006 5:06 PM To: harmony-dev@incubator.apache.org Subject: Re: [doc][drlvm] The document Getting started with

Re: Deleted version_svn_tag.h

2006-11-13 Thread Geir Magnusson Jr.
Patch applied - please test Salikh Zakirov wrote: Nathan Beyer wrote: I deleted the file and added it to the ignore property. For those of us poor souls not using SVN directly this deletion broke the build, as the file version_svn_tag.h is not available directly now. The issue HARMONY-2168

Re: [doc][drlvm] The document Getting started with DRL is outdated

2006-11-13 Thread Geir Magnusson Jr.
what's the link we're talking about? Morozova, Nadezhda wrote: What about the portions of the Unicode copyright? Thank you, Nadya Morozova -Original Message- From: Geir Magnusson Jr. [mailto:[EMAIL PROTECTED] Sent: Monday, November 13, 2006 5:06 PM To:

Re: [app-testing] Geronimo

2006-11-13 Thread Sian January
I haven't tried since June I'm afraid. Sian On 13/11/06, Tim Ellison [EMAIL PROTECTED] wrote: Has anyone tried running Geronimo recently? The wiki page [1] looks quite out of date. Just wondering how we are doing? [1] http://wiki.apache.org/harmony/Apache_Geronimo Regards, Tim -- Tim

RE: [doc][drlvm] The document Getting started with DRL is outdated

2006-11-13 Thread Morozova, Nadezhda
http://incubator.apache.org/harmony/subcomponents/drlvm/getting_started. html#Disclaimer http://incubator.apache.org/harmony/subcomponents/drlvm/developers_guide .html - these seem to have apache and intel copyright (can be resolved) + the Unicode disclaimer. Thank you, Nadya Morozova

Re: [doc][drlvm] The document Getting started with DRL is outdated

2006-11-13 Thread Geir Magnusson Jr.
Additional terms from the Database ? LOL Just get rid of it all. Those terms are in our notice file, and that's enough. Unicode didn't put them there, anyway. geir Morozova, Nadezhda wrote: http://incubator.apache.org/harmony/subcomponents/drlvm/getting_started. html#Disclaimer

RE: [doc][drlvm] The document Getting started with DRL is outdated

2006-11-13 Thread Morozova, Nadezhda
Ok, thanks. I somehow feel dumb with anything that deals with legal - copyrights, contracts, licenses...oh! I'd erase all excess disclaimers from our website with pleasure :) Thank you, Nadya Morozova -Original Message- From: Geir Magnusson Jr. [mailto:[EMAIL PROTECTED] Sent: Monday,

Re: [drlvm][threading] Should hythread_monitor_init() aquire the monitor?

2006-11-13 Thread Artem Aliev
Oops, You were right. I take a llook into classlib hythread code. It looks like I incorrectly understand the documentation. This is a bug. Thanks Artem On 11/13/06, Evgueni Brevnov [EMAIL PROTECTED] wrote: Could someone familiar with classlib's implementation comment on that ? Thanks

[doc] site.css

2006-11-13 Thread Ivanov, Alexey A
Hi all, I've updated formatting of definition lists DL on site: https://issues.apache.org/jira/browse/HARMONY-2173 The new formatting looks more natural to me; the screenshots can be found in the JIRA issue. When editing site.css I faced that there are many different styles of indentation

Re: [drlvm][jvmti][testing] I want to add JVMTI tests to drlvm commit checks

2006-11-13 Thread Gregory Shimansky
Geir Magnusson Jr. wrote: Gregory Shimansky wrote: One reason would be is that I don't know ant well enough to redesign the whole stuff all together. I used the existing setup and init targets which take care of including ancontrip and cctask jars. If you ask me, I'd prefer make in the

Re: [drlvm][em64t] build fails

2006-11-13 Thread Gregory Shimansky
Gregory Shimansky wrote: On Saturday 11 November 2006 02:36 Pavel Pervov wrote: Gregory, Could you look at https://issues.apache.org/jira/browse/HARMONY-2152. I believe it'll fix the build. Thank you for a quick fix. The build works now. Don't try to run acceptance tests though. The

Re: Re: [classlib][pack200] Status update

2006-11-13 Thread Alexei Zakharov
Oh, and I've discovered that the default Sun implementation doesn't actually allow you to replace it with another implementation unless it's on the boot classpath. Have you tried endorsed dirs -Djava.endorsed.dirs=... [1]? Seems it was specially designed for this purpose. [1]

Re: [drlvm] drlvm and gdb and shared libraries

2006-11-13 Thread Ivan Volosyuk
Well, I was able to use breakpoints for the libraries still not loaded. Just type: 'br func' and it will inform you that the library is not loaded yet and will suggest to make it pending on future shared library load. When the library will be loaded the breakpoint will be automatically enabled.

Re: [vm][classlib] hythr library

2006-11-13 Thread Andrey Chernyshev
On 11/13/06, Alexey Petrenko [EMAIL PROTECTED] wrote: Guys, is there any progress in making possible for IBM and DRL VM to use the same hythr library? I imagine they would have to share some more VM internals first, like GC or object layout interface, before they can migrate to a common

Re: [drlvm][em64t] build fails

2006-11-13 Thread Pavel Afremov
Hello I think that Stack test should print pass if no stack overflow error is happened. Test should check processing of this error but not existing of it. Optimizing compiler can do very deep recursion unrolling, and SOE can happen never in this case. Thanks Pavel Afremov. On

RE: [doc] site.css

2006-11-13 Thread Morozova, Nadezhda
My two cents below. Thank you, Nadya Morozova -Original Message- From: Ivanov, Alexey A [mailto:[EMAIL PROTECTED] Sent: Monday, November 13, 2006 5:56 PM To: harmony-dev@incubator.apache.org Subject: [doc] site.css Hi all, I've updated formatting of definition lists DL on site:

Re: [drlvm][em64t] build fails

2006-11-13 Thread Gregory Shimansky
Pavel Afremov wrote: Hello I think that Stack test should print pass if no stack overflow error is happened. Test should check processing of this error but not existing of it. Optimizing compiler can do very deep recursion unrolling, and SOE can happen never in this case. So what is

Re: [drlvm][test]Exclude some tests from build test target, make 'build test' pass

2006-11-13 Thread Gregory Shimansky
On Monday 13 November 2006 15:51 Elena Semukhina wrote: On 10/26/06, Elena Semukhina [EMAIL PROTECTED] wrote: After H-1823 has been committed, I still see intermittent failures of drlvm kernel ThreadTest. Normally this test passes but today I got ThreadTest.testInterrupt_Sleeping() and

Re: [vm][classlib] hythr library

2006-11-13 Thread Angela Lin
Hmm... Pre-Harmony, the IBM VM + classlib used the same thread library. When the classlib was contributed, I guess they forked the thread lib and changed the names of the functions. (I'm only speculating since I wasn't involved in that process.) hythr should be virtually identical to a subset of

Re: [drlvm] drlvm and gdb and shared libraries

2006-11-13 Thread Alexei Fedotov
Let me point out the second section of Egor's manual - LD_LIBRARY_PATH is the only thing which should be additionally configured. On 13 Nov 2006 15:46:44 +0600, Egor Pasko [EMAIL PROTECTED] wrote: On the 0x220 day of Apache Harmony Geir Magnusson, Jr. wrote: I have a dumb question - I was

Re: Re: Re: [classlib][pack200] Status update

2006-11-13 Thread Alex Blewitt
No, it's a bug (see http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6489723). Also note that the list of packages that are listed at the URL you gave specify the full set of packages that can be overridden, and the pack200 classes aren't on there :-) The Pack200 stuff is supposed to be like

Re: [general] creation of jdktools

2006-11-13 Thread Ilya Neverov
Nathan, thank you for creation of the trunk/working_jdktools. Geir, Please look at comment and scripts attached to the HARMONY-2180. I tried to make them trivial so that reviewing doesn't take much time. Proposed build system has two levels of enrties: - working_jdktools/build.xml which can be

Re: [drlvm][em64t] build fails

2006-11-13 Thread Stefano Mazzocchi
Gregory Shimansky wrote: Gregory Shimansky wrote: On Saturday 11 November 2006 02:36 Pavel Pervov wrote: Gregory, Could you look at https://issues.apache.org/jira/browse/HARMONY-2152. I believe it'll fix the build. Thank you for a quick fix. The build works now. Don't try to run

Re: [drlvm][em64t] build fails

2006-11-13 Thread Gregory Shimansky
Stefano Mazzocchi wrote: Gregory Shimansky wrote: Gregory Shimansky wrote: On Saturday 11 November 2006 02:36 Pavel Pervov wrote: Gregory, Could you look at https://issues.apache.org/jira/browse/HARMONY-2152. I believe it'll fix the build. Thank you for a quick fix. The build works now.

Re: [vm][classlib] hythr library

2006-11-13 Thread Alexei Fedotov
Andrey, Angela, If I understood a problem correctly Alexey asked to make a developer's life easier. It looks like now a developer should rebuild class library, then to rebuild DRLVM each time he wants to check his class library changes with DRLVM. Can we simplify the procedure? For example, if

Re: [drlvm][threading] Should hythread_monitor_init() aquire the monitor?

2006-11-13 Thread Gregory Shimansky
Evgueni Brevnov wrote: hmmm strange. The patch was tested on multi-processor system running SUSE9. I will check if the patch misses something. Anyway, we need to wait with the patch submission until we 100% sure how hythread_monitor_init should behave. Thanks Evgueni On 11/11/06, Gregory

Re: [drlvm][threading] Should hythread_monitor_init() aquire the monitor?

2006-11-13 Thread Alexei Fedotov
Evgueni, That was great. Artem, It's nice to see you online. Could you please check the last comments to http://issues.apache.org/jira/browse/HARMONY-1904 and decide what should we do about this issue?

Please set a Patch available flag for H-1669 Was: [drlvm] [testing] Excluding commit tests until the problem is fixed

2006-11-13 Thread Fedotov, Alexei A
Elena, Could you please set Patch available flag for the following issue to attract committer's attention to this issue? http://issues.apache.org/jira/browse/HARMONY-1669 Classlib test tests/api/java/io/PipedInputStreamTest hangs on Windows 2003 (After the last JIRA configuration changes a

Re: [testing][nio] 2 tests fail on the SUSE linux

2006-11-13 Thread Alexei Fedotov
Hello, Vladimir, I have checked JIRA and http://harmonytest.org. This looks like a new issue. I wonder if it could be a result of some recent fix? With best regards, Alexei On 11/13/06, Vladimir Ivanov [EMAIL PROTECTED] wrote: Hello everyone, today my cruise control failed on the linux SUSE

Re: [drlvm][em64t] build fails

2006-11-13 Thread Gregory Shimansky
On Tuesday 14 November 2006 00:51 Gregory Shimansky wrote: I'm going to try to do this on my Gentoo at home now. It is mostly bleeding edge up to date installation. Now I see what you're talking about. The threading library of classlib doesn't compile on x86_64. It fails with the same error

Re: [drlvm][em64t] build fails

2006-11-13 Thread Stefano Mazzocchi
Gregory Shimansky wrote: On Tuesday 14 November 2006 00:51 Gregory Shimansky wrote: I'm going to try to do this on my Gentoo at home now. It is mostly bleeding edge up to date installation. Now I see what you're talking about. The threading library of classlib doesn't compile on x86_64.

Re: [jira] Patch available setting

2006-11-13 Thread Alexei Fedotov
Sian, This is a good catch. I have the following justification for 3. I think it is better process when a bug submitter validates a patch *before* commit to ensure that it is good. Also it validates the patch *after*. This worth to be requested via public alias. Why a bug submitter should do a

Re: [testing][nio] 2 tests fail on the SUSE linux

2006-11-13 Thread Jimmy, Jing Lv
Vladimir Ivanov wrote: Hello everyone, today my cruise control failed on the linux SUSE box with 2 errors in the org.apache.harmony.nio.tests.java.nio.channels.SocketChannelTest test. Could somebody reproduce/ fix this issue? Thanks, Vlaidimir Tests testSocket_configureblocking and

Re: [testing][nio] 2 tests fail on the SUSE linux

2006-11-13 Thread Tim Ellison
Jimmy, Jing Lv wrote: However IMO it was Support_PortManager.getNextPort() cause the problem. This method, as we already know, is unsafe. Thus the test is not stable sometimes, though it appears in-frequently. Agreed, I've mentioned this before. We may find a way to fix it, e.g, try to bind

Re: [doc] site.css

2006-11-13 Thread Nathan Beyer
Spaces only please! -Nathan On 11/13/06, Ivanov, Alexey A [EMAIL PROTECTED] wrote: Hi all, I've updated formatting of definition lists DL on site: https://issues.apache.org/jira/browse/HARMONY-2173 The new formatting looks more natural to me; the screenshots can be found in the JIRA issue.

Re: Deleted version_svn_tag.h

2006-11-13 Thread Nathan Beyer
Not using SVN directly? Do I even want to ask? In any case, I tested it after I deleted the file and the file was regenerated during the build. Did I miss something? I thought this bit was already in the scripts. -Nathan On 11/13/06, Salikh Zakirov [EMAIL PROTECTED] wrote: Nathan Beyer wrote:

Re: [classlib][swing] Serialization of Swing classes

2006-11-13 Thread Nathan Beyer
On 11/13/06, Ivanov, Alexey A [EMAIL PROTECTED] wrote: -Original Message- From: Tim Ellison [mailto:[EMAIL PROTECTED] Sent: Sunday, November 12, 2006 1:12 AM To: harmony-dev@incubator.apache.org Subject: Re: [classlib][swing] Serialization of Swing classes Nathan Beyer wrote: Runtime

Re: [classlib][swing][awt] fork mode for the tests

2006-11-13 Thread Mikhail Loenko
done in 474664 2006/11/14, Alexei Fedotov [EMAIL PROTECTED]: +1 to use a uniform property for all modules On 11/13/06, Mikhail Loenko [EMAIL PROTECTED] wrote: I've run swing and awt tests with fork mode once a dozen times on Windows and Linux. All tests passed. So to speed up precommit

Re: [classlib][swing] Serialization of Swing classes

2006-11-13 Thread Stepan Mishura
On 11/13/06, Ivanov, Alexey A wrote: -Original Message- From: Tim Ellison Sent: Sunday, November 12, 2006 1:12 AM To: harmony-dev@incubator.apache.org Subject: Re: [classlib][swing] Serialization of Swing classes Nathan Beyer wrote: Runtime optimization - I'm not positive of this,

Japitools 0.9.7 released

2006-11-13 Thread Stuart Ballard
I'm thrilled to be able to announce four things: 1) After far too long a wait, Japitools 0.9.7 Life, liberty[1] and the pursuit of Japiness has been released. This release includes the following improvements over 0.9.5: - Almost complete 1.5 language support, including generics, enums and

Re: [drlvm] drlvm and gdb and shared libraries

2006-11-13 Thread Egor Pasko
On the 0x220 day of Apache Harmony Ivan Volosyuk wrote: Well, I was able to use breakpoints for the libraries still not loaded. Just type: 'br func' and it will inform you that the library is not loaded yet and will suggest to make it pending on future shared library load. When the library

Re: [drlvm][threading] Should hythread_monitor_init() aquire the monitor?

2006-11-13 Thread Evgueni Brevnov
Gregory, I can't reproduce the problem described by you on my local Ubuntu machine. So I can only guess. And my guess is that mapPortLibSignalToUnix can't find corresponding signal in the map. That's why you have undefined sig (-1215196204) in jsig_handler. I can think of two reasons why

Re: Re: [doc][drlvm] The document Getting started with DRL is outdated

2006-11-13 Thread Pavel Ozhdikhin
Nadya, I've looked through your patch. Please see my comments in JIRA: http://issues.apache.org/jira/browse/HARMONY-2150 Do you think we can add a link to debugging vmjit doc (or to wiki)? I don't think we need it - it is rather info for developers than for users. Any ideas on what to

RE: Re: [doc][drlvm] The document Getting started with DRL is outdated

2006-11-13 Thread Morozova, Nadezhda
Pavel, Thanks for your comments. I'll work through the examples and post an updated patch soon. As for the Configuring VM operation - can we at least have a couple of examples in the form of scenarios or something? The wiki page only gives a reference, an enumeration of available options. Using

Re: [drlvm] drlvm and gdb and shared libraries

2006-11-13 Thread Egor Pasko
On the 0x221 day of Apache Harmony Egor Pasko wrote: On the 0x220 day of Apache Harmony Ivan Volosyuk wrote: Well, I was able to use breakpoints for the libraries still not loaded. Just type: 'br func' and it will inform you that the library is not loaded yet and will suggest to make it

Re: Re: [doc][drlvm] The document Getting started with DRL is outdated

2006-11-13 Thread Pavel Ozhdikhin
OK then for Configuring VM section JIT options proposed by Egor will be suitable: -Xem:jet - use only baseline JIT compiler -Xem:opt - use only optimising JIT compiler -Xtrace:em - print method compilation events I'd also add: -Xem:server - enable dynamic optimization mode tuned for

Re: [drlvm][test]Exclude some tests from build test target, make 'build test' pass

2006-11-13 Thread Alexey Varlamov
2006/11/14, Gregory Shimansky [EMAIL PROTECTED]: On Monday 13 November 2006 15:51 Elena Semukhina wrote: On 10/26/06, Elena Semukhina [EMAIL PROTECTED] wrote: After H-1823 has been committed, I still see intermittent failures of drlvm kernel ThreadTest. Normally this test passes but today I

Re: [vm][classlib] hythr library

2006-11-13 Thread Alexey Petrenko
2006/11/14, Alexei Fedotov [EMAIL PROTECTED]: Andrey, Angela, If I understood a problem correctly Alexey asked to make a developer's life easier. Yes :) It looks like now a developer should rebuild class library, then to rebuild DRLVM each time he wants to check his class library changes

Re: [jira] Patch available setting

2006-11-13 Thread Alexey Petrenko
From the one hand, fix checking by issue creator is good... But from the other hand, bug submitter could be a person who is using Harmony snapshot and does not know how to apply the patch and build Harmony... It is also possible that issue creator is not subscribed to Harmony dev list... So I

Re: [testing][nio] 2 tests fail on the SUSE linux

2006-11-13 Thread Alexey Petrenko
2006/11/14, Tim Ellison [EMAIL PROTECTED]: Jimmy, Jing Lv wrote: However IMO it was Support_PortManager.getNextPort() cause the problem. This method, as we already know, is unsafe. Thus the test is not stable sometimes, though it appears in-frequently. Agreed, I've mentioned this before.

Re: Japitools 0.9.7 released

2006-11-13 Thread Alexey Petrenko
Great news! Thanks, Stuart, for creation and support of such useful software! SY, Alexey 2006/11/14, Stuart Ballard [EMAIL PROTECTED]: I'm thrilled to be able to announce four things: 1) After far too long a wait, Japitools 0.9.7 Life, liberty[1] and the pursuit of Japiness has been

Re: [doc] site.css

2006-11-13 Thread Alexey Petrenko
2006/11/14, Nathan Beyer [EMAIL PROTECTED]: Spaces only please! +1 On 11/13/06, Ivanov, Alexey A [EMAIL PROTECTED] wrote: Hi all, I've updated formatting of definition lists DL on site: https://issues.apache.org/jira/browse/HARMONY-2173 The new formatting looks more natural to me; the