diff options
author | root <root> | 2010-01-02 14:11:32 +0000 |
---|---|---|
committer | root <root> | 2010-01-02 14:11:32 +0000 |
commit | d5dbda31aa83cf0c1a999c70c0f75a01c774cc3f (patch) | |
tree | 9c1a439b4a731e45d4f08daec8e7a9d3a5a4153d /eio.h | |
parent | b603f404d08248de437b7bf3e603adcfa01568db (diff) |
*** empty log message ***
Diffstat (limited to 'eio.h')
-rw-r--r-- | eio.h | 15 |
1 files changed, 14 insertions, 1 deletions
@@ -1,7 +1,7 @@ /* * libeio API header * - * Copyright (c) 2007,2008,2009 Marc Alexander Lehmann <libeio@schmorp.de> + * Copyright (c) 2007,2008,2009,2010 Marc Alexander Lehmann <libeio@schmorp.de> * All rights reserved. * * Redistribution and use in source and binary forms, with or without modifica- @@ -102,6 +102,19 @@ struct eio_dirent { ino_t inode; /* the inode number, if available, otherwise unspecified */ }; +/* eio_msync flags */ +enum { + EIO_MS_ASYNC = 1, + EIO_MS_INVALIDATE = 2, + EIO_MS_SYNC = 4 +}; + +/* eio_mtouch flags */ + +enum { + EIO_MT_MODIFY = 1 +}; + /* eio_sync_file_range flags */ enum { |