Implementations of some libroot functions for x86_64.

These are the functions required by the kernel. These are all full
implementations except for system_time(), which will be implemented later.
This commit is contained in:
Alex Smith
2012-06-15 19:57:21 +01:00
parent f4f0f79b66
commit 73f27ecd3a
8 changed files with 428 additions and 3 deletions
+2 -3
View File
@@ -1,12 +1,11 @@
/*
* Copyright 2005-2010 Haiku Inc. All Rights Reserved.
* Copyright 2005-2012 Haiku Inc. All Rights Reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _ARCH_SETJMP_H_
#define _ARCH_SETJMP_H_
/* TODO: A jmp_buf size of 12 might not be large enough. Increase to a large size if needed. */
typedef int __jmp_buf[12];
typedef int __jmp_buf[8];
#endif /* _ARCH_SETJMP_H_ */