Skip to content

Commit 3cd609b

Browse files
tiranbrettcannon
andcommitted
Apply suggestions from code review
Co-authored-by: Brett Cannon <[email protected]>
1 parent d707f52 commit 3cd609b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Include/cpython/pthread_stubs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
/* Minimal pthread stubs for CPython
1313
*
14-
* The stubs implement a bare minimum pthread API for CPython.
14+
* The stubs implement the minimum pthread API for CPython.
1515
* - pthread_create() fails.
1616
* - pthread_exit() calls exit(0).
1717
* - pthread_key_*() functions implement minimal TSS without destructor.

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4275,7 +4275,7 @@ if test "$posix_threads" = "yes"; then
42754275
fi
42764276

42774277
AS_VAR_IF([posix_threads], [stub], [
4278-
AC_DEFINE([HAVE_PTHREAD_STUBS], [1], [Define if platform requires stubbed pthread])
4278+
AC_DEFINE([HAVE_PTHREAD_STUBS], [1], [Define if platform requires stubbed pthreads support])
42794279
])
42804280

42814281
# Check for enable-ipv6

pyconfig.h.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -938,7 +938,7 @@
938938
/* Define to 1 if you have the `pthread_sigmask' function. */
939939
#undef HAVE_PTHREAD_SIGMASK
940940

941-
/* Define if platform requires stubbed pthread */
941+
/* Define if platform requires stubbed pthread. */
942942
#undef HAVE_PTHREAD_STUBS
943943

944944
/* Define to 1 if you have the <pty.h> header file. */

0 commit comments

Comments
 (0)