Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1779 → Rev 1780

/kernel/trunk/tools/sparc64/gencontext.c
1,9 → 1,9
#include <stdio.h>
#include <stdint.h>
 
typedef uint64_t __u64;
typedef __u64 ipl_t;
typedef __u64 __address;
typedef uint64_t uint64_t;
typedef uint64_t ipl_t;
typedef uint64_t uintptr_t;
 
#define __sparc64_TYPES_H__
#define __ALIGN_H__
/kernel/trunk/tools/ppc32/gencontext.c
1,10 → 1,10
#include <stdio.h>
#include <stdint.h>
 
typedef uint32_t __u32;
typedef uint64_t __u64;
typedef __u32 ipl_t;
typedef __u32 __address;
typedef uint32_t uint32_t;
typedef uint64_t uint64_t;
typedef uint32_t ipl_t;
typedef uint32_t uintptr_t;
 
#define __ppc32_TYPES_H__
#include "../../arch/ppc32/include/context.h"
/kernel/trunk/tools/amd64/gencontext.c
1,9 → 1,9
#include <stdio.h>
#include <stdint.h>
 
typedef uint64_t __u64;
typedef __u64 ipl_t;
typedef __u64 __address;
typedef uint64_t uint64_t;
typedef uint64_t ipl_t;
typedef uint64_t uintptr_t;
 
#define __amd64_TYPES_H__
#include "../../arch/amd64/include/context.h"
/kernel/trunk/tools/ppc64/gencontext.c
1,10 → 1,10
#include <stdio.h>
#include <stdint.h>
 
typedef uint32_t __u32;
typedef uint64_t __u64;
typedef __u64 ipl_t;
typedef __u64 __address;
typedef uint32_t uint32_t;
typedef uint64_t uint64_t;
typedef uint64_t ipl_t;
typedef uint64_t uintptr_t;
 
#define __ppc64_TYPES_H__
#include "../../arch/ppc64/include/context.h"
/kernel/trunk/tools/mips32/gencontext.c
1,9 → 1,9
#include <stdio.h>
#include <stdint.h>
 
typedef uint32_t __u32;
typedef __u32 ipl_t;
typedef __u32 __address;
typedef uint32_t uint32_t;
typedef uint32_t ipl_t;
typedef uint32_t uintptr_t;
 
#define __mips32_TYPES_H__
#include "../../arch/mips32/include/context.h"