[PATCH 02/12] linux-user: Add support for getting/setting RTC time and alarm using ioctls

2020-01-15 Thread Filip Bozuta
This patch implements functionalities of following ioctls: RTC_RD_TIME - Getting RTC time Returns this RTC's time in the following structure: struct rtc_time { int tm_sec; int tm_min; int tm_hour; int tm_mday; int tm_mon;

Re: [PATCH 02/12] linux-user: Add support for getting/setting RTC time and alarm using ioctls

2020-01-14 Thread Laurent Vivier
Le 09/01/2020 à 13:59, Filip Bozuta a écrit : > This patch implements functionalities of following ioctls: > > RTC_RD_TIME - Getting RTC time > > Returns this RTC's time in the following structure: > > struct rtc_time { > int tm_sec; > int tm_min; >

[PATCH 02/12] linux-user: Add support for getting/setting RTC time and alarm using ioctls

2020-01-09 Thread Filip Bozuta
This patch implements functionalities of following ioctls: RTC_RD_TIME - Getting RTC time Returns this RTC's time in the following structure: struct rtc_time { int tm_sec; int tm_min; int tm_hour; int tm_mday; int tm_mon;