tls: document package and guard helpers

This commit is contained in:
Li Jie
2025-10-15 12:59:09 +08:00
parent 2110db7263
commit 1ed418e77e
6 changed files with 118 additions and 1 deletions

View File

@@ -1,5 +1,45 @@
//go:build llgo
/*
* Copyright (c) 2025 The GoPlus Authors (goplus.org). All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Package tls provides generic thread-local storage backed by POSIX pthread
// TLS. When built with the GC-enabled configuration (llgo && !nogc), TLS slots
// are automatically registered with the BDWGC garbage collector so pointers
// stored in thread-local state remain visible to the collector. Builds without
// GC integration (llgo && nogc) simply fall back to pthread TLS without root
// registration.
//
// Basic usage:
//
// h := tls.Alloc[int](nil)
// h.Set(42)
// val := h.Get() // returns 42
//
// With destructor:
//
// h := tls.Alloc[*Resource](func(r **Resource) {
// if r != nil && *r != nil {
// (*r).Close()
// }
// })
//
// Build tags:
// - llgo && !nogc: Enables GC-aware slot registration via BDWGC
// - llgo && nogc: Disables GC integration; TLS acts as plain pthread TLS
package tls
import (