folly::AsyncStackRoot::AsyncStackRoot

Constructors

Synopses

Declared in <folly/tracing/AsyncStack.h>

Constructs an empty stack root with no active frame.

constexpr
AsyncStackRoot() = default;
» more...

Deleted copy constructor; stack roots are not copyable.

AsyncStackRoot(AsyncStackRoot const& other) = delete;
» more...

Deleted move constructor; stack roots are not movable.

AsyncStackRoot(AsyncStackRoot&& other) = delete;
» more...

Parameters

NameDescription
otherThe stack root that would be copied.