diff options
Diffstat (limited to 'src/lockfile.h')
-rw-r--r-- | src/lockfile.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/lockfile.h b/src/lockfile.h index c8b77f2..71cff4a 100644 --- a/src/lockfile.h +++ b/src/lockfile.h @@ -12,6 +12,9 @@ /* * $Log$ + * Revision 1.4 2008/02/15 19:51:30 james + * *** empty log message *** + * * Revision 1.3 2008/02/15 18:16:36 james * *** empty log message *** * @@ -37,4 +40,16 @@ typedef struct { Filelist_ent *head; } Filelist; + +typedef struct +{ + int mode; + int i; + struct timeval last_stale_purge; + Filelist locks_to_check; + Filelist locks_held; +} Serial_lock; + + + #endif /* __LOCKFILE_H__ */ |