diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-03-27 13:01:34 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2017-03-27 13:01:34 (GMT) |
commit | 0d54bf371184c2ddc80a0640d56446078478cbda (patch) | |
tree | ee91010d0c9ce6d8cb203bca9a0318f8e97275ca /generic/tcl.h | |
parent | 4703c1399dcfcaf70b53f268e196b9a8fd597675 (diff) | |
download | tcl-0d54bf371184c2ddc80a0640d56446078478cbda.zip tcl-0d54bf371184c2ddc80a0640d56446078478cbda.tar.gz tcl-0d54bf371184c2ddc80a0640d56446078478cbda.tar.bz2 |
Improve comment on TCL_WIDE_INT_IS_LONG, making it less misleading.
In tclThreadTest.c, allow mainThreadId to be >32 bits.
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 64c7d14..759f824 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -372,8 +372,8 @@ typedef long LONG; * we have one, we can have the other.) * * Also defines the following macros: - * TCL_WIDE_INT_IS_LONG - if wide ints are really longs (i.e. we're on a real - * 64-bit system.) + * TCL_WIDE_INT_IS_LONG - if wide ints are really longs (i.e. we're on a + * LP64 system such as modern Solaris or Linux ... not including Win64) * Tcl_WideAsLong - forgetful converter from wideInt to long. * Tcl_LongAsWide - sign-extending converter from long to wideInt. * Tcl_WideAsDouble - converter from wideInt to double. |