summaryrefslogtreecommitdiff
path: root/TSRM
Commit message (Collapse)AuthorAgeFilesLines
* Fixed bug #40231 (file_exists incorrectly reports false)Dmitry Stogov2007-01-261-4/+12
|
* Fixed wrong realpath() result for unexistent files on win32Dmitry Stogov2007-01-231-0/+5
|
* Fixed bug #39367 (clearstatcache() doesn't clear realpath cache)Dmitry Stogov2007-01-222-12/+40
| | | | | Fixed bug #40092 (chroot() doesn't clear realpath cache)
* CSIlia Alshanetsky2007-01-201-9/+10
|
* MFHAntony Dovgal2007-01-191-4/+4
|
* MFH: free temp cwd_state struct on errorAntony Dovgal2007-01-161-0/+16
|
* MFH: Bump year.Sebastian Bergmann2007-01-018-8/+8
|
* Removed dependency from SHELL32.DLLDmitry Stogov2006-12-212-7/+10
|
* Added commentsDmitry Stogov2006-11-141-3/+6
|
* Use symbolic namesDmitry Stogov2006-11-132-20/+24
|
* Fixed wrong realpath() result in case of unexistent pathDmitry Stogov2006-11-101-7/+10
|
* Fixed wrong realpath() result in case of unexistent pathDmitry Stogov2006-11-101-1/+1
|
* stat() is reimplemented using using GetFileAttributesEx().Dmitry Stogov2006-11-102-4/+92
| | | | | The new implementation is faster then implementation in MS VC CRT, but it doesn't support Windows 95.
* VCWD_REALPATH() is improved to use realpath cache without VIRTUAL_DIRDmitry Stogov2006-11-102-27/+28
|
* opendir() is reimplemented using GetFistFile/GetNextFile those are faster ↵Dmitry Stogov2006-11-101-5/+8
| | | | then _findfirst/_findnext
* MFH: fix #39060 (virtual_file_ex() is broken on *BSD)Antony Dovgal2006-10-061-1/+1
|
* Fixed bug #38989 (Absolute path with slash at beginning doesn't work on win)Dmitry Stogov2006-10-051-4/+11
|
* MFHAntony Dovgal2006-10-042-2/+2
|
* Added handling for virtual_file_ex() failures.Ilia Alshanetsky2006-09-281-13/+39
| | | | | # Patch by Nuno
* Fixed bug #38579 (include_once() may include the same file twice)Dmitry Stogov2006-09-201-132/+87
|
* Fixed VIRTUAL_DIR inconsistencyDmitry Stogov2006-09-041-0/+6
|
* MFH: fix separate TSRM buildAntony Dovgal2006-08-221-1/+0
|
* MFHAntony Dovgal2006-08-051-1/+3
|
* revert previous patchAntony Dovgal2006-08-041-3/+1
|
* MFH: fix #38276 (file_exists() works incorrectly with long filenames on Windows)Antony Dovgal2006-08-031-1/+3
|
* MFH: - Fixed bug #36909 (ld: Undefined symbols: _lchown)foobar2006-04-101-0/+4
|
* Fixed bug #35988 (Unknown persistent list entry type in module shutdown)Dmitry Stogov2006-03-142-0/+49
|
* - Added lchown() and lchgrp() to change user/group ownership of symlinks.Derick Rethans2006-03-052-4/+14
|
* MFH: move function definition from .h to .c, where it should beAntony Dovgal2006-02-082-16/+21
|
* init variablesAntony Dovgal2006-02-061-2/+2
|
* Fixed bug #36016 (realpath cache memleaks)Dmitry Stogov2006-01-162-7/+1
|
* Fixed bug #36016 (realpath cache memleaks)Dmitry Stogov2006-01-161-17/+6
|
* - Update to 2006Andi Gutmans2006-01-043-3/+3
|
* bump year and license versionfoobar2006-01-016-18/+18
|
* MFH:fix mkdir() function properly (patch by nlopess)foobar2005-12-231-2/+3
|
* MFH: Back out a portion of the previous patch which broke win32 file functionsEdin Kadribasic2005-12-221-1/+1
|
* Fixed bug #31347 (is_dir and is_file (incorrectly) return true for any stringIlia Alshanetsky2005-12-202-3/+8
| | | | | greater then 255 characters).
* MFH: allocate_new_resource() handles the malloc() for us. Don't leak by ↵Sara Golemon2005-08-291-1/+0
| | | | mallocing twice.
* Fix compile failure with GCC 4.0.xfoobar2005-08-051-1/+1
|
* Bump up yearfoobar2005-08-036-6/+6
|
* Netware pthreads support is good enough. So removing all these fixes of old ↵Anantha Kesari H Y2005-07-161-18/+0
| | | | | | | times. -- Kamesh
* Reverting the DEFAULT_SLASH to / as it breaks the FreeBSD derived function ↵Anantha Kesari H Y2005-07-071-1/+1
| | | | | | | of NetWare LibC like glob. -- Kamesh
* gwtcwd of NetWare LibC gives a cwd with a volume information.Anantha Kesari H Y2005-07-071-0/+17
| | | | | | | | So using getcwdpath which gives with volume information. getcwdpath gives with directory seperator as \ which is against our DEFAULT_SLASH of /. So finding and replacing \ with / -- Kamesh
* COPY_WHEN_ABSOLUTE is not needed for NetWare.Anantha Kesari H Y2005-07-071-2/+0
| | | | | -- Kamesh
* - Unify the "configure --help" textsfoobar2005-05-291-1/+1
|
* Unterminated paren group in BETHREADS definition of tsrm_tls_set() macroSara Golemon2005-05-161-1/+1
|
* consolidate the various tls get/set calls for the different platforms intoWez Furlong2005-04-281-58/+23
| | | | | a single macro, at Andi's request.
* Add three new TSRM api functions:Wez Furlong2005-04-272-0/+96
| | | | | | | | | | TSRM_API void *tsrm_new_interpreter_context(void); TSRM_API void *tsrm_set_interpreter_context(void *new_ctx); TSRM_API void tsrm_free_interpreter_context(void *context); These can be used, with a suitable SAPI, to host multiple interpreters on the same thread.
* check should be on host_alias rather than on target_alias, but somehow works ↵Anantha Kesari H Y2005-04-271-1/+1
| | | | on configure generated using autoconf 2.57.
* MergeZeev Suraski2005-03-201-2/+2
|