summaryrefslogtreecommitdiffstats
path: root/src/threads
diff options
context:
space:
mode:
authorLuboš Doležel <lubos@dolezel.info>2016-10-05 20:14:06 +0200
committerGitHub <noreply@github.com>2016-10-05 20:14:06 +0200
commit4e7ff99f1572f92595d7cedd883582040b1f4cc8 (patch)
tree5f04d00fa0086361deda1a2f43d41586500e1278 /src/threads
parentb7885efb5a7ad7b1dd024715a08b6d3a1bd6088e (diff)
parent1f6d76bb12cf026dff26a0588a75c2dfdaa8cde3 (diff)
downloadtwinkle-4e7ff99f1572f92595d7cedd883582040b1f4cc8.tar
twinkle-4e7ff99f1572f92595d7cedd883582040b1f4cc8.tar.gz
twinkle-4e7ff99f1572f92595d7cedd883582040b1f4cc8.tar.lz
twinkle-4e7ff99f1572f92595d7cedd883582040b1f4cc8.tar.xz
twinkle-4e7ff99f1572f92595d7cedd883582040b1f4cc8.zip
Merge pull request #76 from fbriere/issue/25-fsf-old-address
Replace (old) FSF postal address with URL in header files
Diffstat (limited to 'src/threads')
-rw-r--r--src/threads/mutex.cpp3
-rw-r--r--src/threads/mutex.h3
-rw-r--r--src/threads/sema.cpp3
-rw-r--r--src/threads/sema.h3
-rw-r--r--src/threads/thread.cpp3
-rw-r--r--src/threads/thread.h3
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