Files
haiku-beta6/headers/private/kernel/arch/real_time_clock.h
T

33 lines
718 B
C
Raw Normal View History

2005-01-26 18:28:40 +00:00
/*
* Copyright 2005, Axel Dörfler, [email protected]
* Copyright 2003, Jeff Ward, [email protected]. All rights reserved.
*
* Distributed under the terms of the MIT License.
*/
#ifndef KERNEL_ARCH_REAL_TIME_CLOCK_H
#define KERNEL_ARCH_REAL_TIME_CLOCK_H
#include <kernel.h>
2005-01-26 18:28:40 +00:00
struct kernel_args;
struct real_time_data;
#ifdef __cplusplus
extern "C" {
#endif
2005-01-26 18:28:40 +00:00
status_t arch_rtc_init(struct kernel_args *args, struct real_time_data *data);
void arch_rtc_set_hw_time(uint32 seconds);
// Set HW clock to 'seconds' since 1/1/1970
uint32 arch_rtc_get_hw_time(void);
// Returns number of seconds since 1/1/1970 as stored in HW
#ifdef __cplusplus
}
#endif
#endif /* KERNEL_ARCH_REAL_TIME_CLOCK_H */