35 lines
747 B
C++
35 lines
747 B
C++
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Microsoft Research Singularity
|
||
|
//
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//
|
||
|
// File: Stacks.cpp
|
||
|
//
|
||
|
// Note:
|
||
|
//
|
||
|
|
||
|
#include "hal.h"
|
||
|
|
||
|
// #define TEST_STACK_LINKING
|
||
|
#ifdef TEST_STACK_LINKING
|
||
|
void Class_Microsoft_Singularity_Memory_Stacks::g_TestStackLink1024()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void Class_Microsoft_Singularity_Memory_Stacks::g_TestStackLink2048()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void Class_Microsoft_Singularity_Memory_Stacks::g_TestStackLink4096()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void Class_Microsoft_Singularity_Memory_Stacks::g_TestStackLink8192()
|
||
|
{
|
||
|
}
|
||
|
#endif // TEST_STACK_LINKING
|
||
|
|
||
|
//
|
||
|
///////////////////////////////////////////////////////////////// End of File.
|