summaryrefslogtreecommitdiffstats
path: root/src/threads
diff options
context:
space:
mode:
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