X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Flockfile.h;h=e7dee42a9ff80b892e9bfc4d521086f0a3469239;hb=refs%2Fheads%2Fmaster;hp=ddfdd25a4d494e4f39db1c3c667f5658d8a0735c;hpb=1191192d054da2be10658472c29f95e2494ea18f;p=sympathy.git diff --git a/src/lockfile.h b/src/lockfile.h index ddfdd25..e7dee42 100644 --- a/src/lockfile.h +++ b/src/lockfile.h @@ -1,17 +1,35 @@ -/* +/* * lockfile.h: * - * Copyright (c) 2008 James McKenzie , + * Copyright (c) 2008 James McKenzie , * All rights reserved. * */ -/* - * $Id$ +/* + * $Id: lockfile.h,v 1.11 2008/03/10 11:49:33 james Exp $ */ -/* - * $Log$ +/* + * $Log: lockfile.h,v $ + * Revision 1.11 2008/03/10 11:49:33 james + * *** empty log message *** + * + * Revision 1.10 2008/03/07 12:37:04 james + * *** empty log message *** + * + * Revision 1.9 2008/03/03 06:04:42 james + * *** empty log message *** + * + * Revision 1.8 2008/03/02 10:37:56 james + * *** empty log message *** + * + * Revision 1.7 2008/02/23 11:48:37 james + * *** empty log message *** + * + * Revision 1.6 2008/02/15 23:52:12 james + * *** empty log message *** + * * Revision 1.5 2008/02/15 20:52:36 james * *** empty log message *** * @@ -38,22 +56,21 @@ #define FILE_LIST_MAX_LEN 1024 typedef struct Filelist_ent { - char name[FILE_LIST_MAX_LEN]; - struct Filelist_ent *next; + char name[FILE_LIST_MAX_LEN]; + struct Filelist_ent *next; } Filelist_ent; typedef struct { - Filelist_ent *head; + Filelist_ent *head; } Filelist; -typedef struct -{ +typedef struct { int mode; int i; struct timeval last_stale_purge; - Filelist locks_to_check; - Filelist locks_held; + Filelist *locks_to_check; + Filelist *locks_held; } Serial_lock;