mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
1ceb814544
PiperOrigin-RevId: 513581243
40 lines
799 B
Python
40 lines
799 B
Python
load("//tools:defs.bzl", "go_library", "go_test")
|
|
load("//tools/go_generics:defs.bzl", "go_template", "go_template_instance")
|
|
|
|
package(
|
|
default_applicable_licenses = ["//:license"],
|
|
licenses = ["notice"],
|
|
)
|
|
|
|
go_template(
|
|
name = "generic_atomicptr",
|
|
srcs = ["generic_atomicptr_unsafe.go"],
|
|
types = [
|
|
"Value",
|
|
],
|
|
visibility = ["//:sandbox"],
|
|
)
|
|
|
|
go_template_instance(
|
|
name = "atomicptr_int",
|
|
out = "atomicptr_int_unsafe.go",
|
|
package = "atomicptr",
|
|
suffix = "Int",
|
|
template = ":generic_atomicptr",
|
|
types = {
|
|
"Value": "int",
|
|
},
|
|
)
|
|
|
|
go_library(
|
|
name = "atomicptr",
|
|
srcs = ["atomicptr_int_unsafe.go"],
|
|
)
|
|
|
|
go_test(
|
|
name = "atomicptr_test",
|
|
size = "small",
|
|
srcs = ["atomicptr_test.go"],
|
|
library = ":atomicptr",
|
|
)
|