tor_threads.h 399 B

12345678910111213
  1. /* Copyright (c) 2003-2004, Roger Dingledine
  2. * Copyright (c) 2004-2006, Roger Dingledine, Nick Mathewson.
  3. * Copyright (c) 2007-2019, The Tor Project, Inc. */
  4. /* See LICENSE for licensing information */
  5. #ifndef TOR_APP_THREADS_H
  6. #define TOR_APP_THREADS_H
  7. #include "lib/thread/threads.h"
  8. tor_thread_t *start_tor_thread(void (*func)(void *), void *data);
  9. #endif /* !defined(TOR_APP_THREADS_H) */