Re: API clean up patch

2005-05-18 Thread Archie Cobbs
Jeroen Frijters wrote: Thanks. Looks good. The only change I would make is to make vmdata in ClassLoader package accessible instead of private. Good point.. I'll make that change. Thanks, -Archie __ Archie Cobbs

Re: API clean up patch

2005-05-18 Thread Archie Cobbs
into VMFoo classes. Thanks, -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list Classpath@gnu.org http://lists.gnu.org/mailman

Re: API clean up patch

2005-05-18 Thread Archie Cobbs
not trying to assume anything. I'm only trying to make it at least theoretically possible for a VM to use Classpath unmodified and still function properly. Thanks, -Archie __ Archie Cobbs *CTO, Awarix* http

Re: API clean up patch

2005-05-18 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list Classpath@gnu.org http://lists.gnu.org/mailman/listinfo/classpath

Re: API clean up patch

2005-05-18 Thread Archie Cobbs
object was dead. I think a patch for this would not be reasonable, as long as it played well with other VMs and had a big explanatory comment. That's a neat idea.. I hadn't thought of that. -Archie __ Archie Cobbs *CTO

API clean up patch

2005-05-17 Thread Archie Cobbs
this changes the API, but IMHO until the major version number of Classpath is a non-zero number we shouldn't worry about that too much.. better to clean house now while we still can.. Thanks, -Archie __ Archie Cobbs

Announcing JC virtual machine release 1.4.4

2005-05-11 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list Classpath@gnu.org http://lists.gnu.org/mailman/listinfo/classpath

Re: can Mauve help me test a PersonalJava implementation?

2005-05-01 Thread Archie Cobbs
for such a compiler? I've only ever used Sun (or blackdown) JDKs. Will Jikes help? Just compile with -target 1.4 (or whatever). -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com

Re: Proposal: merge Jessie as an external project

2005-04-28 Thread Archie Cobbs
satisfied.. though I still think it's a bad idea to have copies of code that originates elsewhere actually checked in to our repo. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com

Re: Proposal: merge Jessie as an external project

2005-04-27 Thread Archie Cobbs
more. If you want the full monty, it's easy to put that together, but don't force it on every one. Cheers, -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com

Re: Proposal: merge Jessie as an external project

2005-04-27 Thread Archie Cobbs
, let's create a separate project to do that. I'm curious what other Classpath developers think... -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com

Re: NIO charsets attacked by gang of rabid platypi

2005-04-19 Thread Archie Cobbs
the usefulness of using speed as a generic criterion. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list Classpath@gnu.org

Re: RPM spec file?

2005-03-31 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list Classpath@gnu.org http://lists.gnu.org/mailman/listinfo/classpath

Re: [cp-patches] RFC: Reflection refactoring

2005-03-22 Thread Archie Cobbs
these mutable objects though? -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath-patches mailing list Classpath-patches@gnu.org http

Re: [cp-patches] RFC: Reflection refactoring

2005-03-22 Thread Archie Cobbs
references are used, the idea sounds OK to me. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath-patches mailing list Classpath-patches

Re: RPM spec file

2005-03-22 Thread Archie Cobbs
. Certainly that can be done, at least for version_num. The release_num is really up to the packager I suppose. I've checked it into the scripts/ subdirectory: 2005-03-22 Archie Cobbs [EMAIL PROTECTED] * configure.ac: Generate scripts/classpath.spec. * scripts/classpath.spec.in

RPM spec file

2005-03-20 Thread Archie Cobbs
://www.classpath.org/ BuildRoot: %{_tmppath}/%{name}-root BuildRequires: jikes, zip Packager: Archie Cobbs [EMAIL PROTECTED] Source: ftp://ftp.gnu.org/pub/gnu/classpath/classpath-%{version_num}.tar.gz %description GNU Classpath, Essential Libraries for Java, is a GNU project to create free core class

JC virtual machine release 1.4.0

2005-03-20 Thread Archie Cobbs
a bytecode interpreter, and supports execution in either or mixed modes. http://jcvm.sourceforge.net/ Cheers, -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com

RPM spec file?

2005-03-18 Thread Archie Cobbs
.. but none for Classpath. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list Classpath@gnu.org http://lists.gnu.org/mailman

Re: GNU Classpath 0.14 released

2005-03-18 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list Classpath@gnu.org http://lists.gnu.org/mailman/listinfo/classpath

Re: RPM spec file?

2005-03-18 Thread Archie Cobbs
if this is straying off-topic...) Who do I ask about building a Debian package for JC? Thanks, -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com

[cp-patches] Fix for VMClassLoader.getResource()

2005-03-17 Thread Archie Cobbs
VMClassLoader.getResource() does not handle ZIP files on the boot loader class path. The attached patch fixes this. 2005-03-17 Archie Cobbs [EMAIL PROTECTED] * vm/reference/java/lang/VMClassLoader.java: handle ZIP files on the boot loader class path in getResources() I'll

Re: [cp-patches] Bug in java_nio_VMDirectByteBuffer.c

2005-03-16 Thread Archie Cobbs
Archie Cobbs wrote: Another common problem is using too many local native references, e.g., when creating and populating an array. You only get 16, and have to use DeleteLocalRef() to free up the ones you don't need anymore. Well, soon as I sent that I ran into exactly this problem. Don't have

[cp-patches] Bug in java_nio_VMDirectByteBuffer.c

2005-03-15 Thread Archie Cobbs
reference around classRawData. This fixes the problem for me. I'll commit the attached patch unless there are issues. 2005-03-15 Archie Cobbs [EMAIL PROTECTED] * native/jni/java-nio/java_nio_VMDirectByteBuffer.c: use global native reference to wrap persistent jclass variable. -Archie

[cp-patches] Fix for java_lang_VMProcess.c

2005-03-11 Thread Archie Cobbs
I've checked in the attached patch which fixes a core dump (in the child process) when a zero length command array is passed. 2005-03-11 Archie Cobbs [EMAIL PROTECTED] * native/jni/java-lang/java_lang_VMProcess.c: Fix segfault in the case that a zero length command array is passed

Re: benchmarks (was Re: Progress on a Classpath mauve suite?)

2005-03-10 Thread Archie Cobbs
with the world a natural consequence of good software conduct? :-) :-) -AC __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list Classpath@gnu.org

Re: Progress on a Classpath mauve suite?

2005-03-08 Thread Archie Cobbs
what run anywhere actually looks like. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list Classpath@gnu.org http

Re: Progress on a Classpath mauve suite?

2005-03-08 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list Classpath@gnu.org http://lists.gnu.org/mailman/listinfo/classpath

Re: Progress on a Classpath mauve suite?

2005-03-08 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list Classpath@gnu.org http://lists.gnu.org/mailman/listinfo/classpath

Progress on a Classpath mauve suite?

2005-03-07 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list Classpath@gnu.org http://lists.gnu.org/mailman/listinfo/classpath

Re: CORBA

2005-02-26 Thread Archie Cobbs
-foobar etc. Otherwise things may get to be too monolithic (i.e., inflexible). In particular I'm thinking of embedded system applications, which may only want/need a subset of the whole shebang. -Archie __ Archie Cobbs

Re: Classloaders JNI FindClass

2005-02-22 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any

JC Virtual Machine Release 1.3.2

2005-02-22 Thread Archie Cobbs
the CHANGES file for details. http://jcvm.sourceforge.net/ Cheers, -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments

Re: OT: Eclipse Additions

2005-02-21 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged

Re: OT: Eclipse Additions

2005-02-21 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any

Re: Merging GNU Classpath and gcc/libgcj bug databases

2005-02-14 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use

Re: Modules names and other details for new classpath bug product

2005-02-14 Thread Archie Cobbs
' Classpath files in the bootclasspath. By the way, this is what JC does and it works fine. An added advantage is that you can share a Classpath installation among more than one free VM. -Archie __ Archie Cobbs

Need bug confirmation

2005-02-05 Thread Archie Cobbs
With JC: [EMAIL PROTECTED] level=null Thanks! -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com import java.util.logging.*; import java.io.InputStream; public final class LogInit { public

Re: Need bug confirmation

2005-02-05 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com import java.util.*; import java.util.logging.*; import java.io.*; public class LogInit { public static void main(String[] args) throws Exception

Re: Need bug confirmation

2005-02-05 Thread Archie Cobbs
INFO: PASS With JC: [EMAIL PROTECTED] level=null Works with java, null with sablevm. Thanks! -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com

Re: Removing gnu/java/beans/EmptyBeanInfo.java and gnu/java/beans/info/ComponentBeanInfo.java

2005-01-27 Thread Archie Cobbs
needs additional code to handle classpath attribute(s) in the manifest. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any

Re: proposal: VMStackBrowser

2005-01-16 Thread Archie Cobbs
(or whatever) are possible and don't need to worry about the stack changing out from under them. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com

Re: GtkFileDialog Peer Patch

2005-01-15 Thread Archie Cobbs
://savannah.gnu.org/bugs/?func=detailitemitem_id=11598 -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list Classpath@gnu.org http

Re: GTK peer switching JNIEnv *?

2005-01-14 Thread Archie Cobbs
can be called from different Java threads, and therefore may receive different JNI interface pointers. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com

Re: GTK peer switching JNIEnv *?

2005-01-14 Thread Archie Cobbs
. This would ensure that the rigth JNIEnv * got used. However, the GTK stuff would also then have to keep track attaching and detaching threads to the VM as necessary. -Archie __ Archie Cobbs *CTO, Awarix

Re: GTK peer switching JNIEnv *?

2005-01-14 Thread Archie Cobbs
crossing into/out of native code to determine which thread it's actually dealing with. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath

GTK peer switching JNIEnv *?

2005-01-13 Thread Archie Cobbs
into the GTK code, has anyone else seen this? NOTE: this is with Classpath 0.12, so it might be fixed already (has anyone fixed a bug like this lately?) Thanks for any hints about where to look, etc. -Archie __ Archie Cobbs

Re: [cp-patches] Fix For Bug #11545 -- Locale Regression

2005-01-11 Thread Archie Cobbs
Thanks, -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list Classpath@gnu.org http://lists.gnu.org/mailman/listinfo

Re: VM support for GetDirectBufferAddress

2005-01-06 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential

Re: VM support for GetDirectBufferAddress

2005-01-06 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure

Re: VM support for GetDirectBufferAddress

2005-01-06 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information

Re: VM support for GetDirectBufferAddress

2005-01-06 Thread Archie Cobbs
or -1 if java.nio.Buffer.address is NULL. OK, now I understand. Thanks in advance for providing this patch. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice

Re: Mauve test question

2005-01-04 Thread Archie Cobbs
. Yep, that's a good classification. My point is simply that even with these problems, the tests are still useful, and people want to run them, so we need some way of handling them. -Archie __ Archie Cobbs *CTO

Announcing JC virtual machine release 1.3

2004-12-29 Thread Archie Cobbs
and installs separately from Classpath. There have also been several other important bug fixes and improvements. See the CHANGES file for details. http://jcvm.sourceforge.net/ Cheers, -Archie __ Archie Cobbs *CTO

Re: Mauve test question

2004-12-28 Thread Archie Cobbs
. !java.lang.ref.WeakReference.weakref !java.lang.ref.PhantomReference.phantom Let me know what changes we should make. I'll keep track, and let's try to come to an agreed-upon master file. Thanks, -Archie __ Archie Cobbs *CTO, Awarix

Re: Mauve test question

2004-12-28 Thread Archie Cobbs
Archie Cobbs wrote: OK, here's a first stab at a new mauve-classpath. This one is surely out of date on several counts, but happens to be the one I've been using for a long time. The other thing we need to come up with is a Classpath xfails file, containing those tests Classpath is known to fail

Re: Mauve test question

2004-12-28 Thread Archie Cobbs
batch_run. What is the advantage of using it? -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments, is for the sole use

Re: Mauve test question

2004-12-28 Thread Archie Cobbs
sits there getting stale. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended

Re: Mauve test question

2004-12-28 Thread Archie Cobbs
be added to the white list. Yes, that is the downside :-) -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments

Re: Mauve test question

2004-12-28 Thread Archie Cobbs
failures. Matter of taste I guess. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments, is for the sole use

Re: Mauve test question

2004-12-28 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any

Re: Mauve test question

2004-12-23 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list Classpath@gnu.org http://lists.gnu.org/mailman/listinfo/classpath

Re: Mauve test question

2004-12-23 Thread Archie Cobbs
definitely pass all these tests. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list Classpath@gnu.org http://lists.gnu.org

Mauve test question

2004-12-22 Thread Archie Cobbs
. Finally, who do we send Mauve patches to? Thanks, -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments

Re: StringBuilder

2004-12-17 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged

Re: StringBuilder

2004-12-17 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential and privileged information. Any

Re: Memory leak in java.lang.Thread ?

2004-12-10 Thread Archie Cobbs
. a phantom reference is not required. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments, is for the sole use

Re: Memory leak in java.lang.Thread ?

2004-12-08 Thread Archie Cobbs
problem e.g. in an application where you create a thread and then decide to start it later (or not) based on some last minute information. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com

Re: Memory leak in java.lang.Thread ?

2004-12-08 Thread Archie Cobbs
add a comment to the Javadoc for Thread.java like instances of Thread are not garbage collected until either they run and terminate or their ThreadGroup and all contained Threads are no longer referenced. -Archie __ Archie

Re: Memory leak in java.lang.Thread ?

2004-12-08 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential

Memory leak in java.lang.Thread ?

2004-12-07 Thread Archie Cobbs
collected. If it's not just me then I'll file a bug and propose a patch. Thanks, -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any

Re: Memory leak in java.lang.Thread ?

2004-12-07 Thread Archie Cobbs
Archie Cobbs wrote: What happens when you run this program: public class ThreadLeak { public static void main(String[] args) { while (true) new Thread(); } } I get an OutOfMemoryError. Now I realize that Sun's JDK has the same bug: http

JC virtual machine release 1.2.3

2004-11-28 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/classpath

Re: Build and install without compiling java files?

2004-11-26 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com * Confidentiality Notice: This e-mail message, including any attachments, is for the sole use of the intended recipient(s) and may contain confidential

Re: Build and install without compiling java files?

2004-11-26 Thread Archie Cobbs
initialization dependencies, because we'd have to do Properties.load(Class.getResourceAsStream()) early in the startup process to get these values. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com

Build and install without compiling java files?

2004-11-25 Thread Archie Cobbs
that this glibj.zip has the default Configuration.java and that is acceptable to the builder, why not provide a way to configure the build so you can just install glibj.zip as shipped? Thanks, -Archie __ Archie Cobbs *CTO

Re: Build and install without compiling java files?

2004-11-25 Thread Archie Cobbs
tarball. Just curious.. why do you say that? -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list [EMAIL PROTECTED] http

Re: java.lang.System changes

2004-11-10 Thread Archie Cobbs
VMClassLoader.getSystemClassLoader() is invoked after System.properties is created, so System.getProperty() should work when URL uses it.. ? I haven't actually tried this so I'm likely just missing something. -Archie __ Archie

Re: Patch for gnu_java_net_PlainDatagramSocketImpl.c

2004-10-29 Thread Archie Cobbs
, yet you are still comparing it to -1 .. so something seems not quite right. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath

Re: Moving system properties to gnu.classpath.*

2004-10-12 Thread Archie Cobbs
right, nevermind :-) -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman

Re: Moving system properties to gnu.classpath.*

2004-10-12 Thread Archie Cobbs
by the bootstrap loader. Do you have an example source file that demonstrates this bug? -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com

Re: Moving system properties to gnu.classpath.*

2004-10-12 Thread Archie Cobbs
) at java.lang.Class.newInstance0(Class.java:278) at java.lang.Class.newInstance(Class.java:261) at Crash.main(Crash.java:58) Maybe this has been fixed in 1.4.2? -Archie __ Archie Cobbs *CTO, Awarix

Re: Moving system properties to gnu.classpath.*

2004-10-11 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/classpath

Re: Moving system properties to gnu.classpath.*

2004-10-11 Thread Archie Cobbs
().getClassLoader() to check for itself, and refusing to function if not the boot loader? Then we skip all the security stuff. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com

Re: Moving system properties to gnu.classpath.*

2004-10-11 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/classpath

Re: Moving system properties to gnu.classpath.*

2004-10-08 Thread Archie Cobbs
it difficult in the first place, then no hacks are required in either Classpath or the VM. Not sure if this is possible or not though.. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com

Re: Moving system properties to gnu.classpath.*

2004-10-07 Thread Archie Cobbs
restrictions, allowing access to gnu.classpath remotely. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list [EMAIL

Re: bug 10491 was Re: More astonishing progress in japi scores

2004-10-07 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/classpath

Re: bug 10491 was Re: More astonishing progress in japi scores

2004-10-07 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/classpath

Re: finding method efficiently

2004-09-28 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/classpath

Re: java.lang.Class.newinstance(): exceptions; desired behavior?

2004-09-23 Thread Archie Cobbs
compatibility is best, however repulsive. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list [EMAIL PROTECTED] http

Re: java.lang.Class.newinstance(): exceptions; desired behavior?

2004-09-23 Thread Archie Cobbs
see.. you mean, it's working as designed :-) -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list [EMAIL PROTECTED] http

Re: End of the month - where is the new snapshot?

2004-08-31 Thread Archie Cobbs
people at it as external extension library. I agree.. Classpath should avoid trying to duplicate work that can easily be obtained (freely, of course :-) elsewhere.. -Archie __ Archie Cobbs *CTO, Awarix

Re: (no subject)

2004-07-28 Thread Archie Cobbs
BeOS and UNIX? E.g., do you have signals? mmap? use gcc compiler? ELF binaries? Etc. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com

Re: automated mauve reports

2004-07-19 Thread Archie Cobbs
which shows the failure message that would have been displayed had the test failed.. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com

Announcing JC release 1.2.1

2004-07-13 Thread Archie Cobbs
://jcvm.sourceforge.net/ Cheers, -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list [EMAIL PROTECTED] http

Re: A query on the classloader architecture

2004-07-12 Thread Archie Cobbs
and load the rest using tftp, all the code to do that would be in the Java part. Thanks.. that makes sense. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com

Re: A query on the classloader architecture

2004-07-11 Thread Archie Cobbs
__ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/classpath

Re: classpath API version

2004-07-09 Thread Archie Cobbs
is implemented yet. -Archie __ Archie Cobbs *CTO, Awarix* http://www.awarix.com ___ Classpath mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman

Re: A query on the classloader architecture

2004-07-09 Thread Archie Cobbs
it simply The Sun API spec clearly states that Class.getClassLoader() may return null, and in fact MUST return null for primitive type Class objects. So why worry about obviously buggy software? -Archie __ Archie Cobbs

<    1   2   3   >