Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*++
Copyright (c) 2001 Microsoft Corporation
Module Name:
keamd64.c
Abstract:
This module includes all of the platform-specific "C" source modules required to build the kernel for AMD64.
The goal is to present to the compiler all of the kernel source as a a single module, so that it (the compiler) can make more aggressive decisions about inlining, const table lookup, etc.
Author:
Forrest Foltz (forrestf) 19-Oct-2001
Environment:
Kernel mode only.
Revision History:
--*/ #include "ki.h"
#include "..\ke.c"
#include "allproc.c"
#include "apcuser.c"
#include "callback.c"
#include "exceptn.c"
#include "flush.c"
#include "flushtb.c"
#include "initkr.c"
#include "intobj.c"
#include "ipi.c"
#include "misc.c"
#include "pat.c"
#include "queuelock.c"
#include "spinlock.c"
#include "thredini.c"
|