summaryrefslogtreecommitdiffstats
path: root/generic/tclThreadAlloc.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix ungrammatical doubling of words in commentsminordkf2024-09-211-1/+1
|
* Merge 8.7. Random indent fixesjan.nijtmans2024-06-271-1/+1
|\
* | Backout the "dullest commit ever" (not my words ....). It breaks the build. jan.nijtmans2024-05-141-4/+4
| | | | | | JN: Many of those changes are actually good, but there are too many changes to be able to search for a bug somewhere. Feel free to re-apply, after assuring it's really only whitespace changes. (my advise: do that after 9.0b2)
* | Clean up a lot of small whitespace issues dkf2024-05-131-4/+4
| | | | | | This is the dullest commit ever. Sorry.
* | Correct spelling errors in comments and documentation, but also a ↵pooryorick2023-04-121-1/+1
|\ \ | |/ | | | | non-comment corrections in history.tcl and tcltest.test.
| * Correct spelling errors in comments and documentation, but also a non-comment pooryorick2023-04-121-1/+1
| | | | | | corrections in history.tcl and tcltest.test.
* | Merge 8.7jan.nijtmans2023-03-301-2/+2
|\ \ | |/
| * Merge 8.6jan.nijtmans2023-03-301-2/+2
| |\
| | * Fix [0cb3554903]: macOS 13 SDK deprecates sprintf(). But better not use it ↵jan.nijtmans2023-03-301-2/+2
| | | | | | | | | | | | on other platforms either.
| | * Get rid of "register" keyword, forbidden in c++20.jan.nijtmans2020-11-261-11/+11
| | | | | | | | | Fix some more warnings, discovered in c20/c++20 mode
* | | Merge 8.7jan.nijtmans2021-03-161-1/+1
|\ \ \ | |/ /
| * | Fix gcc warningsjan.nijtmans2021-03-161-1/+1
| | |
* | | Merge 8.7jan.nijtmans2021-02-261-12/+13
|\ \ \ | |/ /
| * | Further internal variable upgrade from long -> size_tjan.nijtmans2021-02-261-19/+20
| | |
* | | Merge 8.7jan.nijtmans2021-02-261-24/+22
|\ \ \ | |/ /
| * | Increase some (internal) variables from int/long to long/size_t. On the way ↵jan.nijtmans2021-02-261-29/+27
| | | | | | | | | | | | to allow bigger blocks in the threaded allocator
* | | Merge 8.7jan.nijtmans2020-12-081-1/+1
|\ \ \ | |/ /
| * | Add -finput-charset=UTF-8 and -fextended-identifiers to gcc (and clang). All ↵jan.nijtmans2020-12-081-1/+1
| | | | | | | | | | | | C sources can now use UTF-8, as far as gcc/clang/msvc support it. Not used yet
* | | Merge 8.7jan.nijtmans2020-03-311-1/+1
|\ \ \ | |/ /
| * | Fix a few warning-message in --enable-symbols-mem modejan.nijtmans2020-03-311-1/+1
| | |
* | | merge 8.7dgp2020-03-171-1/+1
|\ \ \ | |/ /
| * | TIP 569 - remove lint commentsdgp2020-03-171-1/+1
| | |
* | | Merge 8.7jan.nijtmans2020-03-091-3/+1
|\ \ \ | |/ /
| * | More TCL_UNUSEDdgp2020-03-091-3/+1
| | |
* | | Merge 8.7jan.nijtmans2020-03-071-4/+4
|\ \ \ | |/ /
| * | Change (interal) function signature of TclpAlloc/TclpRealloc/TclpFree, using ↵jan.nijtmans2020-03-071-10/+10
| | | | | | | | | | | | (void *) in stead of (char *)
* | | Merge 8.7jan.nijtmans2020-02-281-16/+18
|\ \ \ | |/ /
| * | Merge 8.7jan.nijtmans2019-09-141-1/+1
| |\ \
| * \ \ Mark more function paramaters as unused. Now Tcl compiles fully (on UNIX and ↵jan.nijtmans2019-09-051-0/+2
| |\ \ \ | | | | | | | | | | | | | | | Windows) without -Wunused-parameters warnings
| * \ \ \ Merge tip-548jan.nijtmans2019-08-151-11/+11
| |\ \ \ \ | | |/ / /
| * | | | Experiment: compile Tcl with C++ compiler. WIPjan.nijtmans2019-07-041-14/+14
| | | | |
* | | | | Merge 8.7jan.nijtmans2019-09-141-1/+1
|\ \ \ \ \ | | |_|/ / | |/| | |
| * | | | Merge 8.7jan.nijtmans2019-08-261-11/+11
| |\ \ \ \ | | | |/ / | | |/| |
| * | | | Merge 8.7jan.nijtmans2018-12-081-1/+1
| | |/ / | |/| | | | | | Bring back Tcl_InitSubsystems to what Tcl_InitSubsystems was: without additional parameters or additional functionality
* | | | Merge 8.7jan.nijtmans2019-08-151-11/+11
|\ \ \ \ | | |/ / | |/| |
| * | | Eliminate "register" keyword _everywhere_ in Tcl. This keyword is deprecated ↵jan.nijtmans2019-07-171-11/+11
| |/ / | | | | | | | | | in C++ (removed in C++17, even), and essentially does nothing with most modern compilers.
* | | Merge 8.7jan.nijtmans2019-06-071-1/+1
|\ \ \ | |/ /
* | | Minor code cleanup: More use of size_t where possible, and elimination of ↵jan.nijtmans2019-03-291-26/+0
| | | | | | | | | | | | unneeded type-casts.
* | | Eliminate many (mostly harmless) MSVC warning messages. Tcl 9 compiles ↵jan.nijtmans2019-03-131-1/+1
| | | | | | | | | | | | warning-free now on MSVC.
* | | Merge 8.7jan.nijtmans2018-12-111-12/+12
|\ \ \ | |/ / | | | | | | In test-cases, don't load Tcltest package if it isn't actually used. Another round of size_t related improvements. Nothing functional. Also improve some comments.
* | | merge trunkjan.nijtmans2018-05-231-1/+1
|\ \ \
| * \ \ merge 8.7jan.nijtmans2018-05-221-1/+1
| |\ \ \ | | |/ /
| | * | Simplify usage of TCL_THREAD, along the lines of ↵jan.nijtmans2018-05-221-1/+1
| | | | | | | | | | | | | | | | [eeddb0693a950be980a66de3811630a00c7bab54|eeddb0693a]. Suggested by DKF
| * | | Merge 8.7, but keep TCL_THREADS undefined in tcl.h (since that's no longer ↵jan.nijtmans2018-05-171-1/+1
| |\ \ \ | | |/ / | | | | | | | | necessary)
| | * | TIP #491 implementation: Threading Support: phasing out non-threaded buildsjan.nijtmans2018-05-171-1/+1
| | | |
* | | | merge trunkjan.nijtmans2017-12-011-1/+1
|\ \ \ \ | |/ / /
| * | | merge core-8-branch. Various cleanup: unused structure names, unused ↵jan.nijtmans2017-12-011-1/+1
| |/ / | | | | | | | | | #defines. Change some "epoch"-related fields from int to size_t. Nothing functional.
* | | re-base "novem-more-memory-API" to trunk. TIP not submitted yet, but upcoming.jan.nijtmans2017-11-161-12/+12
|\ \ \ | |/ / |/| |
| * | merge novemjan.nijtmans2017-05-041-10/+35
| |\ \
| | * \ merge trunkjan.nijtmans2017-01-161-10/+35
| | |\ \ | |_|/ / |/| | |