summaryrefslogtreecommitdiff
path: root/indra/llcommon/lockstatic.cpp
blob: f531ef331e55d3c71600ed20636157bc3ce4de79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/**
 * @file   lockstatic.cpp
 * @author Nat Goodspeed
 * @date   2024-05-23
 * @brief  Implementation for lockstatic.
 *
 * $LicenseInfo:firstyear=2024&license=viewerlgpl$
 * Copyright (c) 2024, Linden Research, Inc.
 * $/LicenseInfo$
 */

// Precompiled header
#include "linden_common.h"
// associated header
#include "lockstatic.h"
// STL headers
// std headers
// external library headers
// other Linden headers
#include "llerror.h"
#include "stringize.h"

void llthread::LockStaticBase::throwDead(const char* mangled)
{
    LLTHROW(Dead(stringize(LLError::Log::demangle(mangled), " called after cleanup()")));
}