summaryrefslogtreecommitdiffstats
path: root/generic/tclPosixStr.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix build on systems where ECANCELED == ELIBMAXdgp2011-08-031-2/+2
| | | FossilOrigin-Name: a26df401f3056d3f7788bdfbf634f56bf204178b
* Now that we're no longer using SCM based on RCS, the RCS Keyword linesdgp2011-03-021-2/+0
|\ | | | | | | | | cause more harm than good. Purged them (except in zlib files). FossilOrigin-Name: c64f310d38b977e7ae26a48bcf8bb8c50e453af7
| * Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-021-2/+0
| |\ | | | | | | | | | | | | more harm than good. Purged them. FossilOrigin-Name: 79367df0f0e01a96f037f893e889e7cb9b807847
| | * Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-011-2/+0
| | | | | | | | | | | | | | | more harm than good. Purged them. FossilOrigin-Name: 90b4acd7bdab65433169a232124967885c18d972
| | * [Bug 3019634] errno.h and tclWinPort.h have conflicting definitions.nijtmans2010-06-281-13/+13
| | | | | | | | | FossilOrigin-Name: b11a4bffc28a392362d3c4b58835a2d1032fc702
| | * Fix [Bug 2882561].dkf2009-10-211-3/+3
| | | | | | | | | FossilOrigin-Name: 16a2810e25c61fe405a5d8d5be34610f1e899a73
| * | [Bug 3019634] errno.h and tclWinPort.h have conflicting definitions.nijtmans2010-06-281-4/+4
| | | | | | | | | FossilOrigin-Name: 267afb1dbcc824b71b2740255761b6aa6601b13a
| * | [Bug 3019634] errno.h and tclWinPort.h have conflicting definitions.nijtmans2010-06-241-11/+11
| | | | | | | | | FossilOrigin-Name: 6890a4a02e634c3235897f16f7f7849ee7acca9d
| * | Fix [Bug 2882561].dkf2009-10-211-3/+3
| | | | | | | | | FossilOrigin-Name: dcf1be2659c6f75ae6ab29a9f8ee3e54499a3719
| * | Added support for SIGINFO. [Patch 1513655]dkf2009-03-151-1/+7
| | | | | | | | | FossilOrigin-Name: b60628dc1db4fb96a3c445e3f9c347eed56c0a2d
* | | [Bug 3019634] errno.h and tclWinPort.h have conflicting definitions.nijtmans2010-06-281-10/+34
| | | | | | | | | FossilOrigin-Name: 07b6683dea3c84a949f9af752b7bdd77ccfe601d
* | | Fix [Bug 2882561].dkf2009-10-211-3/+3
| | | | | | | | | FossilOrigin-Name: 2f58fcf25ac182ccbb5ce72fbb013a4337fe9ff8
* | | Added support for SIGINFO. [Patch 1513655]dkf2009-03-151-1/+7
| | | | | | | | | FossilOrigin-Name: 064364a7373e78601aa44de4fd8a9b33a2ca6454
* | | Style fixes (unfouling whitespace, sorting comments, removing useless casts, ↵dkf2009-01-091-6/+6
| | | | | | | | | | | | | | | etc.) FossilOrigin-Name: cd3c38f00ada216d7bc93560d3d70012c2918343
* | | Get rid of pre-C89-isms (esp. CONST vs const).dkf2008-04-271-5/+5
|/ / | | | | FossilOrigin-Name: 2d205c22fbe5def21ccd36bc6f7b2d3831f6122d
* | ANSIfydkf2005-11-071-9/+9
| | | | | | FossilOrigin-Name: 611d25e47cc0ca4006b861534bc098fb11548f02
* | Getting more systematic about styledkf2005-07-191-377/+381
| | | | | | FossilOrigin-Name: f9332bdd5d0a4fbe98144f883523a472b455e076
* | Patch 922727 committed. Implements three changes:dgp2004-04-061-2/+1
|/ | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclInt.h: Reworked the Tcl header files into a clean * unix/tclUnixPort.h: hierarchy where tcl.h < tclPort.h < tclInt.h * win/tclWinInt.h: and every C source file should #include * win/tclWinPort.h: at most one of those files to satisfy its declaration needs. tclWinInt.h and tclWinPort.h also better organized so that tclWinPort.h includes the Windows implementation of cross-platform declarations, while tclWinInt.h makes declarations that are available on Windows only. * generic/tclBinary.c (TCL_NO_MATH): Deleted the generic/tclMath.h * generic/tclMath.h (removed): header file. The internal Tcl * macosx/Makefile (PRIVATE_HEADERS): header, tclInt.h, has a * win/tcl.dsp: #include <math.h> directly, and file external to Tcl needing libm should do the same. * win/Makefile.in (WIN_OBJS): Deleted the win/tclWinMtherr.c file. * win/makefile.bc (TCLOBJS): It's a vestige from matherr() days * win/makefile.vc (TCLOBJS): gone by. * win/tcl.dsp: * win/tclWinMtherr.c (removed): FossilOrigin-Name: 2e5b18c85c944b46540edfdd6580648e32645e2b
* Better handling of EOVERFLOW on Win32 systems (as EFBIG or EINVAL.)dkf2002-05-271-3/+3
| | | FossilOrigin-Name: d935f8b1cd78e1e956e541343cdc8f964781ea5d
* Further changes to the TIP 72 patch to make it compile under VC++kennykb2002-02-151-1/+7
| | | FossilOrigin-Name: ffd6a7d7738c855d3f78a3b416a52091432c6b02
* * Updated APIs in generic/tclIOUtil.c and generic/tclPosixStr.cdgp2002-01-151-5/+5
| | | | | | according to the guidelines of TIP 27. Updated callers. [Patch 499196] FossilOrigin-Name: c606fbd2dad0ac555e745eb90871648eef4ce0db
* * generic/tclPosixStr.c (Tcl_SignalMsg): clarified #defines forhobbs2000-05-111-3/+3
| | | | | | Linux on Sparc to compile correctly. [Bug: 5364] FossilOrigin-Name: 23bdc0c3b56d79c848a6adea5bb4e6402d8253ae
* 1999-08-20 Jeff Hobbs <hobbs@scriptics.com>hobbs1999-08-211-2/+2
| | | | | | * generic/tclPosixStr.c: fixed typo [Bug: 2592] FossilOrigin-Name: bd454873887eb7d724b770e2ff241c6e2bd17429
* merged tcl 8.1 branch back into the main trunkstanton1999-04-161-3/+3
| | | FossilOrigin-Name: f3b32fb71c9011ac220779bd9dbe5617c9dc87d9
* * generic/tclPosixStr.c (Tcl_ErrnoId, Tcl_ErrnoMsg): When usingstanton1999-02-021-3/+3
| | | | | | | egcs, ENOTSUP and EOPNOTSUPP are the same, so now we handle that case. [Bug: 1137] FossilOrigin-Name: 53c251c547c609480f324a8903b5d3c000c2bf54
* Replaced SCCS strings, fixed binary filescore-8-0-3stanton1998-09-141-1/+1
| | | FossilOrigin-Name: 196f92fd17305db5fec1acd59f6926de11e01624
* Initial revisionrjohnson1998-03-261-0/+1174
FossilOrigin-Name: cacdd0f329872d67973970d74c6978730bc24baa