summaryrefslogtreecommitdiff
path: root/ChangeLog.native
blob: 28a1db5c83f2150f16f08d183f0b569618e8eda1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
2006-06-06  Guilhem Lavaux  <guilhem@kaffe.org>

	* Merged HEAD as of 2006-05-08.

2006-05-09  Guilhem Lavaux  <guilhem@kaffe.org>

	* native/jni/native-lib/cpnet.c
	(cpnet_getSocketTimeout, cpnet_setSocketTimeout): Reimplemented.
	(waitForWritable, waitForReadable): New functions.
	(socketTimeouts): New static global table to hold timeouts for all
	socket fds.
	(cpnet_accept,cpnet_bind,cpnet_sendTo,cpnet_recv,cpnet_recvFrom):
	Added waitForXXXX safeguards to handle socket timeouts.

	* native/jni/java-net/javanet.c
	(_javanet_accept): Check for the right error value when a timeout
	occurs.
	
2006-03-25  Guilhem Lavaux  <guilhem@kaffe.org>

	* native/jni/java-io/Makefile.am,
	native/jni/java-lang/Makefile.am,
	native/jni/java-net/Makefile.am,
	native/jni/java-nio/Makefile.am: Link to libclasspathnative.la now.

	* native/jni/native-lib/Makefile.am: Added cpproc.c

	* native/jni/native-lib/cpio.c: Implemented missing functions for
	CPIO.

	* native/jni/native-lib/cpnet.c
	(cpnet_getHostByName): Fixed address array initialization.
	
	* native/jni/native-lib/cpproc.c: Implemented.
	
2006-03-19  Guilhem Lavaux  <guilhem@kaffe.org>

	* Synchronized to GNU Classpath 2006-03-18.

2006-02-19  Guilhem Lavaux  <guilhem@kaffe.org>

	* configure.ac: Invoke GCC_ATTRIBUTE_UNUSED.

	* m4/gcc_attribute.m4: New file from ac_archive.
	
	* native/jni/java-net/javanet.c: Adapted to cpnet API
	modification.

	* native/jni/native-lib/cpnet.c: Implemented.

	* native/jni/native-lib/cpnet.h
	(cpnet_openSocketDatagram,
	cpnet_openSocketStream): These calls need an address family now.
	(cpnet_IPV4AddressToBytes,
	cpnet_bytesToIPV4Address): Convert the address to network order.
	
2006-02-19  Guilhem Lavaux  <guilhem@kaffe.org>

	* native/jni/java-io/java_io_VMFile.c,
	native/jni/java-nio/gnu_java_nio_channels_FileChannelImpl.c,
	native/jni/midi-dssi/dssi_data.h,
	native/jni/native-lib/cpio.c,
	native/jni/native-lib/cpmath.h: Removed cpmath
	dependency. Fixed coding style.

2006-02-18  Guilhem Lavaux  <guilhem@kaffe.org>

	* native/jni/java-lang/java_lang_VMProcess.c: Removed TARGET
	dependency. Simplified the JNI code by moving some part into the
	native layer.

	* native/jni/native-lib/cpproc.h: New interface to handle processes.

2006-02-18  Guilhem Lavaux  <guilhem@kaffe.org>

	* Resynchronized with GNU Classpath's HEAD branch.
	
2006-02-18  Guilhem Lavaux  <guilhem@kaffe.org>

	* native/jni/java-net/java_net_VMInetAddress.c: Fixed compilation
	errors. Removed any remaining TARGET invocations.

	* native/jni/java-net/javanet.c
	(_javanet_create_inetaddress): Removed spurious arr and
	octets. Fixed compilation errors.

	* native/jni/native-lib/cpnet.h
	(cpnet_getHostname, cpnet_getHostByName, cpnet_getHostByAddr,
	cpnet_setIPV4Any, cpnet_freeAddresses, cpnet_isIPV6Address,
	cpnet_isIPV4Address): New functions.
	(cpnet_bytesToIPV4Address): Fixed interface to be consistent with
	the rest.
	
2006-02-04  Guilhem Lavaux  <guilhem@kaffe.org>

	* Resynchronized with GNU Classpath's HEAD branch.
	
2006-01-28  Guilhem Lavaux  <guilhem@kaffe.org>

	* native/jni/java-io/java_io_VMFile.c,
	native/jni/java-net/gnu_java_net_VMPlainDatagramSocketImpl.c,
	native/jni/java-net/gnu_java_net_VMPlainSocketImpl.c,
	native/jni/java-net/javanet.c,
	native/jni/java-net/javanet.h: Adapted the VM layer code
	to the new native layer.

	* native/jni/native-lib/cpnet.h
	(cpnet_addMembership,
	cpnet_dropMembership,
	cpnet_getAvailableBytes): Added the declarations of
	some new functions.
	(cpnet_newIPV6Address,
	cpnet_IPV6AddressToBytes,
	cpnet_bytesToIPV6Address): Implemented.
	(cpnet_newIPV4Address): Initialize the sin_family field.

2006-01-28  Guilhem Lavaux  <guilhem@kaffe.org>

	* native/target: Removed.

	* configure.ac: Removed target from CLASSPATH_INCLUDES and
	Makefile generation.

	* native/jni/native-lib/Makefile.am,
	native/jni/native-lib/cpnet.h,
	native/jni/native-lib/cpnet.c
	native/jni/native-lib/cpio.h,
	native/jni/native-lib/cpio.c,
	native/jni/native-lib/cpmath.h: Imported new native compatibility
	layer.