summaryrefslogtreecommitdiffstats
path: root/unix/tclSelectNotfy.c
Commit message (Collapse)AuthorAgeFilesLines
* Eliminate __stdcall usage: cygwin32 is no longer supportedjan.nijtmans2025-09-161-19/+16
|
* Fix some -Wconversion warningsjan.nijtmans2025-04-011-7/+10
|\
| * Fix some -Wconversion warningscore-conversion-warningjan.nijtmans2025-03-301-4/+7
|/
* Backout the "dullest commit ever" (not my words ....). It breaks the build. jan.nijtmans2024-05-141-3/+3
| | | 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-3/+3
| | | This is the dullest commit ever. Sorry.
* Few more spacing/formatting tweaksjan.nijtmans2024-03-201-1/+1
|\
| * (backport) more spacing/formatting tweaks. For now, macosx/unix/win only.jan.nijtmans2024-03-201-5/+5
| |
* | more spacing/formatting tweaksdkf2024-03-191-2/+2
| |
* | More -Wconversion warning fixesjan.nijtmans2023-03-081-5/+5
| |
* | Merge 8.7jan.nijtmans2022-11-241-1/+4
|\ \ | |/
| * Fix gcc warning, seen on Ubuntu with select notifierjan.nijtmans2022-11-241-1/+4
| |
* | Some more (internal) ClientData -> void * changesjan.nijtmans2022-09-021-2/+2
| |
* | Merge 8.7jan.nijtmans2021-08-231-2/+10
|\ \ | |/
| * Make everything compile warning-free when TCL_THREADS=0jan.nijtmans2021-08-231-2/+10
| |
* | Merge 8.7jan.nijtmans2021-08-201-6/+131
|\ \ | |/
| * Fix use of TCL_THREADS macro: In Tcl 8.7, this is always defined, but can ↵jan.nijtmans2021-08-181-1/+1
| | | | | | | | have value '1' or '0'
| * tip#511 proposed implementationjan.nijtmans2021-08-171-6/+131
| |
* | Merge 8.7jan.nijtmans2021-04-081-1/+1
|\ \ | |/
| * Fix compiler warning when using select notifierjan.nijtmans2021-04-081-1/+1
| |
* | Clean up the notifier code to not spread the hooks quite so widelydkf2021-04-031-402/+375
|\ \ | |/
| * Refactoring, ahoydkf2021-03-301-398/+369
| |
| * Start of doing a clean up of the notifier code.dkf2021-03-211-7/+9
| | | | | | | | | | This originated as trying to stop macOS builds from doing silly warnings during a static build, but I noticed that there were common patterns that belong in generic code instead of being repeated in each of the platform-specific pieces.
* | 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.6jan.nijtmans2020-03-311-14/+15
| |
* | Internal API simplifications: Don't use types like HINSTANCE/HMODULE any ↵jan.nijtmans2020-03-311-14/+15
| | | | | | | | more, just void*. Has effect only on Win32 and Cygwin.
* | merge 8.7dgp2020-03-091-3/+2
|\ \ | |/
| * TCL_UNUSED in the unix sources.dgp2020-03-091-3/+2
| |
* | Merge 8.7jan.nijtmans2020-02-281-21/+28
|\ \ | |/
| * Merge 8.7jan.nijtmans2020-01-071-0/+3
| |\
| * \ Merge 8.7jan.nijtmans2019-09-191-3/+3
| |\ \
| * \ \ Mark more function paramaters as unused. Now Tcl compiles fully (on UNIX and ↵jan.nijtmans2019-09-051-1/+2
| |\ \ \ | | | | | | | | | | | | | | | Windows) without -Wunused-parameters warnings
| * \ \ \ Merge 8.7. Continue implementation for win32jan.nijtmans2019-08-021-0/+6
| |\ \ \ \ | | |/ / /
| * | | | Merge 8.7, and continue implementation. Almost donejan.nijtmans2019-07-101-19/+19
| |\ \ \ \ | | |/ / /
| * | | | Experiment: compile Tcl with C++ compiler. WIPjan.nijtmans2019-07-041-1/+1
| |/ / /
* | | | Merge 8.7jan.nijtmans2019-12-241-0/+3
|\ \ \ \ | | |_|/ | |/| |
| * | | More progress in making clang build on Cygwin warning-freejan.nijtmans2019-12-241-0/+3
| | |/ | |/|
* | | Merge 8.7jan.nijtmans2019-09-191-3/+3
|\ \ \ | |/ /
| * | Merge 8.6. Missing cast in Tcl_WinTCharToUtf() macro (when compiling without ↵jan.nijtmans2019-09-191-3/+3
| |/ | | | | | | -DUNICODE)
* | Merge 8.7jan.nijtmans2018-10-221-64/+61
|\ \ | |/
| * Make new notifier code match Engineering Manual guidelines betterdkf2018-10-221-64/+61
| |
* | Change ckalloc and friends to Tcl_Alloc and friends. Add two defines, ↵jan.nijtmans2018-09-011-3/+3
|/ | | | TCL_IO_FAILURE and TCL_NO_LENGTH (experimental, still open to be renamed following discussion)
* unbreak the builddgp2018-05-231-1/+1
|
* Simplify usage of TCL_THREAD, along the lines of ↵jan.nijtmans2018-05-221-11/+11
| | | | [eeddb0693a950be980a66de3811630a00c7bab54|eeddb0693a]. Suggested by DKF
* Fix build with TCL_THREADS=0 on Linux/other without epoll or kqueu support. ↵jan.nijtmans2018-05-221-1/+1
| | | | In that case, fallback to select notifier
* TIP #491 implementation: Threading Support: phasing out non-threaded buildsjan.nijtmans2018-05-171-12/+12
|
* Merge trunkjan.nijtmans2017-03-241-2/+2
|
* Re-base to trunk, and get latest code from here: ↵jan.nijtmans2017-03-081-0/+1117
[https://github.com/lalbornoz/tcl/tree/tip458]. Untested.