diff options
author | Nick Mathewson <nickm@torproject.org> | 2008-04-23 20:32:09 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2008-04-23 20:32:09 +0000 |
commit | 5dfd0c354f574e05c2a4003592f1c043252040c0 (patch) | |
tree | 4ae678bd32f36f70a861b3b59e1275f057f8edc1 /src/or | |
parent | 94a9eaaf149b1b9fd5c066a3ed56cb0a1f69a16f (diff) | |
download | tor-5dfd0c354f574e05c2a4003592f1c043252040c0.tar.gz tor-5dfd0c354f574e05c2a4003592f1c043252040c0.zip |
r15303@tombo: nickm | 2008-04-23 16:29:45 -0400
Embarassing. I had apparently broken OSX and Freebsd by not initializing threading before we initialize the logging system. This patch should do so, and fix bug 671. Forward-port candidate.
svn:r14429
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/main.c | 3 | ||||
-rw-r--r-- | src/or/test.c | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/or/main.c b/src/or/main.c index 8357124297..3eee60669b 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -1768,8 +1768,6 @@ tor_init(int argc, char *argv[]) /* Have the log set up with our application name. */ tor_snprintf(buf, sizeof(buf), "Tor %s", get_version()); log_set_application_name(buf); - /* Initialize threading. */ - tor_threads_init(); /* Initialize the history structures. */ rep_hist_init(); /* Initialize the service cache. */ @@ -1965,6 +1963,7 @@ int tor_main(int argc, char *argv[]) { int result = 0; + tor_threads_init(); init_logging(); #ifdef USE_DMALLOC int r = CRYPTO_set_mem_ex_functions(_tor_malloc, _tor_realloc, diff --git a/src/or/test.c b/src/or/test.c index 858ff4700f..d4d5275a39 100644 --- a/src/or/test.c +++ b/src/or/test.c @@ -3561,6 +3561,7 @@ main(int c, char**v) int verbose = 0, any_selected = 0; int loglevel = LOG_ERR; + tor_threads_init(); init_logging(); for (i = 1; i < c; ++i) { |