summaryrefslogtreecommitdiff
path: root/win32/select.c
Commit message (Collapse)AuthorAgeFilesLines
* Happy New YearXinchen Hui2013-01-011-1/+1
|
* - Year++Felipe Pena2012-01-011-1/+1
|
* - Year++Felipe Pena2011-01-011-1/+1
|
* sed -i "s#1997-2009#1997-2010#g" **/*.c **/*.h **/*.phpSebastian Bergmann2010-01-031-1/+1
|
* MFH: Bump copyright year, 3 of 3.Sebastian Bergmann2008-12-311-1/+1
|
* MFH: Bump copyright year, 2 of 2.Sebastian Bergmann2007-12-311-1/+1
|
* WIN64 supportDmitry Stogov2007-04-161-2/+2
|
* MFH: Bump year.Sebastian Bergmann2007-01-011-1/+1
|
* - Warning fixes by StephMarcus Boerger2006-02-261-6/+6
|
* bump year and license versionfoobar2006-01-011-3/+3
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* this should be an intWez Furlong2003-12-191-1/+1
|
* Removed unused variable.Ilia Alshanetsky2003-12-151-1/+1
|
* re-implement the win32 select code.Wez Furlong2003-11-271-125/+120
| | | | | | | | | | The old code implicitly set any sockets into non-blocking mode, and since there is no way to probe a socket to determine its blocking status using the win32 API, this was a real pain in the ass. The New implementation will hand off any sockets to winsock and use the WaitForObject API in win32 to probe other types of handle.
* emalloc -> safe_emallocIlia Alshanetsky2003-08-121-1/+1
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Tidy up stupid signed/unsigned issues with win32 by introducing a ↵Wez Furlong2003-02-281-2/+4
| | | | php_socket_t typedef.
* Update win32 build.Wez Furlong2003-02-271-0/+2
| | | | | Since msvc sucks, I had to rename ext/standard/streams.c to ext/standed/streamsfuncs.c
* Move streams specific stuff from ext/standard/file.c -> ext/standard/streams.cWez Furlong2003-02-271-0/+177
Move win32 select implementation into win32/. Will update win32 build in a moment.