]> git.pond.sub.org Git - empserver/blobdiff - src/lib/empthread/pthread.c
Spell ID and UID consistently all-caps
[empserver] / src / lib / empthread / pthread.c
index 392897f3df7f3249883e82dc1ff8150708bf6d60..9af22598d8db8f0b233d201de2e274fa39647d79 100644 (file)
@@ -58,7 +58,7 @@ struct empth_t {
     void *ud;                  /* user data */
     int wakeup;
     void (*ep)(void *);                /* entry point */
     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 {
 };
 
 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;
     }
        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;
 
     empth_yield();
     return ctx;