thread.cpp 309 Bytes
Newer Older
1
#include "pls/internal/base/thread.h"
2 3 4 5 6 7 8 9 10 11

namespace pls {
    namespace internal {
        namespace base {
            bool this_thread::local_storage_key_initialized_ = false;
            pthread_key_t this_thread::local_storage_key_;
            // implementation in header (C++ templating)
        }
    }
}