2003-10-24 14:21:10 +04:00
|
|
|
/*
|
|
|
|
** Copyright 2003, Jeff Ward, jeff@r2d2.stcloudstate.edu. All rights reserved.
|
|
|
|
** Distributed under the terms of the OpenBeOS License.
|
|
|
|
*/
|
|
|
|
#ifndef _KERNEL_REAL_TIME_CLOCK_H
|
|
|
|
#define _KERNEL_REAL_TIME_CLOCK_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <KernelExport.h>
|
|
|
|
|
|
|
|
|
2003-10-24 15:58:21 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2003-10-24 14:21:10 +04:00
|
|
|
|
2003-10-24 15:58:21 +04:00
|
|
|
status_t rtc_init(kernel_args *ka);
|
|
|
|
// Initialize the real-time clock.
|
|
|
|
|
2003-10-24 14:21:10 +04:00
|
|
|
bigtime_t rtc_boot_time(void);
|
2003-10-24 15:58:21 +04:00
|
|
|
// Returns the time at which the system was booted in microseconds since Jan 1, 1970.
|
|
|
|
|
2003-10-28 16:30:10 +03:00
|
|
|
void _user_set_real_time_clock(uint32 time);
|
|
|
|
|
2003-10-24 15:58:21 +04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2003-10-24 14:21:10 +04:00
|
|
|
|
|
|
|
#endif /* _KERNEL_REAL_TIME_CLOCK_H */
|