tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

lockfile.h (576B)


      1 /* Copyright (c) 2003-2004, Roger Dingledine
      2 * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
      3 * Copyright (c) 2007-2021, The Tor Project, Inc. */
      4 /* See LICENSE for licensing information */
      5 
      6 /**
      7 * \file lockfile.h
      8 *
      9 * \brief Header for lockfile.c
     10 **/
     11 
     12 #ifndef TOR_LOCKFILE_H
     13 #define TOR_LOCKFILE_H
     14 
     15 typedef struct tor_lockfile_t tor_lockfile_t;
     16 tor_lockfile_t *tor_lockfile_lock(const char *filename, int blocking,
     17                                  int *locked_out);
     18 void tor_lockfile_unlock(tor_lockfile_t *lockfile);
     19 
     20 #endif /* !defined(TOR_LOCKFILE_H) */