]> Kevux Git Server - fll/commitdiff
Cleanup: Fix typo of 'exit' in documentation comments.
authorKevin Day <Kevin@kevux.org>
Sun, 3 Aug 2025 02:19:23 +0000 (21:19 -0500)
committerKevin Day <Kevin@kevux.org>
Sun, 10 Aug 2025 22:50:01 +0000 (17:50 -0500)
level_0/f_thread/c/thread.h

index bb007e743f65ee495c4eb088f8bdd9146b55c449..a3b4a01e7d806161b0cb6979d638f49ca7caa121 100644 (file)
@@ -1332,7 +1332,7 @@ extern "C" {
  * @param id
  *   The ID of the thread to wait for.
  * @param result
- *   (optional) The data returned by the terminated thread (usually the exist status).
+ *   (optional) The data returned by the terminated thread (usually the exit status).
  *   If the terminated thread is cancelled, then this holds PTHREAD_CANCELED.
  *
  *   Set to NULL to not use.
@@ -1361,7 +1361,7 @@ extern "C" {
  * @param id
  *   The ID of the thread to wait for.
  * @param result
- *   (optional) The data returned by the terminated thread (usually the exist status).
+ *   (optional) The data returned by the terminated thread (usually the exit status).
  *   If the terminated thread is cancelled, then this holds PTHREAD_CANCELED.
  *
  *   Set to NULL to not use.
@@ -1395,7 +1395,7 @@ extern "C" {
  *   The amount of time to wait for.
  *   The wait time is relative to the clock, so consider calling clock_gettime() or gettimeofday() and then adding the amount of wait time.
  * @param result
- *   (optional) The data returned by the terminated thread (usually the exist status).
+ *   (optional) The data returned by the terminated thread (usually the exit status).
  *   If the terminated thread is cancelled, then this holds PTHREAD_CANCELED.
  *
  *   Set to NULL to not use.