From b9869318175d2088671b41977d6ff39674b42717 Mon Sep 17 00:00:00 2001 From: edef Date: Tue, 22 Mar 2016 08:25:23 +0100 Subject: [PATCH] remove copyright years They're obnoxious to update, and I'm told they have no legal value. --- LICENSE | 2 +- benches/context_new.rs | 2 +- benches/kernel_swap.rs | 2 +- benches/swap.rs | 2 +- examples/basic.rs | 2 +- src/arch/common.rs | 2 +- src/arch/mod.rs | 2 +- src/arch/x86/init.s | 2 +- src/arch/x86/mod.rs | 2 +- src/arch/x86/swap.s | 2 +- src/arch/x86_64/init.s | 2 +- src/arch/x86_64/mod.rs | 2 +- src/arch/x86_64/swap.s | 2 +- src/context.rs | 2 +- src/debug/mod.rs | 2 +- src/debug/valgrind.rs | 2 +- src/lib.rs | 2 +- src/os/mod.rs | 2 +- src/os/sys/mod.rs | 2 +- src/os/sys/unix.rs | 2 +- src/stack.rs | 2 +- 21 files changed, 21 insertions(+), 21 deletions(-) diff --git a/LICENSE b/LICENSE index 34d10a0..e9a1061 100644 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ libfringe, a low-level green threading library. -Copyright (c) 2015, edef +Copyright (c) edef Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above diff --git a/benches/context_new.rs b/benches/context_new.rs index 96842eb..c5e7e8f 100644 --- a/benches/context_new.rs +++ b/benches/context_new.rs @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. #![feature(test)] extern crate test; diff --git a/benches/kernel_swap.rs b/benches/kernel_swap.rs index b52b84c..6c2aaf8 100644 --- a/benches/kernel_swap.rs +++ b/benches/kernel_swap.rs @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. #![cfg(target_os = "linux")] #![feature(asm, test)] diff --git a/benches/swap.rs b/benches/swap.rs index 33b007a..0b8c2ca 100644 --- a/benches/swap.rs +++ b/benches/swap.rs @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. #![feature(test)] #![cfg(feature = "os")] diff --git a/examples/basic.rs b/examples/basic.rs index c0de92c..92116c8 100644 --- a/examples/basic.rs +++ b/examples/basic.rs @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. #![feature(thread_local)] extern crate fringe; diff --git a/src/arch/common.rs b/src/arch/common.rs index 1e9a188..af12ef7 100644 --- a/src/arch/common.rs +++ b/src/arch/common.rs @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. use core::mem::{size_of, align_of}; use core::cmp::max; diff --git a/src/arch/mod.rs b/src/arch/mod.rs index d85e3b4..ebcb04a 100644 --- a/src/arch/mod.rs +++ b/src/arch/mod.rs @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. pub use self::imp::Registers; diff --git a/src/arch/x86/init.s b/src/arch/x86/init.s index 7ed3771..27e4088 100644 --- a/src/arch/x86/init.s +++ b/src/arch/x86/init.s @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. //! initialise a new context diff --git a/src/arch/x86/mod.rs b/src/arch/x86/mod.rs index 7789839..d378872 100644 --- a/src/arch/x86/mod.rs +++ b/src/arch/x86/mod.rs @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. use void::Void; diff --git a/src/arch/x86/swap.s b/src/arch/x86/swap.s index d3310e5..eed2b42 100644 --- a/src/arch/x86/swap.s +++ b/src/arch/x86/swap.s @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. //! switch to a new context diff --git a/src/arch/x86_64/init.s b/src/arch/x86_64/init.s index 7f3983c..54e76ce 100644 --- a/src/arch/x86_64/init.s +++ b/src/arch/x86_64/init.s @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. //! initialise a new context diff --git a/src/arch/x86_64/mod.rs b/src/arch/x86_64/mod.rs index 824b2b7..ed533ee 100644 --- a/src/arch/x86_64/mod.rs +++ b/src/arch/x86_64/mod.rs @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. use stack::Stack; use void::Void; diff --git a/src/arch/x86_64/swap.s b/src/arch/x86_64/swap.s index 270fdc1..cffa170 100644 --- a/src/arch/x86_64/swap.s +++ b/src/arch/x86_64/swap.s @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. //! switch to a new context diff --git a/src/context.rs b/src/context.rs index b647bba..f12b8a8 100644 --- a/src/context.rs +++ b/src/context.rs @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. use core::marker::PhantomData; diff --git a/src/debug/mod.rs b/src/debug/mod.rs index 2b46086..91315af 100644 --- a/src/debug/mod.rs +++ b/src/debug/mod.rs @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. pub use self::imp::*; diff --git a/src/debug/valgrind.rs b/src/debug/valgrind.rs index 913ca41..707c598 100644 --- a/src/debug/valgrind.rs +++ b/src/debug/valgrind.rs @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. extern crate valgrind; diff --git a/src/lib.rs b/src/lib.rs index 6fe6922..8bc64e4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. #![feature(asm)] #![no_std] diff --git a/src/os/mod.rs b/src/os/mod.rs index 3e238ad..ce0eb2d 100644 --- a/src/os/mod.rs +++ b/src/os/mod.rs @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. extern crate std; diff --git a/src/os/sys/mod.rs b/src/os/sys/mod.rs index 860ae96..57edbc2 100644 --- a/src/os/sys/mod.rs +++ b/src/os/sys/mod.rs @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. use core::sync::atomic::{ATOMIC_USIZE_INIT, AtomicUsize, Ordering}; diff --git a/src/os/sys/unix.rs b/src/os/sys/unix.rs index e2a41af..fd7697e 100644 --- a/src/os/sys/unix.rs +++ b/src/os/sys/unix.rs @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. extern crate libc; use self::libc::{c_void, c_int, size_t}; diff --git a/src/stack.rs b/src/stack.rs index a926ba9..1f92ca2 100644 --- a/src/stack.rs +++ b/src/stack.rs @@ -1,5 +1,5 @@ // This file is part of libfringe, a low-level green threading library. -// Copyright (c) 2015, edef +// Copyright (c) edef // See the LICENSE file included in this distribution. //! Traits for stacks.