UnicastConnectionManager.java (clients): Now package-private.

* gnu/java/rmi/server/UnicastConnectionManager.java (clients): Now
	package-private.
	(connections): Likewise.
	(scavenger): Likewise.
	* gnu/java/rmi/server/ConnectionRunnerPool.java (freelist): Now
	package-private.
	* gnu/java/rmi/server/UnicastRemoteCall.java (vec): Now
	package-private.
	(ptr): Likewise.
	* gnu/classpath/ServiceFactory.java (log): Now package-private.

From-SVN: r90206
This commit is contained in:
Tom Tromey 2004-11-06 23:38:51 +00:00 committed by Tom Tromey
parent ab6036c8fb
commit 9ec0f3c8f5
5 changed files with 26 additions and 8 deletions

View file

@ -65,8 +65,9 @@ public class UnicastConnectionManager
private static String localhost;
// use different maps for server/client type UnicastConnectionManager
private static Hashtable servers = new Hashtable();
private static Hashtable clients = new Hashtable();
private ArrayList connections; //client connection pool
// Package-private to avoid trampolines.
static Hashtable clients = new Hashtable();
ArrayList connections; //client connection pool
// make serverThread volatile for poll
private volatile Thread serverThread;
@ -74,7 +75,8 @@ private ServerSocket ssock;
String serverName;
int serverPort;
static private Thread scavenger;
// Package-private to avoid a trampoline.
static Thread scavenger;
// If client and server are in the same VM, serverobj represents server
Object serverobj;