Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Pryor <jpryor@novell.com>2005-11-02 19:38:18 +0300
committerJonathan Pryor <jpryor@novell.com>2005-11-02 19:38:18 +0300
commitde5c4842372e787f8245305adbb721960656cc61 (patch)
tree025902627b0fa0540ba37613acf57d339b357062 /mcs/class/Mono.Posix
parent1c9612c400fe2d03c2af59e0bd58fba62523795d (diff)
* Syscall.cs: Remove [CLSCompliant(false)] when it isn't needed.
svn path=/trunk/mcs/; revision=52481
Diffstat (limited to 'mcs/class/Mono.Posix')
-rw-r--r--mcs/class/Mono.Posix/Mono.Unix.Native/ChangeLog4
-rw-r--r--mcs/class/Mono.Posix/Mono.Unix.Native/Syscall.cs4
2 files changed, 4 insertions, 4 deletions
diff --git a/mcs/class/Mono.Posix/Mono.Unix.Native/ChangeLog b/mcs/class/Mono.Posix/Mono.Unix.Native/ChangeLog
index dfc80693e5f..ebb270c2a57 100644
--- a/mcs/class/Mono.Posix/Mono.Unix.Native/ChangeLog
+++ b/mcs/class/Mono.Posix/Mono.Unix.Native/ChangeLog
@@ -1,5 +1,9 @@
2005-11-02 Jonathan Pryor <jonpryor@vt.edu>
+ * Syscall.cs: Remove [CLSCompliant(false)] when it isn't needed.
+
+2005-11-02 Jonathan Pryor <jonpryor@vt.edu>
+
* FileNameMarshaler.cs: Use UnixMarshal.FreeHeap(). .Free() is obsolete.
2005-10-27 Jonathan Pryor <jonpryor@vt.edu>
diff --git a/mcs/class/Mono.Posix/Mono.Unix.Native/Syscall.cs b/mcs/class/Mono.Posix/Mono.Unix.Native/Syscall.cs
index ca33f244201..0036b63bcc8 100644
--- a/mcs/class/Mono.Posix/Mono.Unix.Native/Syscall.cs
+++ b/mcs/class/Mono.Posix/Mono.Unix.Native/Syscall.cs
@@ -283,7 +283,6 @@ namespace Mono.Unix.Native {
}
[Map]
- [CLSCompliant (false)]
public enum Signum : int {
SIGHUP = 1, // Hangup (POSIX).
SIGINT = 2, // Interrupt (ANSI).
@@ -323,7 +322,6 @@ namespace Mono.Unix.Native {
}
[Flags][Map]
- [CLSCompliant (false)]
public enum WaitOptions : int {
WNOHANG = 1, // Don't block waiting
WUNTRACED = 2, // Report status of stopped children
@@ -632,7 +630,6 @@ namespace Mono.Unix.Native {
}
[Map][Flags]
- [CLSCompliant (false)]
public enum PollEvents : short {
POLLIN = 0x0001, // There is data to read
POLLPRI = 0x0002, // There is urgent data to read
@@ -807,7 +804,6 @@ namespace Mono.Unix.Native {
#region Classes
- [CLSCompliant (false)]
public sealed class Dirent
{
[CLSCompliant (false)]