summaryrefslogtreecommitdiff
path: root/mach
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-02-09 23:18:22 +0000
committerJoseph Myers <joseph@codesourcery.com>2012-02-09 23:18:22 +0000
commit59ba27a63ada3f46b71ec99a314dfac5a38ad6d2 (patch)
tree69edda6ebdfd8fe5d83991ab44723e07f6366420 /mach
parentaf850b1c978bdca648ef9fb141e785d75f74d9bf (diff)
Replace FSF snail mail address with URLs.
Diffstat (limited to 'mach')
-rw-r--r--mach/Machrules5
-rw-r--r--mach/Makefile5
-rw-r--r--mach/devstream.c5
-rw-r--r--mach/lock-intern.h5
-rw-r--r--mach/mach.h5
-rw-r--r--mach/mach/mach_traps.h5
-rw-r--r--mach/mach/mig_support.h5
-rw-r--r--mach/mach_init.c5
-rw-r--r--mach/mach_init.h5
-rw-r--r--mach/mig-alloc.c5
-rw-r--r--mach/mig-dealloc.c5
-rw-r--r--mach/mig-reply.c5
-rw-r--r--mach/msgserver.c5
-rw-r--r--mach/mutex-init.c5
-rw-r--r--mach/mutex-solid.c5
-rw-r--r--mach/setup-thread.c5
-rw-r--r--mach/spin-lock.h5
-rw-r--r--mach/spin-solid.c5
18 files changed, 36 insertions, 54 deletions
diff --git a/mach/Machrules b/mach/Machrules
index 37693aec43..d211bce057 100644
--- a/mach/Machrules
+++ b/mach/Machrules
@@ -14,9 +14,8 @@
# Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public
-# License along with the GNU C Library; if not, write to the Free
-# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-# 02111-1307 USA.
+# License along with the GNU C Library; if not, see
+# <http://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 314f2efcd9..ec33fa72d4 100644
--- a/mach/Makefile
+++ b/mach/Makefile
@@ -13,9 +13,8 @@
# Lesser General Public License for more details.
# You should have received a copy of the GNU Lesser General Public
-# License along with the GNU C Library; if not, write to the Free
-# Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
-# 02111-1307 USA.
+# License along with the GNU C Library; if not, see
+# <http://www.gnu.org/licenses/>.
subdir := mach
diff --git a/mach/devstream.c b/mach/devstream.c
index ebc4b9329b..7c5a783cbb 100644
--- a/mach/devstream.c
+++ b/mach/devstream.c
@@ -14,9 +14,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <stdio.h>
#include <mach.h>
diff --git a/mach/lock-intern.h b/mach/lock-intern.h
index 4aaaedc1c0..7c137d9d4a 100644
--- a/mach/lock-intern.h
+++ b/mach/lock-intern.h
@@ -12,9 +12,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#ifndef _LOCK_INTERN_H
#define _LOCK_INTERN_H
diff --git a/mach/mach.h b/mach/mach.h
index f8fd44bb00..622db97af1 100644
--- a/mach/mach.h
+++ b/mach/mach.h
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#ifndef _MACH_H
diff --git a/mach/mach/mach_traps.h b/mach/mach/mach_traps.h
index 2d97baa88f..29ebbe9ba2 100644
--- a/mach/mach/mach_traps.h
+++ b/mach/mach/mach_traps.h
@@ -12,9 +12,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://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 f02e8d4f83..84838be268 100644
--- a/mach/mach/mig_support.h
+++ b/mach/mach/mig_support.h
@@ -12,9 +12,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://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 552d2685ff..6e69f12830 100644
--- a/mach/mach_init.c
+++ b/mach/mach_init.c
@@ -12,9 +12,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://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 38823d4180..5b015a6387 100644
--- a/mach/mach_init.h
+++ b/mach/mach_init.h
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#ifndef _MACH_INIT_H
diff --git a/mach/mig-alloc.c b/mach/mig-alloc.c
index 7324c659b4..ec465a1ccb 100644
--- a/mach/mig-alloc.c
+++ b/mach/mig-alloc.c
@@ -12,9 +12,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <mach.h>
diff --git a/mach/mig-dealloc.c b/mach/mig-dealloc.c
index 99c990636e..635db5ab74 100644
--- a/mach/mig-dealloc.c
+++ b/mach/mig-dealloc.c
@@ -12,9 +12,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <mach.h>
diff --git a/mach/mig-reply.c b/mach/mig-reply.c
index 3b02028858..3bfd9c16f0 100644
--- a/mach/mig-reply.c
+++ b/mach/mig-reply.c
@@ -12,9 +12,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <mach.h>
diff --git a/mach/msgserver.c b/mach/msgserver.c
index 9478ae1914..915a08868a 100644
--- a/mach/msgserver.c
+++ b/mach/msgserver.c
@@ -12,9 +12,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://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 94b0332495..46ec114f79 100644
--- a/mach/mutex-init.c
+++ b/mach/mutex-init.c
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <lock-intern.h>
#include <cthreads.h>
diff --git a/mach/mutex-solid.c b/mach/mutex-solid.c
index 13f911fd32..025b3914e6 100644
--- a/mach/mutex-solid.c
+++ b/mach/mutex-solid.c
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <lock-intern.h>
#include <cthreads.h>
diff --git a/mach/setup-thread.c b/mach/setup-thread.c
index fecffd9f06..7d104ab05e 100644
--- a/mach/setup-thread.c
+++ b/mach/setup-thread.c
@@ -12,9 +12,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <mach.h>
#include <thread_state.h>
diff --git a/mach/spin-lock.h b/mach/spin-lock.h
index 1e9acf2c4d..624ee275bd 100644
--- a/mach/spin-lock.h
+++ b/mach/spin-lock.h
@@ -13,9 +13,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://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 3e3fbd4db2..0bd0a50350 100644
--- a/mach/spin-solid.c
+++ b/mach/spin-solid.c
@@ -12,9 +12,8 @@
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
- License along with the GNU C Library; if not, write to the Free
- Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
- 02111-1307 USA. */
+ License along with the GNU C Library; if not, see
+ <http://www.gnu.org/licenses/>. */
#include <spin-lock.h>
#include <mach/mach_traps.h>