1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/os_compat_android.h"
7 #include "base/stringprintf.h"
9 // There is no futimes() avaiable in Bionic, so we provide our own
10 // implementation until it is there.
13 int futimes(int fd
, const struct timeval tv
[2]) {
14 const std::string fd_path
= StringPrintf("/proc/self/fd/%d", fd
);
15 return utimes(fd_path
.c_str(), tv
);