diff options
author | Frédéric Brière <fbriere@fbriere.net> | 2016-10-01 18:30:38 -0400 |
---|---|---|
committer | Frédéric Brière <fbriere@fbriere.net> | 2016-10-02 21:06:24 -0400 |
commit | 1f6d76bb12cf026dff26a0588a75c2dfdaa8cde3 (patch) | |
tree | 4bde6362102f3fc1ab25c078a5bca0eba9b28e2d /src/threads | |
parent | e65364c61775aab6345b8bb9e8f83a53bc7f4a32 (diff) | |
download | twinkle-1f6d76bb12cf026dff26a0588a75c2dfdaa8cde3.tar twinkle-1f6d76bb12cf026dff26a0588a75c2dfdaa8cde3.tar.gz twinkle-1f6d76bb12cf026dff26a0588a75c2dfdaa8cde3.tar.lz twinkle-1f6d76bb12cf026dff26a0588a75c2dfdaa8cde3.tar.xz twinkle-1f6d76bb12cf026dff26a0588a75c2dfdaa8cde3.zip |
Replace (old) FSF postal address with URL in header files
Wording copied from https://www.gnu.org/licenses/gpl-howto.en.html
Fixes #25, fixes #71
Diffstat (limited to 'src/threads')
-rw-r--r-- | src/threads/mutex.cpp | 3 | ||||
-rw-r--r-- | src/threads/mutex.h | 3 | ||||
-rw-r--r-- | src/threads/sema.cpp | 3 | ||||
-rw-r--r-- | src/threads/sema.h | 3 | ||||
-rw-r--r-- | src/threads/thread.cpp | 3 | ||||
-rw-r--r-- | src/threads/thread.h | 3 |
6 files changed, 6 insertions, 12 deletions
diff --git a/src/threads/mutex.cpp b/src/threads/mutex.cpp index 159f887..744cd7b 100644 --- a/src/threads/mutex.cpp +++ b/src/threads/mutex.cpp @@ -12,8 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + along with this program. If not, see <https://www.gnu.org/licenses/>. */ #include <string> diff --git a/src/threads/mutex.h b/src/threads/mutex.h index 16f314d..1fc07d1 100644 --- a/src/threads/mutex.h +++ b/src/threads/mutex.h @@ -12,8 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + along with this program. If not, see <https://www.gnu.org/licenses/>. */ #ifndef _H_MUTEX diff --git a/src/threads/sema.cpp b/src/threads/sema.cpp index 8eb686b..1d4dc45 100644 --- a/src/threads/sema.cpp +++ b/src/threads/sema.cpp @@ -12,8 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + along with this program. If not, see <https://www.gnu.org/licenses/>. */ #include <cerrno> diff --git a/src/threads/sema.h b/src/threads/sema.h index 0cd04a5..7e5226b 100644 --- a/src/threads/sema.h +++ b/src/threads/sema.h @@ -12,8 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + along with this program. If not, see <https://www.gnu.org/licenses/>. */ #ifndef _H_SEMAPHORE diff --git a/src/threads/thread.cpp b/src/threads/thread.cpp index 30fa2fa..91e9a14 100644 --- a/src/threads/thread.cpp +++ b/src/threads/thread.cpp @@ -12,8 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + along with this program. If not, see <https://www.gnu.org/licenses/>. */ #include <signal.h> diff --git a/src/threads/thread.h b/src/threads/thread.h index f839a25..80e34ba 100644 --- a/src/threads/thread.h +++ b/src/threads/thread.h @@ -12,8 +12,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + along with this program. If not, see <https://www.gnu.org/licenses/>. */ #ifndef _H_THREAD |