Subversion Repositories HelenOS

Rev

Rev 3386 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3386 Rev 4153
Line 24... Line 24...
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup arm32  
29
/** @addtogroup arm32
30
 * @{
30
 * @{
31
 */
31
 */
32
/** @file
32
/** @file
33
 *  @brief Empty.
33
 *  @brief Empty.
34
 */
34
 */
35
 
35
 
36
#ifndef KERN_arm32_ARCH_H_
36
#ifndef KERN_arm32_ARCH_H_
37
#define KERN_arm32_ARCH_H_
37
#define KERN_arm32_ARCH_H_
38
 
38
 
-
 
39
#define TASKMAP_MAX_RECORDS  32
-
 
40
#define CPUMAP_MAX_RECORDS   32
-
 
41
 
-
 
42
#define BOOTINFO_TASK_NAME_BUFLEN 32
-
 
43
 
-
 
44
#include <typedefs.h>
-
 
45
 
-
 
46
typedef struct {
-
 
47
    uintptr_t addr;
-
 
48
    uint32_t size;
-
 
49
    char name[BOOTINFO_TASK_NAME_BUFLEN];
-
 
50
} utask_t;
-
 
51
 
-
 
52
typedef struct {
-
 
53
    uint32_t cnt;
-
 
54
    utask_t tasks[TASKMAP_MAX_RECORDS];
-
 
55
} bootinfo_t;
-
 
56
 
-
 
57
extern void arch_pre_main(void *entry, bootinfo_t *bootinfo);
-
 
58
 
39
#endif
59
#endif
40
 
60
 
41
/** @}
61
/** @}
42
 */
62
 */