-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathLinux.cpp
79 lines (61 loc) · 2.07 KB
/
Linux.cpp
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
//==--- Linux.cpp - Threading abstraction implementation ------- -*-C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2022 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// Implements threading support for Linux
//
//===----------------------------------------------------------------------===//
#if SWIFT_THREADING_LINUX
#include "swift/Threading/Impl.h"
#include "swift/Threading/Errors.h"
namespace {
#pragma clang diagnostic push
#pragma GCC diagnostic ignored "-Wglobal-constructors"
class MainThreadRememberer {
private:
pthread_t mainThread_;
public:
MainThreadRememberer() { mainThread_ = pthread_self(); }
pthread_t main_thread() const { return mainThread_; }
};
MainThreadRememberer rememberer;
#pragma clang diagnostic pop
} // namespace
using namespace swift;
using namespace threading_impl;
bool swift::threading_impl::thread_is_main() {
return pthread_equal(pthread_self(), rememberer.main_thread());
}
void swift::threading_impl::once_slow(once_t &predicate, void (*fn)(void *),
void *context) {
linux::ulock_lock(&predicate.lock);
if (predicate.flag.load(std::memory_order_acquire) == 0) {
fn(context);
predicate.flag.store(-1, std::memory_order_release);
}
linux::ulock_unlock(&predicate.lock);
}
swift::threading_impl::stack_bounds
swift::threading_impl::thread_get_current_stack_bounds() {
stack_bounds result = { nullptr, nullptr };
pthread_attr_t attr;
size_t size = 0;
void *begin = nullptr;
if (!pthread_getattr_np(pthread_self(), &attr)) {
if (!pthread_attr_getstack(&attr, &begin, &size)) {
result.low = begin;
result.high = (char *)begin + size;
}
pthread_attr_destroy(&attr);
}
return result;
}
#endif // SWIFT_THREADING_LINUX