Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| SHA1 Hash: | 858a2369a667740bbfb3d2121f3b51b134a309d2 |
|---|---|
| Date: | 2010-03-10 21:06:15 |
| User: | stephan |
| Comment: | comment changes only |
Tags And Properties
- branch=trunk inherited from [c3e484d316]
- sym-trunk inherited from [c3e484d316]
Changes
Changes to pfs/inode.c
| Old (307b61ef63d19816) | New (01f51c98ee5b714d) | |||
|---|---|---|---|---|
| 1 | /************************************************************************ | 1 | /************************************************************************ | |
| 2 | This file contains most of the inode-specific whio_epfs routines. | 2 | This file contains most of the inode-specific whio_epfs routines. | |
| 3 | 3 | |||
| 4 | Author: Stephan Beal (http://wanderinghorse.net/home/stephan/) | 4 | Author: Stephan Beal (http://wanderinghorse.net/home/stephan/) | |
| 5 | 5 | |||
| 237 hidden lines | ||||
| 243 | } | 243 | } | |
| 244 | else | 244 | else | |
| 245 | { | 245 | { | |
| 246 | const time_t tx = time(NULL); | 246 | const time_t tx = time(NULL); | |
| 247 | ino->mtime = (uint32_t)mktime( gmtime(&tx) ); | 247 | ino->mtime = (uint32_t)mktime( gmtime(&tx) ); | |
| > | 248 | /* In kcachegrind i'm seeing that | ||
| > | 249 | gmtime(), and possibly mktime(), | ||
| > | 250 | are indirectly calling malloc() (at least | ||
| > | 251 | sometimes). :( | ||
| > | 252 | */ | ||
| 248 | } | 253 | } | |
| 249 | #endif | 254 | #endif | |
| 250 | return 0; | 255 | return 0; | |
| 251 | } | 256 | } | |
| 252 | } | 257 | } | |
| 283 hidden lines | ||||
| 536 | } | 541 | } | |
| 537 | return rc; | 542 | return rc; | |
| 538 | } | 543 | } | |
| 539 | 544 | |||
| 540 | #undef MARKER | 545 | #undef MARKER | |