From ca4c478270ca3645015c94c8d5195a3d4aba1d6a Mon Sep 17 00:00:00 2001 From: Matthias Andree Date: Tue, 4 Jul 2006 10:05:05 +0000 Subject: Add Doxygen comments to complement lock.h documentation. svn path=/branches/BRANCH_6-3/; revision=4863 --- lock.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lock.c b/lock.c index c0290393..e56fe344 100644 --- a/lock.c +++ b/lock.c @@ -1,5 +1,5 @@ -/* - * lock.c -- cross-platform concurrency locking for fetchmail +/** + * \file lock.c cross-platform concurrency locking for fetchmail * * For license terms, see the file COPYING in this directory. */ @@ -23,8 +23,8 @@ #include "i18n.h" #include "lock.h" -static char *lockfile; /* name of lockfile */ -static int lock_acquired; /* have we acquired a lock */ +static char *lockfile; /** name of lockfile */ +static int lock_acquired; /** flag if have we acquired a lock */ void fm_lock_setup(struct runctl *ctl) /* set up the global lockfile name */ @@ -113,7 +113,7 @@ int fm_lock_state(void) } void fm_lock_assert(void) -/* assert that we already posess a lock */ +/* assert that we already possess a lock */ { lock_acquired = TRUE; } -- cgit v1.2.3