C の NDK ネイティブ コードでデバイスの時刻を設定しようとしています。
struct timeval tv = {timet, 0};
struct timezone tz = {timezone, daylight}; // The second timezone is long int. Time lib extern which perfectly suits here.
if (settimeofday(&tv, &tz) != 0)
{
LOG(("settimeofday() failed: %s", strerror(errno)));
}
結果は
settimeofday() failed: Read-only file system
ネイティブで時間を設定する他の方法はありますか? それはまったく可能ですか?問題の読み取り専用ファイル システムの部分を確認しましたが、ルート化されたデバイスはありません。
前もって感謝します!