summaryrefslogtreecommitdiffstats
path: root/generic/tclTimer.c
Commit message (Collapse)AuthorAgeFilesLines
* Tcl_GetIndexFromObjStruct -> Tcl_GetIndexFromObj. Don't use braces around ↵jan.nijtmans2022-04-261-2/+2
| | | | (Tcl_GetBytesFromObj)
* Merge 9.0jan.nijtmans2022-04-081-3/+3
|
* Merge 8.7jan.nijtmans2022-01-171-8/+8
|\
| * Merge 8.6jan.nijtmans2022-01-171-8/+8
| |\
| | * Tcl_NewObj() -> TclNewObj()jan.nijtmans2022-01-171-8/+10
| | |
| | * Eliminate many "register" keywords (which do nothing with modern compilers)jan.nijtmans2020-09-141-6/+6
| | | | | | | | | Eliminate many unnecessary type-casts to (unsigned)
* | | Merge 8.7, resolve conflictsjan.nijtmans2021-01-111-2/+2
|\ \ \ | |/ /
* | | 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-10-021-1/+1
|\ \ \ | |/ /
| * | Fix -Wshadow warnings, when compiling with a C++ compilerjan.nijtmans2020-10-021-1/+1
| | |
* | | Merge 8.7jan.nijtmans2020-09-171-2/+4
|\ \ \ | |/ /
| * | Eliminate many usages of Tcl_NewObj (-> TclNewObj) and Tcl_NewIntObj (-> ↵jan.nijtmans2020-09-171-2/+4
| | | | | | | | | | | | TclNewIntObj or Tcl_NewWideIntObj)
* | | merge 8.7dgp2020-03-171-2/+0
|\ \ \ | |/ /
| * | TIP 569 - remove lint commentsdgp2020-03-171-2/+0
| | |
* | | merge 8.7dgp2020-03-091-12/+6
|\ \ \ | |/ /
| * | Moredgp2020-03-091-12/+6
| | |
* | | Merge 8.7jan.nijtmans2020-02-281-16/+22
|\ \ \ | |/ /
| * | Merge 8.7jan.nijtmans2019-12-081-1/+1
| |\ \
| * \ \ Mark more function paramaters as unused. Now Tcl compiles fully (on UNIX and ↵jan.nijtmans2019-09-051-5/+11
| |\ \ \ | | | | | | | | | | | | | | | Windows) without -Wunused-parameters warnings
| * \ \ \ Merge tip-548jan.nijtmans2019-08-151-4/+4
| |\ \ \ \ | | |/ / /
| * | | | Merge 8.7, and continue implementation. Almost donejan.nijtmans2019-07-101-12/+12
| | | | |
* | | | | merge 8.7dgp2019-12-061-1/+1
|\ \ \ \ \ | | |_|/ / | |/| | |
| * | | | Merge 8.6jan.nijtmans2019-12-061-1/+1
| |\ \ \ \ | | |_|/ / | |/| | / | | | |/ | | |/|
| | * | Unnecessary double ;; in tclTimer.c. Update compat/zlib to exactly the same ↵jan.nijtmans2019-12-061-1/+1
| | | | | | | | | | | | | | | | content as in the core-8-branch branch.
* | | | Merge 8.7jan.nijtmans2019-08-151-5/+5
|\ \ \ \ | |/ / /
| * | | Eliminate "register" keyword _everywhere_ in Tcl. This keyword is deprecated ↵jan.nijtmans2019-07-171-5/+5
| | |/ | |/| | | | | | | in C++ (removed in C++17, even), and essentially does nothing with most modern compilers.
* | | merge 8.7dgp2019-05-031-13/+13
|\ \ \ | |/ /
| * | merge 8.6dgp2019-05-031-13/+13
| |\ \ | | |/
| | * Minor code style cleanup.dkf2019-04-231-7/+13
| | |
| * | More use of (efficient) TclHasIntRep() macro. Also eliminate many (size_t) ↵jan.nijtmans2019-02-271-1/+1
| | | | | | | | | | | | and (unsigned) type-casts, which don't make sense any more.
* | | Another (big) round of int -> size_t enhancements. So Tcl can handle string ↵jan.nijtmans2019-02-011-1/+1
|\ \ \ | |/ / | | | | | | >2GiB in more places.
* | | Merge 8.7jan.nijtmans2018-12-111-3/+3
|\ \ \ | |/ / | | | | | | 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.
* | | Implement TIP 445dgp2018-11-131-7/+4
|\ \ \ | |/ /
| * | merge 8.7dgp2018-02-061-21/+11
| |\ \
| * \ \ merge trunkdgp2017-04-111-3/+9
| |\ \ \
| * \ \ \ merge trunkdgp2016-07-091-2/+2
| |\ \ \ \
| * \ \ \ \ merge trunkdgp2016-07-021-1/+1
| |\ \ \ \ \
| * | | | | | Remove direct access to Tcl_Obj typePtr field that does nothing of anydgp2016-03-301-10/+4
| | |_|_|_|/ | |/| | | | | | | | | | obvious benefit.
* | | | | | Change ckalloc and friends to Tcl_Alloc and friends. Add two defines, ↵jan.nijtmans2018-09-011-15/+15
| |_|_|_|/ |/| | | | | | | | | | | | | | TCL_IO_FAILURE and TCL_NO_LENGTH (experimental, still open to be renamed following discussion)
* | | | | Finally, get rid of tclWideIntType completelyjan.nijtmans2017-11-011-1/+0
| | | | |
* | | | | more progress in code simplificationsjan.nijtmans2017-10-301-2/+0
| | | | |
* | | | | Change (internal) TclFormatInt() signature, so it can handle WideInt's ↵jan.nijtmans2017-10-301-21/+11
| |_|_|/ |/| | | | | | | | | | | directly. Ongoing simplifications ...
* | | | More minor style fixes.dkf2017-04-101-3/+9
| |_|/ |/| |
* | | Micro-optimization: Use TclGetStringFromObj in stead of Tcl_GetStringFromObj ↵jan.nijtmans2016-07-081-2/+2
| |/ |/| | | | | in many places where possible.
* | Simplify use of "struct" keyword in many places.jan.nijtmans2016-06-301-1/+1
|/
* Implement Tcl_NewBooleanObj, Tcl_DbNewBooleanObj and Tcl_SetBooleanObj as ↵jan.nijtmans2013-04-231-1/+1
|\ | | | | | | | | | | macros using Tcl_NewIntObj, Tcl_DbNewLongObj and Tcl_SetIntObj. Starting with Tcl 8.5, this is exactly the same, it only eliminates code duplication. Eliminate use of NO_WIDE_TYPE everywhere: It's exactly the same as TCL_WIDE_INT_IS_LONG
* | more result generation conversiondkf2012-08-031-4/+5
| |
* | Factor out constant that must be the same in multiple places. Prompted by adkf2012-05-251-6/+3
| | | | | | conversation with Alexandre Ferrieux.
* | Reduce use of Tcl_AppendElement, which is not (and can't be) a Tcl_Obj-aware ↵dkf2011-05-091-3/+5
| | | | | | | | API.