Split architecture judgement then doxygen can merge them into one document.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6799 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2 2008-12-01 19:09:01 +00:00
parent bf428cb388
commit aa4df54773

View File

@ -39,7 +39,9 @@ typedef struct {
#define BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT 4 #define BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT 4
#elif defined (MDE_CPU_IPF) #endif // defined (MDE_CPU_IA32)
#if defined (MDE_CPU_IPF)
/// ///
/// IPF context buffer used by SetJump() and LongJump() /// IPF context buffer used by SetJump() and LongJump()
@ -87,7 +89,9 @@ typedef struct {
#define BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT 0x10 #define BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT 0x10
#elif defined (MDE_CPU_X64) #endif // defined (MDE_CPU_IPF)
#if defined (MDE_CPU_X64)
/// ///
/// X64 context buffer used by SetJump() and LongJump() /// X64 context buffer used by SetJump() and LongJump()
/// ///
@ -106,7 +110,9 @@ typedef struct {
#define BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT 8 #define BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT 8
#elif defined (MDE_CPU_EBC) #endif // defined (MDE_CPU_X64)
#if defined (MDE_CPU_EBC)
/// ///
/// EBC context buffer used by SetJump() and LongJump() /// EBC context buffer used by SetJump() and LongJump()
/// ///
@ -120,9 +126,7 @@ typedef struct {
#define BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT 8 #define BASE_LIBRARY_JUMP_BUFFER_ALIGNMENT 8
#else #endif // defined (MDE_CPU_EBC)
#error Unknown Processor Type
#endif
// //
// String Services // String Services