Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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/platform_file.h" | |
| 6 | |
| 7 #include <sys/types.h> | |
| 8 #include <utime.h> | |
|
joth
2011/06/17 11:25:54
nit: \n between sections
michaelbai
2011/06/17 22:41:29
Done.
| |
| 9 #include "base/string_util.h" | |
| 10 | |
| 11 // There is no futimes() avaiable in Bionic, so we provide our own | |
| 12 // implementation until it is there. | |
| 13 extern "C" { | |
| 14 | |
| 15 int futimes(int fd, const struct timeval tv[2]) { | |
| 16 const std::string fd_path = StringPrintf("/proc/self/fd/%d", fd); | |
| 17 return utimes(fd_path.c_str(), tv); | |
| 18 } | |
| 19 | |
| 20 } | |
|
brettw
2011/06/17 16:29:14
I'd probably format this like a namespace and writ
michaelbai
2011/06/17 22:41:29
Done.
| |
| OLD | NEW |