mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Document a couple of functions.
svn:r17239
This commit is contained in:
parent
90e832a5db
commit
6c50ab6e61
@ -476,12 +476,22 @@ touch_file(const char *fname)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Represents a lockfile on which we hold the lock. */
|
||||||
struct tor_lockfile_t {
|
struct tor_lockfile_t {
|
||||||
char *filename;
|
char *filename;
|
||||||
int fd;
|
int fd;
|
||||||
};
|
};
|
||||||
|
|
||||||
/** DOCDOC. What's this function do? */
|
/** Try to get a lock on the lockfile <b>filename</b>, creating it as
|
||||||
|
* necessary. If someone else has the lock and <b>blocking</b> is true,
|
||||||
|
* wait until the lock is available. Otherwise return immediately whether
|
||||||
|
* we succeeded or not.
|
||||||
|
*
|
||||||
|
* Set *<b>locked_out</b> to true if somebody else had the lock, and to false
|
||||||
|
* otherwise.
|
||||||
|
*
|
||||||
|
* Return a <b>tor_lockfile_t</b> on success, NULL on failure.
|
||||||
|
*/
|
||||||
tor_lockfile_t *
|
tor_lockfile_t *
|
||||||
tor_lockfile_lock(const char *filename, int blocking, int *locked_out)
|
tor_lockfile_lock(const char *filename, int blocking, int *locked_out)
|
||||||
{
|
{
|
||||||
@ -523,6 +533,7 @@ tor_lockfile_lock(const char *filename, int blocking, int *locked_out)
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Release the lock held as <b>lockfile</b>. */
|
||||||
void
|
void
|
||||||
tor_lockfile_unlock(tor_lockfile_t *lockfile)
|
tor_lockfile_unlock(tor_lockfile_t *lockfile)
|
||||||
{
|
{
|
||||||
|
@ -1861,7 +1861,11 @@ tor_init(int argc, char *argv[])
|
|||||||
|
|
||||||
static tor_lockfile_t *lockfile = NULL;
|
static tor_lockfile_t *lockfile = NULL;
|
||||||
|
|
||||||
/** DOCDOC. What's this function do? */
|
/** Try to grab the lock file described in <b>options</b>, if we do not
|
||||||
|
* already have it. If <b>err_if_locked</b> is true, warn if somebody else is
|
||||||
|
* holding the lock, and exit if we can't get it after waiting. Otherwise,
|
||||||
|
* return -1 if we can't get the lockfile. Return 0 on success.
|
||||||
|
*/
|
||||||
int
|
int
|
||||||
try_locking(or_options_t *options, int err_if_locked)
|
try_locking(or_options_t *options, int err_if_locked)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user