singrdk/base/Kernel/Singularity.Diagnostics/Diagnostics.sg

29 lines
659 B
Plaintext
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
///////////////////////////////////////////////////////////////////////////////
//
// Microsoft Research Singularity
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// File: Diagnostics.sg
2008-11-17 18:29:00 -05:00
//
2008-03-05 09:52:00 -05:00
// Note: The kernel diagnostics module
//
using System;
using System.Collections;
namespace Microsoft.Singularity.Diagnostics
{
public class DiagnosticsModule
{
public static void Initialize()
{
// NEW-STYLE INITIALIZATION (keep this)
ProcessModule.Initialize();
MemoryModule.Initialize();
ChannelModule.Initialize();
}
2008-11-17 18:29:00 -05:00
2008-03-05 09:52:00 -05:00
}
}