mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 19:03:15 +01:00
20 lines
301 B
C
20 lines
301 B
C
#ifndef __GLUE__V4_ARM__UTCB_H__
|
|
#define __GLUE__V4_ARM__UTCB_H__
|
|
|
|
/*
|
|
* Userspace thread control block
|
|
*
|
|
* Copyright (C) 2005 Bahadir Balban
|
|
*
|
|
*/
|
|
#include <macros.h>
|
|
#include <config.h>
|
|
#include <types.h>
|
|
|
|
struct utcb {
|
|
u32 global_id;
|
|
u32 error_code;
|
|
};
|
|
|
|
#endif /* !__GLUE__V4_ARM__UTCB_H__ */
|