Commit 20f90789 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Interesting: on FreeBSD uninitialized pthread keys default to the

first one created.  I would have skipped #0 if it was me...
parent 21653426
......@@ -195,6 +195,7 @@ child_main(void)
cache_param = heritage.param;
AZ(pthread_key_create(&req_key, NULL));
AZ(pthread_key_create(&bo_key, NULL));
AZ(pthread_key_create(&name_key, NULL));
THR_SetName("cache-main");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment