[#BloombergLP-bslmt-ThreadAttributes-setDetachedState] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslmt.adoc[bslmt]::xref:BloombergLP/bslmt/ThreadAttributes.adoc[ThreadAttributes]::setDetachedState :relfileprefix: ../../../ :mrdocs: Set the `detachedState` attribute of this object to the specified `value`. Return a non‐`const` reference to this object (see also {Fluent Interface}). A value of `e_CREATE_JOINABLE` (the default) indicates that a thread must be joined to clean up its resources after it terminates; a value of `e_CREATE_DETACHED` (the only other legal value) indicates that the resources will be cleaned up automatically upon thread termination, and that the thread must not be joined. == Synopsis Declared in `<bslmt_threadattributes.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bslmt/ThreadAttributes.adoc[ThreadAttributes]& setDetachedState(xref:BloombergLP/bslmt/ThreadAttributes/DetachedState-09.adoc[DetachedState] value); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#