Subversion Repositories HelenOS-historic

Rev

Rev 164 | Rev 206 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 164 Rev 197
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
#ifndef __TYPES_H__
29
#ifndef __amd64_TYPES_H__
30
#define __TYPES_H__
30
#define __amd64_TYPES_H__
31
 
31
 
32
#define NULL 0
32
#define NULL 0
33
 
33
 
34
typedef signed char __s8;
34
typedef signed char __s8;
35
 
35
 
Line 38... Line 38...
38
typedef unsigned int __u32;
38
typedef unsigned int __u32;
39
typedef long long __u64;
39
typedef long long __u64;
40
 
40
 
41
typedef __u64 __address;
41
typedef __u64 __address;
42
 
42
 
-
 
43
/* Flags of processor (return value of cpu_priority_high()) */
43
typedef __u32 pri_t;
44
typedef __u64 pri_t;
44
 
45
 
45
typedef __u64 __native;
46
typedef __u64 __native;
46
 
47
 
47
#endif
48
#endif