[email protected] | f7d6997 | 2011-06-21 22:34:50 | [diff] [blame] | 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. |
| 4 | |
| 5 | #include "base/os_compat_android.h" |
| 6 | |
[email protected] | 4d0f93c | 2011-09-29 04:43:54 | [diff] [blame] | 7 | #include "base/stringprintf.h" |
[email protected] | f7d6997 | 2011-06-21 22:34:50 | [diff] [blame] | 8 | |
| 9 | // There is no futimes() avaiable in Bionic, so we provide our own |
| 10 | // implementation until it is there. |
| 11 | extern "C" { |
| 12 | |
| 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); |
| 16 | } |
| 17 | |
| 18 | } // extern "C" |