blob: d5006564ca417ce277b5490a06874f10f1ecc46b [file] [log] [blame]
michaelbai@google.com2251c622011-06-22 07:34:50 +09001// 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.
4
5#include "base/os_compat_android.h"
6
jingzhao@chromium.org1b42c242011-09-29 13:43:54 +09007#include "base/stringprintf.h"
michaelbai@google.com2251c622011-06-22 07:34:50 +09008
9// There is no futimes() avaiable in Bionic, so we provide our own
10// implementation until it is there.
11extern "C" {
12
13int 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);
16}
17
18} // extern "C"