aboutsummaryrefslogtreecommitdiff
path: root/src/ThreadPool.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-12-19 15:03:03 -0700
committerAndrew Kelley <andrew@ziglang.org>2020-12-20 15:08:59 -0700
commit4e621d4260ed752995dedc50a240931fc0e0941f (patch)
treea01b071b03680b3e1bf57bf73cdd8f47c625ce03 /src/ThreadPool.zig
parente00b6db2aa2e3aa7e61c4b1ccebf4ebdb6e2d45a (diff)
downloadzig-4e621d4260ed752995dedc50a240931fc0e0941f.tar.gz
zig-4e621d4260ed752995dedc50a240931fc0e0941f.zip
workaround for std lib AutoResetEvent bug
Diffstat (limited to 'src/ThreadPool.zig')
-rw-r--r--src/ThreadPool.zig5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ThreadPool.zig b/src/ThreadPool.zig
index 6a59b684be..7d6af3d24c 100644
--- a/src/ThreadPool.zig
+++ b/src/ThreadPool.zig
@@ -1,3 +1,8 @@
+// SPDX-License-Identifier: MIT
+// Copyright (c) 2015-2020 Zig Contributors
+// This file is part of [zig](https://ziglang.org/), which is MIT licensed.
+// The MIT license requires this copyright notice to be included in all copies
+// and substantial portions of the software.
const std = @import("std");
const ThreadPool = @This();