pidfile.h 359 B

12345678910111213141516
  1. /* Copyright (c) 2003-2004, Roger Dingledine
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2018, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. /**
  6. * \file pidfile.h
  7. * \brief Header for pidfile.c
  8. **/
  9. #ifndef TOR_PIDFILE_H
  10. #define TOR_PIDFILE_H
  11. int write_pidfile(const char *filename);
  12. #endif