From: Roland McGrath Date: Mon, 9 May 2005 07:40:35 +0000 (+0000) Subject: 2005-04-25 Anton Blanchard X-Git-Tag: v4.5.18~392 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1025c3ed7f1043ffe66f763db81b85a537ebb023;p=strace 2005-04-25 Anton Blanchard * file.c (openmodes): Add O_NOATIME flag if defined. --- diff --git a/file.c b/file.c index c8f7b878..485d95f5 100644 --- a/file.c +++ b/file.c @@ -255,6 +255,9 @@ const struct xlat openmodes[] = { #ifdef O_NOFOLLOW { O_NOFOLLOW, "O_NOFOLLOW" }, #endif +#ifdef O_NOATIME + { O_NOATIME, "O_NOATIME" }, +#endif #ifdef FNDELAY { FNDELAY, "FNDELAY" },