29 lines
659 B
Plaintext
29 lines
659 B
Plaintext
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Microsoft Research Singularity
|
|
//
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//
|
|
// File: Diagnostics.sg
|
|
//
|
|
// 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();
|
|
}
|
|
|
|
}
|
|
}
|