Make a copy of the old ZipLib
[mono.git] / mcs / class / Mono.Posix / Mono.Unix.Native / ChangeLog
1 2005-11-08  Jonathan Pryor <jonpryor@vt.edu>
2
3         * Stdlib.cs: Implement IEquatable<FilePosition> for FilePosition.
4         * Syscall.cs: Provide GetHashCode(), Equals(), operator==, operator!= for
5           all structure types.  Implement IEquatable<T> for all "value type" 
6           structs and classes.
7
8 2005-11-07  Jonathan Pryor <jonpryor@vt.edu>
9
10         * Syscall.cs: *xattr functions should use the FileNameMarshaler for filenames.
11
12 2005-11-07  Jonathan Pryor <jonpryor@vt.edu>
13
14         * make-map.cs: Always use ordinal string sorting behavior.  The string
15           collation sorting has changed, so to keep the mono/support diff sizes down
16           we have to explicitly specify the previous implicit ordering.
17
18 2005-11-02  Jonathan Pryor <jonpryor@vt.edu>
19
20         * Syscall.cs: Remove [CLSCompliant(false)] when it isn't needed.
21
22 2005-11-02  Jonathan Pryor <jonpryor@vt.edu>
23
24         * FileNameMarshaler.cs: Use UnixMarshal.FreeHeap().  .Free() is obsolete.
25
26 2005-10-27  Jonathan Pryor <jonpryor@vt.edu>
27
28         * Stdlib.cs: Correct return type of setbuf(IntPtr, byte*).
29         * Syscall.cs: Remove [Obsolete] SyslogFacility.LOG_USRE member
30           (Mono.Unix.Native hasn't shipped yet, so nobody is using it); correct
31           [Obsolete] comment for getpagesize().
32
33 2005-10-26  Jonathan Pryor <jonpryor@vt.edu>
34
35         * FileNameMarshaler.cs: Deal with UnixMarshal method name changes.
36
37 2005-10-26  Jonathan Pryor <jonpryor@vt.edu>
38
39         * Stdlib.cs: FilePosition should derive from MarshalByRefObject, for two
40           reasons: (1) it's a recommendation from FxCop that classes implementing
41           IDisposable also derive from MarshalByRefObject; (2) FilePosition is
42           exposed from Mono.Unix.StdioFileStream, which (indirectly) inherits from
43           MarshalByRefObject.  Fix Equals() so it doesn't rely on Reflection.
44
45 2005-10-25  Jonathan Pryor <jonpryor@vt.edu>
46
47         * FileNameMarshaler.cs: Custom marshaler to marshal filenames using
48           Mono.Unix.UnixEncoding.  A custom marshaler is used to remove the need to
49           have ~6 lines of boilerplate on every method that takes filenames.
50         * Stdlib.cs, Syscall.cs:  Filenames need to be marshaled through the
51           FileNameMarshaler, which will encode/decode filenames with UnixEncoder.
52
53 2005-10-14  Jonathan Pryor <jonpryor@vt.edu>
54
55         * Stdlib.cs, Syscall.cs: Flush naming convention documentation.
56
57 2005-10-14  Jonathan Pryor <jonpryor@vt.edu>
58
59         * NativeConvert.generated.cs: Flush currently generated version.
60
61 2005-10-14  Jonathan Pryor <jonpryor@vt.edu>
62
63         * make-map.cs: Fix documentation comment.
64         * Stdlib.cs: Fix export of XprintfFunctions.syslog(); make SetLastError()
65           protected (normal user code shouldn't call it, as it isn't safe); 
66           replace functions which return `void' with functions which return `int'
67           (adding them to MonoPosixHelper.so as well) -- since users can't reliably
68           use SetLastError(), they need the "normal" error detection mechanism;
69           correct the strlen(3) export.
70         * Syscall.cs: 
71           - s/PathConf/PathconfName/, s/SysConf/SysconfName/, s/ConfStr/ConfstrName/ 
72             to follow documented enumeration naming conventions.
73           - replace functions which return `void' with functions which return `int'
74             (adding them to MonoPosixHelper.so as well) -- since users can't reliably
75             use SetLastError(), they need the "normal" error detection mechanism;
76
77 2005-10-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
78
79         * Stdlib.cs: add strlen() to fix the build.
80
81 2005-09-23  Jonathan Pryor <jonpryor@vt.edu>
82
83         * make-map.cs: Generate NativeConvert documentation XML fragments for use in
84           monodoc.
85
86 2005-09-20  Jonathan Pryor <jonpryor@vt.edu>
87
88         * ChangeLog: Started.
89         * CdeclFunction.cs: Copied from ../Mono.Unix; change namespace.
90         * HeaderAttribute.cs: Added
91         * make-map.cs: Copied from ../Mono.Unix; sort type and member names in
92           output (makes for a more stable svn history, as types/members won't change
93           position anymore within generated code); look for HeaderAttribute not
94           IncludeAttribute for getting headers & #defines; generate NativeConvert
95           partial class.
96         * NativeConvert.cs: Copied from ../Mono.Unix; change namespace; turn into a
97           partial class; Remove generated code (generated code is in
98           NativeConvert.generated.cs).
99         * NativeConvert.generated.cs: Added
100         * Stdlib.cs: Copied from ../Mono.Unix; change namespace; rename Error to
101           Errno (as Error is a "reserved word" in FxCop); [CLSCompliant(false)]
102           support.
103         * Syscall.cs: Use HeaderAttribute, not IncludeAttribute, for CLS compliance; 
104           add [CLSCompliant(false)] as needed; use NativeConvert, not UnixConvert.
105