blob: 1e45f81ebf7f7e505f68878269115a39ed204a05 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
GO_LIBRARY()
SRCS(
cond.go
map.go
mutex.go
once.go
oncefunc.go
pool.go
poolqueue.go
runtime.go
runtime2.go
rwmutex.go
waitgroup.go
)
GO_TEST_SRCS(export_test.go)
GO_XTEST_SRCS(
cond_test.go
example_pool_test.go
example_test.go
map_bench_test.go
map_reference_test.go
map_test.go
mutex_test.go
once_test.go
oncefunc_test.go
pool_test.go
runtime_sema_test.go
rwmutex_test.go
waitgroup_test.go
)
END()
RECURSE(
atomic
)
|