# Copyright 2022 The Fuchsia Authors. All rights reserved. | |
# Use of this source code is governed by a BSD-style license that can be | |
# found in the LICENSE file. | |
import("../libc.gni") | |
source_set("pthread") { | |
sources = [ | |
"pthread_getname_np.c", | |
"pthread_setname_np.c", | |
] | |
deps = [ | |
"//zircon/system/ulib/runtime", | |
"//zircon/third_party/ulib/musl:musl_internal", | |
] | |
} | |
libc_test("unittests") { | |
sources = [ "pthread-getsetname-test.cc" ] | |
} |