remove copyright years

They're obnoxious to update, and I'm told they have no legal value.
master
edef 2016-03-22 08:25:23 +01:00
parent 709dad1c4a
commit b986931817
21 changed files with 21 additions and 21 deletions

View File

@ -1,5 +1,5 @@
libfringe, a low-level green threading library.
Copyright (c) 2015, edef <edef@edef.eu>
Copyright (c) edef <edef@edef.eu>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
#![feature(test)]
extern crate test;

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
#![cfg(target_os = "linux")]
#![feature(asm, test)]

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
#![feature(test)]
#![cfg(feature = "os")]

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
#![feature(thread_local)]
extern crate fringe;

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
use core::mem::{size_of, align_of};
use core::cmp::max;

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
pub use self::imp::Registers;

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
//! initialise a new context

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
use void::Void;

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
//! switch to a new context

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
//! initialise a new context

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
use stack::Stack;
use void::Void;

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
//! switch to a new context

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
use core::marker::PhantomData;

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
pub use self::imp::*;

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
extern crate valgrind;

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
#![feature(asm)]
#![no_std]

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
extern crate std;

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
use core::sync::atomic::{ATOMIC_USIZE_INIT, AtomicUsize, Ordering};

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
extern crate libc;
use self::libc::{c_void, c_int, size_t};

View File

@ -1,5 +1,5 @@
// This file is part of libfringe, a low-level green threading library.
// Copyright (c) 2015, edef <edef@edef.eu>
// Copyright (c) edef <edef@edef.eu>
// See the LICENSE file included in this distribution.
//! Traits for stacks.