diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-04-15 16:00:42 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-06-03 14:03:49 +0200 |
commit | 0827b08a433b7dec91be7ca7406804087f3fef07 (patch) | |
tree | aca0eecdf1c86d9f258277eb3fbd84d06599bdb1 /source4/ntvfs/posix/vfs_posix.h | |
parent | 6610a6c49a2140747aa8e36c26f855953471140d (diff) | |
download | samba-0827b08a433b7dec91be7ca7406804087f3fef07.tar.gz samba-0827b08a433b7dec91be7ca7406804087f3fef07.tar.xz samba-0827b08a433b7dec91be7ca7406804087f3fef07.zip |
opendb: add write time handling
metze
(This used to be commit 3868d8ce630c71e2c70aae442fcdbd68ba1eb708)
Diffstat (limited to 'source4/ntvfs/posix/vfs_posix.h')
-rw-r--r-- | source4/ntvfs/posix/vfs_posix.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source4/ntvfs/posix/vfs_posix.h b/source4/ntvfs/posix/vfs_posix.h index c194698b64..875deb4015 100644 --- a/source4/ntvfs/posix/vfs_posix.h +++ b/source4/ntvfs/posix/vfs_posix.h @@ -169,6 +169,14 @@ struct pvfs_file_handle { /* we need this hook back to our parent for lock destruction */ struct pvfs_state *pvfs; + struct { + bool update_triggered; + struct timed_event *update_event; + bool update_on_close; + NTTIME close_time; + bool update_forced; + } write_time; + /* the open went through to completion */ bool open_completed; }; |