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

Runtime.cs « Mono « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ec3aa93a86b45e289feb53e2603d1a86d1a6699 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// Mono Runtime gateway functions
//
//

using System;
using System.Runtime.CompilerServices;

namespace Mono {

	public class Runtime
	{
		
		[MethodImplAttribute (MethodImplOptions.InternalCall)]
		private static extern void mono_runtime_install_handlers ();
		
		static public void InstallSignalHandlers ()
		{
			mono_runtime_install_handlers ();
		}
	}
	
}