The Kernel Kit Table of Contents | The Kernel Kit Index |
Declared in: be/kernel/OS.h
Library: libroot.so
The following functions, types, and structures are used to convey basic information about the system, such as the number of CPUs, when the kernel was built, what time it is now and whether your computer is on fire.
|
The get_system_info() function tells you more than you want to know about the physical capacities and other statistics of your operating system. The function takes a pointer to an allocated system_info structure and fills it in.
typedef struct { machine_id id; bigtime_t boot_time; int32 cpu_count; cpu_type cpu_type; int32 cpu_revision; cpu_info cpu_infos[B_MAX_CPU_NUM]; int64 cpu_clock_speed; int64 bus_clock_speed; platform_type platform_type; int32 max_pages; int32 used_pages; int32 page_faults; int32 max_sems; int32 used_sems; int32 max_ports; int32 used_ports; int32 max_threads; int32 used_threads; int32 max_teams; int32 used_teams; char kernel_name[B_FILE_NAME_LENGTH]; char kernel_build_date[B_OS_NAME_LENGTH]; char kernel_build_time[B_OS_NAME_LENGTH]; int64 kernel_version; } system_info
The system_info structure holds information about the machine and the state of the kernel. The structure's fields are:
The cpu_info structure is:
typedef struct { bigtime_t active_time; } cpu_info;
Relatedly, B_MAX_CPU_COUNT is currently 8.
The machine_id type is:
typedef int32 machine_id[2];
The cpu_type constants are:
typedef enum { B_CPU_PPC_601 = 1, B_CPU_PPC_603 = 2, B_CPU_PPC_603e = 3, B_CPU_PPC_604 = 4, B_CPU_PPC_604e = 5, B_CPU_PPC_686 = 13, B_CPU_AMD_29K, B_CPU_X86, B_CPU_MC6502, B_CPU_Z80, B_CPU_ALPHA, B_CPU_MIPS, B_CPU_HPPA, B_CPU_M68K, B_CPU_ARM, B_CPU_SH, B_CPU_SPARC } cpu_type;
The platform_type constants are:
typedef enum { B_BEBOX_PLATFORM = 0, B_MAC_PLATFORM, B_AT_CLONE_PLATFORM, B_ENIAC_PLATFORM, B_APPLE_II_PLATFORM, B_CRAY_PLATFORM, B_LISA_PLATFORM, B_TI_994A_PLATFORM, B_TIMEX_SINCLAIR_PLATFORM, B_ORAC_1_PLATFORM, B_HAL_PLATFORM } platform_type;
I haven't tried it, but I really don't think the BeOS would work at all well on a Timex Sinclair (see is_computer_on_fire()).
get_system_info() always returns B_OK.
|
Returns 1 if the computer is on. If the computer isn't on, the value returned by this function is undefined.
|
Returns the temperature of the motherboard if the computer is currently on fire. Smoldering doesn't count. If the computer isn't on fire, the function returns some other value.
|
real_time_clock() returns the number of seconds that have elapsed since January 1, 1970.
real_time_clock_usecs() measures the same time span in microseconds.
set_real_time_clock() sets the value that the other two functions refer to.
|
Returns the number of microseconds that have elapsed since the computer was booted.
The Kernel Kit Table of Contents | The Kernel Kit Index |
Copyright © 2000 Be, Inc. All rights reserved..