]> git.pond.sub.org Git - empserver/blobdiff - src/lib/empthread/pthread.c
Update copyright notice
[empserver] / src / lib / empthread / pthread.c
index 755b19ce982a7b035c3e4a9ca45b46f063fd6adc..2d8b5092b7a06dc21b944691b00451674107a66a 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2014, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2020, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                Ken Stevens, Steve McClure, Markus Armbruster
  *
  *  Empire is free software: you can redistribute it and/or modify
@@ -58,7 +58,7 @@ struct empth_t {
     void *ud;                  /* user data */
     int wakeup;
     void (*ep)(void *);                /* entry point */
-    pthread_t id;              /* thread id */
+    pthread_t id;              /* thread ID */
 };
 
 struct empth_rwlock_t {
@@ -214,7 +214,7 @@ empth_create(void (*entry)(void *), int size, int flags,
        logerror("can not create thread: %s: %s", name, strerror(eno));
        goto bad;
     }
-    empth_status("new thread id is %ld", (long)t);
+    empth_status("new thread ID is %ld", (long)t);
     empth_yield();
     return ctx;