Changeset 06e1e95 in mainline for kernel/arch/ia32/include/mm


Ignore:
Timestamp:
2006-09-14T17:09:21Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f1d1f5d3
Parents:
e5ecc02
Message:

C99 compliant header guards (hopefully) everywhere in the kernel.
Formatting and indentation changes.
Small improvements in sparc64.

Location:
kernel/arch/ia32/include/mm
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/ia32/include/mm/as.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup ia32mm
     29/** @addtogroup ia32mm 
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __ia32_AS_H__
    36 #define __ia32_AS_H__
     35#ifndef KERN_ia32_AS_H_
     36#define KERN_ia32_AS_H_
    3737
    3838#define KERNEL_ADDRESS_SPACE_SHADOWED_ARCH      0
     
    5151#endif
    5252
    53  /** @}
     53/** @}
    5454 */
    55 
  • kernel/arch/ia32/include/mm/asid.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup ia32mm
     29/** @addtogroup ia32mm 
    3030 * @{
    3131 */
     
    4040 */
    4141
    42 #ifndef __ia32_ASID_H__
    43 #define __ia32_ASID_H__
     42#ifndef KERN_ia32_ASID_H_
     43#define KERN_ia32_ASID_H_
    4444
    4545typedef int asid_t;
     
    5252#endif
    5353
    54  /** @}
     54/** @}
    5555 */
    56 
  • kernel/arch/ia32/include/mm/frame.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup ia32mm
     29/** @addtogroup ia32mm 
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __ia32_FRAME_H__
    36 #define __ia32_FRAME_H__
     35#ifndef KERN_ia32_FRAME_H_
     36#define KERN_ia32_FRAME_H_
    3737
    3838#define FRAME_WIDTH     12      /* 4K */
    3939#define FRAME_SIZE      (1<<FRAME_WIDTH)
    40 
    4140
    4241#ifdef KERNEL
     
    5453#endif
    5554
    56  /** @}
     55/** @}
    5756 */
    58 
  • kernel/arch/ia32/include/mm/memory_init.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup ia32mm
     29/** @addtogroup ia32mm 
    3030 * @{
    3131 */
     
    3434 */
    3535
    36 #ifndef __ia32_MEMORY_INIT_H__
    37 #define __ia32_MEMORY_INIT_H__
     36#ifndef KERN_ia32_MEMORY_INIT_H_
     37#define KERN_ia32_MEMORY_INIT_H_
    3838
    3939#include <typedefs.h>
     
    4545#endif
    4646
    47  /** @}
     47/** @}
    4848 */
    49 
  • kernel/arch/ia32/include/mm/page.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup ia32mm
     29/** @addtogroup ia32mm 
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __ia32_PAGE_H__
    36 #define __ia32_PAGE_H__
     35#ifndef KERN_ia32_PAGE_H_
     36#define KERN_ia32_PAGE_H_
    3737
    3838#include <arch/mm/frame.h>
     
    169169#endif
    170170
    171  /** @}
     171/** @}
    172172 */
    173 
  • kernel/arch/ia32/include/mm/tlb.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup ia32mm
     29/** @addtogroup ia32mm 
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __ia32_TLB_H__
    36 #define __ia32_TLB_H__
     35#ifndef KERN_ia32_TLB_H_
     36#define KERN_ia32_TLB_H_
    3737
    3838#define tlb_arch_init()
     
    4141#endif
    4242
    43  /** @}
     43/** @}
    4444 */
    45 
Note: See TracChangeset for help on using the changeset viewer.