Information about API functions is provided in the table below.
Function
|
Information about the function
|
KnGetSystemTimeRes()
|
Purpose
Gets the resolution of the system time source.
Parameters
- [out]
res – pointer to the structure containing the resolution of the system time source (in nanoseconds) in the nsec field. The type of structure is defined in the header file sysroot-*-kos/include/rtl/rtc.h from the KasperskyOS SDK.
Returned values
If successful, the function returns rcOk , otherwise it returns an error code.
|
KnSetSystemTime()
|
Purpose
Sets the system time.
Parameters
- [in]
time – pointer to the structure containing the sec field, which indicates the number of seconds that have elapsed since January 1, 1970, and the nsec field, which indicates the number of nanoseconds that have elapsed since the time defined in the sec field. The type of structure is defined in the header file sysroot-*-kos/include/rtl/rtc.h from the KasperskyOS SDK.
Returned values
If successful, the function returns rcOk , otherwise it returns an error code.
|
KnGetSystemTime()
|
Purpose
Gets the system time.
Parameters
- [out]
time – pointer to the structure containing the sec field, which indicates the number of seconds that have elapsed since January 1, 1970, and the nsec field, which indicates the number of nanoseconds that have elapsed since the time defined in the sec field. The type of structure is defined in the header file sysroot-*-kos/include/rtl/rtc.h from the KasperskyOS SDK.
Returned values
If successful, the function returns rcOk , otherwise it returns an error code.
|
KnGetUpTimeRes()
|
Purpose
Gets the resolution of the source of monotonic time that has elapsed since the KasperskyOS kernel was started.
Parameters
- [out]
res – pointer to the structure containing the nsec field, which indicates the resolution of the source of monotonic time (in nanoseconds) that has elapsed since the KasperskyOS kernel was started. The type of structure is defined in the header file sysroot-*-kos/include/rtl/rtc.h from the KasperskyOS SDK.
Returned values
If successful, the function returns rcOk , otherwise it returns an error code.
|
KnGetUpTime()
|
Purpose
Gets the monotonic time that has elapsed since the moment the KasperskyOS kernel was started.
Parameters
- [out]
time – pointer to the structure containing the sec field, which indicates the number of seconds that have elapsed since the KasperskyOS kernel started, and the nsec field, which indicates the number of nanoseconds that have elapsed since the time defined in the sec field. The type of structure is defined in the header file sysroot-*-kos/include/rtl/rtc.h from the KasperskyOS SDK.
Returned values
If successful, the function returns rcOk , otherwise it returns an error code.
|
KnGetRtcTime()
|
Purpose
Gets the system time.
Parameters
- [out]
rt – pointer to the structure containing the following time data: year, month, day, hours, minutes, seconds, and milliseconds. The type of structure is defined in the header file sysroot-*-kos/include/rtl/rtc.h from the KasperskyOS SDK.
Returned values
If successful, the function returns rcOk , otherwise it returns an error code.
|
KnGetMSecSinceStart()
|
Purpose
Gets the monotonic time that has elapsed since the moment the KasperskyOS kernel was started.
Parameters
N/A
Returned values
Monotonic time (in milliseconds) that has elapsed since the KasperskyOS kernel was started.
|
KnAdjSystemTime()
|
Purpose
Starts gradual adjustment of the system time.
Parameters
- [in]
adj – pointer to the structure containing the amount of time by which the system time must be adjusted (sec*10^9+nsec nanoseconds), or RTL_NULL if you do not need to start an adjustment but instead only need information about a previously run adjustment (through the prev parameter). The type of structure is defined in the header file sysroot-*-kos/include/rtl/rtc.h from the KasperskyOS SDK. - [in]
slew – rate of system time adjustment (microseconds per second). - [out]
prev – pointer to the structure containing the amount of time correction that remained (or remains if RTL_NULL was indicated in the adj parameter) for the already running gradual adjustment to fully complete (sec*10^9+nsec nanoseconds). The type of structure is defined in the header file sysroot-*-kos/include/rtl/rtc.h from the KasperskyOS SDK.
Returned values
If successful, the function returns rcOk , otherwise it returns an error code.
Additional information
If a new adjustment is started before a previously running adjustment is finished, the previously running adjustment is interrupted.
|