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:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2014-09-26 16:43:36 +0400
committerAlexander Köplinger <alex.koeplinger@outlook.com>2015-01-17 07:45:39 +0300
commit746650d1b93114b60feb155c2ee778a9e16ccb6d (patch)
treef8e1eb791640ba6fd887da5e64cde3a1139b42b0 /mcs/class/Mono.Posix/Test
parent7d1cd56c5d97683f6dae35cb9143d8789b71c2de (diff)
[bcl] Remove more NET_2_0 checks from class libs
Diffstat (limited to 'mcs/class/Mono.Posix/Test')
-rw-r--r--mcs/class/Mono.Posix/Test/Mono.Unix.Native/StdlibTest.cs8
1 files changed, 0 insertions, 8 deletions
diff --git a/mcs/class/Mono.Posix/Test/Mono.Unix.Native/StdlibTest.cs b/mcs/class/Mono.Posix/Test/Mono.Unix.Native/StdlibTest.cs
index e6743819a9d..1b7b77d5aca 100644
--- a/mcs/class/Mono.Posix/Test/Mono.Unix.Native/StdlibTest.cs
+++ b/mcs/class/Mono.Posix/Test/Mono.Unix.Native/StdlibTest.cs
@@ -30,14 +30,6 @@ namespace MonoTests.Mono.Unix.Native {
}
// [Test]
-#if !NET_2_0
- // .NET 1.1 marshals delegates as Stdcall functions, while signal(3)
- // expects a Cdecl function. Result: stack corruption.
- // DO NOT USE Stdlib.signal under .NET 1.1!
- // .NET 2.0 allows us to specify how delegates should be marshaled, so
- // this isn't an issue there.
- [Category ("NotDotNet")]
-#endif
public void Signal ()
{
SignalTest st = new SignalTest ();