diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2021-08-24 12:25:09 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-08-24 12:25:09 -0700 |
| commit | d29871977f97b50fe5e3f16cd9c68ebeba02a562 (patch) | |
| tree | 0deb01ff5e6e8a98da46663ba5b45e233ae52aad /lib/std/Thread/Futex.zig | |
| parent | dd75302563f5cc0c67907b5c8a724e69379893f0 (diff) | |
| download | zig-d29871977f97b50fe5e3f16cd9c68ebeba02a562.tar.gz zig-d29871977f97b50fe5e3f16cd9c68ebeba02a562.zip | |
remove redundant license headers from zig standard library
We already have a LICENSE file that covers the Zig Standard Library. We
no longer need to remind everyone that the license is MIT in every single
file.
Previously this was introduced to clarify the situation for a fork of
Zig that made Zig's LICENSE file harder to find, and replaced it with
their own license that required annual payments to their company.
However that fork now appears to be dead. So there is no need to
reinforce the copyright notice in every single file.
Diffstat (limited to 'lib/std/Thread/Futex.zig')
| -rw-r--r-- | lib/std/Thread/Futex.zig | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/std/Thread/Futex.zig b/lib/std/Thread/Futex.zig index a896942d6e..5a3da5cd94 100644 --- a/lib/std/Thread/Futex.zig +++ b/lib/std/Thread/Futex.zig @@ -1,9 +1,3 @@ -// SPDX-License-Identifier: MIT -// Copyright (c) 2015-2021 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. - //! Futex is a mechanism used to block (`wait`) and unblock (`wake`) threads using a 32bit memory address as hints. //! Blocking a thread is acknowledged only if the 32bit memory address is equal to a given value. //! This check helps avoid block/unblock deadlocks which occur if a `wake()` happens before a `wait()`. |
