From d31eaabbaf5f45656c10e4bccd3fe6653a7d3ec1 Mon Sep 17 00:00:00 2001 From: Ariadne Conill Date: Fri, 27 Mar 2020 09:23:49 +0000 Subject: [PATCH] update copyright statements, add mailmap --- .mailmap | 1 + LICENSE | 2 +- arch/aarch64/getcontext.S | 2 +- arch/aarch64/makecontext.c | 2 +- arch/aarch64/setcontext.S | 2 +- arch/aarch64/startcontext.S | 2 +- arch/aarch64/swapcontext.S | 2 +- arch/arm/getcontext.S | 2 +- arch/arm/makecontext.c | 2 +- arch/arm/setcontext.S | 2 +- arch/arm/startcontext.S | 2 +- arch/arm/swapcontext.S | 2 +- arch/ppc/makecontext.c | 2 +- arch/ppc/retfromsyscall.c | 2 +- arch/ppc/startcontext.S | 2 +- arch/ppc64/makecontext.c | 2 +- arch/ppc64/retfromsyscall.c | 2 +- arch/ppc64/startcontext.S | 2 +- arch/s390x/getcontext.S | 2 +- arch/s390x/makecontext.c | 2 +- arch/s390x/setcontext.S | 2 +- arch/s390x/startcontext.S | 2 +- arch/s390x/swapcontext.S | 2 +- arch/x86/getcontext.S | 2 +- arch/x86/makecontext.c | 2 +- arch/x86/setcontext.S | 2 +- arch/x86/startcontext.S | 2 +- arch/x86/swapcontext.S | 2 +- arch/x86_64/getcontext.S | 2 +- arch/x86_64/makecontext.c | 2 +- arch/x86_64/setcontext.S | 2 +- arch/x86_64/startcontext.S | 2 +- arch/x86_64/swapcontext.S | 2 +- 33 files changed, 33 insertions(+), 32 deletions(-) create mode 100644 .mailmap diff --git a/.mailmap b/.mailmap new file mode 100644 index 0000000..28c0689 --- /dev/null +++ b/.mailmap @@ -0,0 +1 @@ +Ariadne Conill diff --git a/LICENSE b/LICENSE index db1078d..5c333bd 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2018 William Pitcock +Copyright (c) 2018-2020 Ariadne Conill 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/arch/aarch64/getcontext.S b/arch/aarch64/getcontext.S index 3fd3645..c6ef30b 100644 --- a/arch/aarch64/getcontext.S +++ b/arch/aarch64/getcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/aarch64/makecontext.c b/arch/aarch64/makecontext.c index 40923c8..162b6f1 100644 --- a/arch/aarch64/makecontext.c +++ b/arch/aarch64/makecontext.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/aarch64/setcontext.S b/arch/aarch64/setcontext.S index e59cc26..a33be75 100644 --- a/arch/aarch64/setcontext.S +++ b/arch/aarch64/setcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/aarch64/startcontext.S b/arch/aarch64/startcontext.S index 4e757a1..9b29c85 100644 --- a/arch/aarch64/startcontext.S +++ b/arch/aarch64/startcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/aarch64/swapcontext.S b/arch/aarch64/swapcontext.S index e8eb13f..bdd8b4d 100644 --- a/arch/aarch64/swapcontext.S +++ b/arch/aarch64/swapcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/arm/getcontext.S b/arch/arm/getcontext.S index c6ca5ae..aa4954f 100644 --- a/arch/arm/getcontext.S +++ b/arch/arm/getcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/arm/makecontext.c b/arch/arm/makecontext.c index 14e6203..2d1dad4 100644 --- a/arch/arm/makecontext.c +++ b/arch/arm/makecontext.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/arm/setcontext.S b/arch/arm/setcontext.S index 341fc02..e6d1e93 100644 --- a/arch/arm/setcontext.S +++ b/arch/arm/setcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/arm/startcontext.S b/arch/arm/startcontext.S index 45430c7..b73fb88 100644 --- a/arch/arm/startcontext.S +++ b/arch/arm/startcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/arm/swapcontext.S b/arch/arm/swapcontext.S index e257647..79ca020 100644 --- a/arch/arm/swapcontext.S +++ b/arch/arm/swapcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/ppc/makecontext.c b/arch/ppc/makecontext.c index 51c492f..0375137 100644 --- a/arch/ppc/makecontext.c +++ b/arch/ppc/makecontext.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * Copyright (c) 2019 Bobby Bingham * * Permission to use, copy, modify, and/or distribute this software for any diff --git a/arch/ppc/retfromsyscall.c b/arch/ppc/retfromsyscall.c index 3ad43c0..150c13d 100644 --- a/arch/ppc/retfromsyscall.c +++ b/arch/ppc/retfromsyscall.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * Copyright (c) 2019 Bobby Bingham * * Permission to use, copy, modify, and/or distribute this software for any diff --git a/arch/ppc/startcontext.S b/arch/ppc/startcontext.S index a117b9c..71175fb 100644 --- a/arch/ppc/startcontext.S +++ b/arch/ppc/startcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/ppc64/makecontext.c b/arch/ppc64/makecontext.c index 43da557..8e277d4 100644 --- a/arch/ppc64/makecontext.c +++ b/arch/ppc64/makecontext.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * Copyright (c) 2019 Bobby Bingham * * Permission to use, copy, modify, and/or distribute this software for any diff --git a/arch/ppc64/retfromsyscall.c b/arch/ppc64/retfromsyscall.c index 3ad43c0..150c13d 100644 --- a/arch/ppc64/retfromsyscall.c +++ b/arch/ppc64/retfromsyscall.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * Copyright (c) 2019 Bobby Bingham * * Permission to use, copy, modify, and/or distribute this software for any diff --git a/arch/ppc64/startcontext.S b/arch/ppc64/startcontext.S index de2fff3..fb2fc02 100644 --- a/arch/ppc64/startcontext.S +++ b/arch/ppc64/startcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/s390x/getcontext.S b/arch/s390x/getcontext.S index 2987f43..ad4bb4a 100644 --- a/arch/s390x/getcontext.S +++ b/arch/s390x/getcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/s390x/makecontext.c b/arch/s390x/makecontext.c index c5c8bc6..685ab45 100644 --- a/arch/s390x/makecontext.c +++ b/arch/s390x/makecontext.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/s390x/setcontext.S b/arch/s390x/setcontext.S index ea8e4ff..a363ebc 100644 --- a/arch/s390x/setcontext.S +++ b/arch/s390x/setcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/s390x/startcontext.S b/arch/s390x/startcontext.S index e29e946..434d481 100644 --- a/arch/s390x/startcontext.S +++ b/arch/s390x/startcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/s390x/swapcontext.S b/arch/s390x/swapcontext.S index 251f5fe..5fc629c 100644 --- a/arch/s390x/swapcontext.S +++ b/arch/s390x/swapcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/x86/getcontext.S b/arch/x86/getcontext.S index a19062c..2311596 100644 --- a/arch/x86/getcontext.S +++ b/arch/x86/getcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/x86/makecontext.c b/arch/x86/makecontext.c index 7a9c436..a205ea2 100644 --- a/arch/x86/makecontext.c +++ b/arch/x86/makecontext.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/x86/setcontext.S b/arch/x86/setcontext.S index 1e7cf5b..50c70fd 100644 --- a/arch/x86/setcontext.S +++ b/arch/x86/setcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/x86/startcontext.S b/arch/x86/startcontext.S index 3304863..bd1fc74 100644 --- a/arch/x86/startcontext.S +++ b/arch/x86/startcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/x86/swapcontext.S b/arch/x86/swapcontext.S index 8fbafbf..e953a3a 100644 --- a/arch/x86/swapcontext.S +++ b/arch/x86/swapcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/x86_64/getcontext.S b/arch/x86_64/getcontext.S index 24cc1d3..76c43b1 100644 --- a/arch/x86_64/getcontext.S +++ b/arch/x86_64/getcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/x86_64/makecontext.c b/arch/x86_64/makecontext.c index ba6ca59..76942c9 100644 --- a/arch/x86_64/makecontext.c +++ b/arch/x86_64/makecontext.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/x86_64/setcontext.S b/arch/x86_64/setcontext.S index aba3775..d934613 100644 --- a/arch/x86_64/setcontext.S +++ b/arch/x86_64/setcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/x86_64/startcontext.S b/arch/x86_64/startcontext.S index 54468f5..a249573 100644 --- a/arch/x86_64/startcontext.S +++ b/arch/x86_64/startcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * 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/arch/x86_64/swapcontext.S b/arch/x86_64/swapcontext.S index 38e6c26..4e4c983 100644 --- a/arch/x86_64/swapcontext.S +++ b/arch/x86_64/swapcontext.S @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018 William Pitcock + * Copyright (c) 2018 Ariadne Conill * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above