aboutsummaryrefslogtreecommitdiff
path: root/mach
diff options
context:
space:
mode:
Diffstat (limited to 'mach')
-rw-r--r--mach/Machrules2
-rw-r--r--mach/Makefile2
-rw-r--r--mach/devstream.c2
-rw-r--r--mach/lock-intern.h2
-rw-r--r--mach/lowlevellock.h2
-rw-r--r--mach/mach.h2
-rw-r--r--mach/mach/mach_traps.h2
-rw-r--r--mach/mach/mig_support.h2
-rw-r--r--mach/mach_init.c2
-rw-r--r--mach/mach_init.h2
-rw-r--r--mach/mig-alloc.c2
-rw-r--r--mach/mig-dealloc.c2
-rw-r--r--mach/mig-reply.c2
-rw-r--r--mach/msgserver.c2
-rw-r--r--mach/mutex-init.c2
-rw-r--r--mach/mutex-solid.c2
-rw-r--r--mach/setup-thread.c2
-rw-r--r--mach/spin-lock.h2
-rw-r--r--mach/spin-solid.c2
19 files changed, 19 insertions, 19 deletions
diff --git a/mach/Machrules b/mach/Machrules
index 7a5e37c..ec61089 100644
--- a/mach/Machrules
+++ b/mach/Machrules
@@ -14,7 +14,7 @@
# You should have received a copy of the GNU Lesser General Public
# License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
# Makefiles may define these variable before including this file:
# user-interfaces Names of interfaces to put user stubs in for.
diff --git a/mach/Makefile b/mach/Makefile
index b0317e8..804b032 100644
--- a/mach/Makefile
+++ b/mach/Makefile
@@ -13,7 +13,7 @@
# You should have received a copy of the GNU Lesser General Public
# License along with the GNU C Library; if not, see
-# <http://www.gnu.org/licenses/>.
+# <https://www.gnu.org/licenses/>.
subdir := mach
diff --git a/mach/devstream.c b/mach/devstream.c
index 44aa43d..b1397e0 100644
--- a/mach/devstream.c
+++ b/mach/devstream.c
@@ -15,7 +15,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <stdio.h>
#include <mach.h>
diff --git a/mach/lock-intern.h b/mach/lock-intern.h
index 1988c89..6d9e5e3 100644
--- a/mach/lock-intern.h
+++ b/mach/lock-intern.h
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#ifndef _LOCK_INTERN_H
#define _LOCK_INTERN_H
diff --git a/mach/lowlevellock.h b/mach/lowlevellock.h
index ddff44d..eab0612 100644
--- a/mach/lowlevellock.h
+++ b/mach/lowlevellock.h
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#ifndef _MACH_LOWLEVELLOCK_H
#define _MACH_LOWLEVELLOCK_H 1
diff --git a/mach/mach.h b/mach/mach.h
index 943cb51..4c46fa9 100644
--- a/mach/mach.h
+++ b/mach/mach.h
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#ifndef _MACH_H
diff --git a/mach/mach/mach_traps.h b/mach/mach/mach_traps.h
index 70db0d4..ac4d983 100644
--- a/mach/mach/mach_traps.h
+++ b/mach/mach/mach_traps.h
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
/* Declare the few Mach system calls (except mach_msg, in <mach/message.h>).
This does not include the kernel RPC shortcut calls (in <mach-shortcuts.h>).
diff --git a/mach/mach/mig_support.h b/mach/mach/mig_support.h
index db52f63..2419fcf 100644
--- a/mach/mach/mig_support.h
+++ b/mach/mach/mig_support.h
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
/* Useful declarations and support functions for MiG-generated stubs. */
diff --git a/mach/mach_init.c b/mach/mach_init.c
index 2e0faeb..4944df2 100644
--- a/mach/mach_init.c
+++ b/mach/mach_init.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <mach.h>
#include <mach/mig_support.h>
diff --git a/mach/mach_init.h b/mach/mach_init.h
index 1c000ef..85ae592 100644
--- a/mach/mach_init.h
+++ b/mach/mach_init.h
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#ifndef _MACH_INIT_H
diff --git a/mach/mig-alloc.c b/mach/mig-alloc.c
index 493e0d2..61ea9c5 100644
--- a/mach/mig-alloc.c
+++ b/mach/mig-alloc.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <mach.h>
diff --git a/mach/mig-dealloc.c b/mach/mig-dealloc.c
index badbb6c..f64d7cb 100644
--- a/mach/mig-dealloc.c
+++ b/mach/mig-dealloc.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <mach.h>
diff --git a/mach/mig-reply.c b/mach/mig-reply.c
index d9723ef..5951c7f 100644
--- a/mach/mig-reply.c
+++ b/mach/mig-reply.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <mach.h>
diff --git a/mach/msgserver.c b/mach/msgserver.c
index 8994ae9..7b81abc 100644
--- a/mach/msgserver.c
+++ b/mach/msgserver.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
/* Based on CMU's mach_msg_server.c revision 2.4 of 91/05/14, and thus
under the following copyright. Rewritten by Roland McGrath (FSF)
diff --git a/mach/mutex-init.c b/mach/mutex-init.c
index 59ca891..aa59b70 100644
--- a/mach/mutex-init.c
+++ b/mach/mutex-init.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <lock-intern.h>
#include <lowlevellock.h>
diff --git a/mach/mutex-solid.c b/mach/mutex-solid.c
index d771ad6..9669caa 100644
--- a/mach/mutex-solid.c
+++ b/mach/mutex-solid.c
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <lock-intern.h>
#include <cthreads.h>
diff --git a/mach/setup-thread.c b/mach/setup-thread.c
index 420991c..62317fa 100644
--- a/mach/setup-thread.c
+++ b/mach/setup-thread.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <mach.h>
#include <thread_state.h>
diff --git a/mach/spin-lock.h b/mach/spin-lock.h
index 19d28e0..3efd34a 100644
--- a/mach/spin-lock.h
+++ b/mach/spin-lock.h
@@ -14,7 +14,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#ifndef _SPIN_LOCK_H
#define _SPIN_LOCK_H
diff --git a/mach/spin-solid.c b/mach/spin-solid.c
index ac50d90..132238c 100644
--- a/mach/spin-solid.c
+++ b/mach/spin-solid.c
@@ -13,7 +13,7 @@
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
- <http://www.gnu.org/licenses/>. */
+ <https://www.gnu.org/licenses/>. */
#include <spin-lock.h>
#include <mach/mach_traps.h>