This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

FYI: Cygnus is no longer (CNI and CYGNUS LOCAL)


Hi,

This patch removes a few old Cygnus references.
CNI now stands for Compiled Native Interface.
CYGNUS LOCAL code comments are now GCJ LOCAL comments.


2003-07-08  Mark Wielaard  <mark@klomp.org>

       * gcj.texi: CNI now expands to Compiled Native Interface.


2003-07-08  Mark Wielaard <mark@klomp.org>

       * gcj/cni.h: CNI now expands to Compiled Native Interface.

       * java/lang/e_pow.c: CYGNUS LOCAL should be GCJ LOCAL.
       * java/lang/fdlibm.h: Likewise.


Cheers,

Mark
Index: gcc/java/ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/gcc/java/ChangeLog,v
retrieving revision 1.1224
diff -u -r1.1224 ChangeLog
--- gcc/java/ChangeLog	8 Jul 2003 16:00:54 -0000	1.1224
+++ gcc/java/ChangeLog	8 Jul 2003 20:58:20 -0000
@@ -1,3 +1,7 @@
+2003-07-08  Mark Wielaard  <mark@klomp.org>
+
+	* gcj.texi: CNI now expands to Compiled Native Interface.
+
 2003-07-08  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
 
 	* Make-lang.in (java/gcj.dvi): Use PWD_COMMAND.
Index: gcc/java/gcj.texi
===================================================================
RCS file: /cvs/gcc/gcc/gcc/java/gcj.texi,v
retrieving revision 1.53
diff -u -r1.53 gcj.texi
--- gcc/java/gcj.texi	30 Mar 2003 16:56:33 -0000	1.53
+++ gcc/java/gcj.texi	8 Jul 2003 20:58:21 -0000
@@ -115,7 +115,7 @@
 * Invoking jv-convert:: Converting from one encoding to another
 * Invoking rmic::        Generate stubs for Remote Method Invocation.
 * Invoking rmiregistry:: The remote object registry.
-* About CNI::           Description of the Cygnus Native Interface
+* About CNI::           Description of the Compiled Native Interface
 * System properties::   Modifying runtime behavior of the libgcj library
 * Resources::		Where to look for more information
 @end menu
@@ -1031,7 +1031,7 @@
 @node About CNI
 @chapter About CNI
 
-This documents CNI, the Cygnus Native Interface,
+This documents CNI, the Compiled Native Interface,
 which is is a convenient way to write Java native methods using C++.
 This is a more efficient, more convenient, but less portable
 alternative to the standard JNI (Java Native Interface).
Index: libjava/ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/libjava/ChangeLog,v
retrieving revision 1.2017
diff -u -r1.2017 ChangeLog
--- libjava/ChangeLog	8 Jul 2003 04:49:16 -0000	1.2017
+++ libjava/ChangeLog	8 Jul 2003 20:58:28 -0000
@@ -1,3 +1,10 @@
+2003-07-08  Mark Wielaard <mark@klomp.org>
+
+	* gcj/cni.h: CNI now expands to Compiled Native Interface.
+
+	* java/lang/e_pow.c: CYGNUS LOCAL should be GCJ LOCAL.
+	* java/lang/fdlibm.h: Likewise.
+
 2003-07-07  Adam Megacz <adam@xwt.org>
 
         * posix.cc: added #include<stdio.h>
Index: libjava/gcj/cni.h
===================================================================
RCS file: /cvs/gcc/gcc/libjava/gcj/cni.h,v
retrieving revision 1.9
diff -u -r1.9 cni.h
--- libjava/gcj/cni.h	10 Apr 2002 20:36:02 -0000	1.9
+++ libjava/gcj/cni.h	8 Jul 2003 20:58:28 -0000
@@ -1,5 +1,5 @@
 // gcj/cni.h -*- c++ -*-
-// This file describes the Cygnus Native Interface, CNI.
+// This file describes the Compiled Native Interface, CNI.
 // It provides a nicer interface to many of the things in gcj/javaprims.h.
 
 /* Copyright (C) 1998, 1999, 2002  Free Software Foundation
Index: libjava/java/lang/e_pow.c
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/lang/e_pow.c,v
retrieving revision 1.2
diff -u -r1.2 e_pow.c
--- libjava/java/lang/e_pow.c	24 Jun 1999 20:05:49 -0000	1.2
+++ libjava/java/lang/e_pow.c	8 Jul 2003 20:58:29 -0000
@@ -179,7 +179,7 @@
 	}
 
     /* (x<0)**(non-int) is NaN */
-    /* CYGNUS LOCAL: This used to be
+    /* GCJ LOCAL: This used to be
 	if((((hx>>31)+1)|yisint)==0) return (x-x)/(x-x);
        but ANSI C says a right shift of a signed negative quantity is
        implementation defined.  */
Index: libjava/java/lang/fdlibm.h
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/lang/fdlibm.h,v
retrieving revision 1.4
diff -u -r1.4 fdlibm.h
--- libjava/java/lang/fdlibm.h	5 Sep 2000 11:05:58 -0000	1.4
+++ libjava/java/lang/fdlibm.h	8 Jul 2003 20:58:29 -0000
@@ -15,7 +15,7 @@
 #include <config.h>
 #include <stdlib.h>
 
-/* CYGNUS LOCAL: Include files.  */
+/* GCJ LOCAL: Include files.  */
 #include "ieeefp.h"
 
 #include "mprec.h"

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]