Changeset 06e1e95 in mainline for kernel/arch/amd64/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/amd64/include/mm
Files:
5 edited

Legend:

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

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup amd64mm       
     29/** @addtogroup amd64mm
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __amd64_AS_H__
    36 #define __amd64_AS_H__
     35#ifndef KERN_amd64_AS_H_
     36#define KERN_amd64_AS_H_
    3737
    3838#define KERNEL_ADDRESS_SPACE_SHADOWED_ARCH      0
     
    5151#endif
    5252
    53  /** @}
     53/** @}
    5454 */
    55 
  • kernel/arch/amd64/include/mm/frame.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup amd64mm       
     29/** @addtogroup amd64mm
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __amd64_FRAME_H__
    36 #define __amd64_FRAME_H__
     35#ifndef KERN_amd64_FRAME_H_
     36#define KERN_amd64_FRAME_H_
    3737
    3838#ifndef __ASM__
     
    4343#define FRAME_SIZE              (1<<FRAME_WIDTH)
    4444
    45 
    4645#ifndef __ASM__
    4746extern uintptr_t last_frame;
     
    5150#endif
    5251
    53  /** @}
     52/** @}
    5453 */
    55 
  • kernel/arch/amd64/include/mm/page.h

    re5ecc02 r06e1e95  
    4545 */
    4646
    47 #ifndef __amd64_PAGE_H__
    48 #define __amd64_PAGE_H__
     47#ifndef KERN_amd64_PAGE_H_
     48#define KERN_amd64_PAGE_H_
    4949
    5050#include <arch/mm/frame.h>
  • kernel/arch/amd64/include/mm/ptl.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup amd64mm       
     29/** @addtogroup amd64mm
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 
    36 #ifndef __amd64_PTL_H_
    37 #define __amd64_PTL_H_
     35#ifndef KERN_amd64_PTL_H_
     36#define KERN_amd64_PTL_H_
    3837
    3938#define PTL_NO_EXEC       (1<<63)
     
    4948#endif
    5049
    51  /** @}
     50/** @}
    5251 */
    53 
  • kernel/arch/amd64/include/mm/tlb.h

    re5ecc02 r06e1e95  
    2727 */
    2828
    29  /** @addtogroup amd64mm       
     29/** @addtogroup amd64mm
    3030 * @{
    3131 */
     
    3333 */
    3434
    35 #ifndef __amd64_TLB_H__
    36 #define __amd64_TLB_H__
     35#ifndef KERN_amd64_TLB_H_
     36#define KERN_amd64_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.