Extended the get_system_info() mechanism; it now gets info about threads/teams

as well as architecture specific stuff.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10313 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler
2004-11-30 21:06:11 +00:00
parent f79889e75b
commit 545ecbe86d
4 changed files with 54 additions and 13 deletions
+25
View File
@@ -0,0 +1,25 @@
/*
* Copyright 2004, Axel Dörfler, [email protected]. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef _KERNEL_ARCH_SYSTEM_INFO_H
#define _KERNEL_ARCH_SYSTEM_INFO_H
#include <OS.h>
struct kernel_args;
#ifdef __cplusplus
extern "C" {
#endif
status_t arch_system_info_init(struct kernel_args *args);
status_t arch_get_system_info(system_info *info, size_t size);
#ifdef __cplusplus
}
#endif
#endif /* _KRENEL_ARCH_SYSTEM_INFO_H */