1
0
mirror of https://github.com/deadw00d/AROS.git synced 2025-12-09 16:00:35 +00:00
Files
AROS-v0/rom/processor/processor_intern.h
Matthias Rustler a58f5dc15c copyright header fixed
copyright sign unified to (C)
$Id$ removed
Lang: removed
2021-05-02 13:46:08 +02:00

31 lines
622 B
C

/*
Copyright (C) 2010-2013, The AROS Development Team. All rights reserved.
Desc: Internal data structures for processor.resource
*/
#ifndef PROCESSOR_INTERN_H
#define PROCESSOR_INTERN_H
#ifndef EXEC_TYPES_H
#include <exec/types.h>
#endif
#ifndef EXEC_NODES_H
#include <exec/nodes.h>
#endif
#ifndef UTILITY_UTILITY_H
#include <utility/utility.h>
#endif
struct ProcessorBase
{
struct Library pb_LibNode;
unsigned int cpucount;
APTR kernelBase;
APTR Private1; /* Pointer to arch-specific implementation data */
};
#define KernelBase ProcessorBase->kernelBase
#endif /* PROCESSOR_INTERN_H */