Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Fix 16bf24d70b: Installed Thread for Tcl 8.7 breaks availability of Thread in 8.6 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | core-8-branch |
Files: | files | file ages | folders |
SHA3-256: |
52902124b815667ad1b45120be7cd3dd |
User & Date: | jan.nijtmans 2022-11-18 19:43:09.076 |
Context
2022-11-19
| ||
16:07 | Revert [52a52a65f0]. There appears to be a problem with the mp_pack function on Windows check-in: 423c39ec20 user: jan.nijtmans tags: core-8-branch | |
2022-11-18
| ||
20:26 | Backout [52a52a65f0], let's see if this fixes the Windows crash Closed-Leaf check-in: 696ac6a94a user: jan.nijtmans tags: backout-52a52a65f0 | |
19:54 | merge-mark check-in: cf8afecf29 user: jan.nijtmans tags: trunk, main | |
19:43 | Fix 16bf24d70b: Installed Thread for Tcl ... check-in: 52902124b8 user: jan.nijtmans tags: core-8-branch | |
19:17 | Fix [bec4219123]: test utf-4.12 fails in custom builds check-in: 1c69d40d2f user: jan.nijtmans tags: core-8-branch | |
Changes
Changes to generic/tcl.h.
︙ | ︙ | |||
2401 2402 2403 2404 2405 2406 2407 | #if defined(_WIN32) TCL_NORETURN void Tcl_ConsolePanic(const char *format, ...); #else # define Tcl_ConsolePanic ((Tcl_PanicProc *)NULL) #endif #ifdef USE_TCL_STUBS | < < < < < < < < < < < < < | 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 | #if defined(_WIN32) TCL_NORETURN void Tcl_ConsolePanic(const char *format, ...); #else # define Tcl_ConsolePanic ((Tcl_PanicProc *)NULL) #endif #ifdef USE_TCL_STUBS # define Tcl_InitStubs(interp, version, exact) \ (Tcl_InitStubs)(interp, version, \ (exact)|(TCL_MAJOR_VERSION<<8)|(TCL_MINOR_VERSION<<16), \ TCL_STUB_MAGIC) #else # define Tcl_InitStubs(interp, version, exact) \ Tcl_PkgInitStubsCheck(interp, version, \ (exact)|(TCL_MAJOR_VERSION<<8)|(TCL_MINOR_VERSION<<16)) #endif /* * Public functions that are not accessible via the stubs table. * Tcl_GetMemoryInfo is needed for AOLserver. [Bug 1868171] */ |
︙ | ︙ |