summaryrefslogtreecommitdiff
path: root/ext/standard/microtime.c
Commit message (Collapse)AuthorAgeFilesLines
* Use new Zend API.Sascha Schumann1999-09-241-4/+4
|
* Fix typo.Sascha Schumann1999-09-211-1/+1
| | | | | catched by: ssb
* On at least Win32, gettimeofday() returns values in tv_usec which exceedSascha Schumann1999-09-211-0/+1
| | | | | | | | 1,000,000. For portability reasons we set the integer part of our result to 0. This is equivalent to using tv_usec % 1000000.
* License updateZeev Suraski1999-07-161-20/+9
|
* * fixed some #if/#ifdef issuesStig Bakken1999-06-161-3/+3
| | | | | | | | | | | | * hand-patched in php3 changes from 3.0.6 to HEAD in these files: fopen-wrappers.[ch] ext/standard/file.[ch] ext/standard/fsock.[ch] ext/standard/php3_string.h ext/standard/string.c * added some new file/socket macros for more readable code: FP_FGETS(buf,len,sock,fp,issock) FP_FREAD(buf,len,sock,fp,issock) FP_FEOF(sock,fp,issock) FP_FGETC(sock,fp,issock)
* merge in some PHP3 stuffSascha Schumann1999-05-211-4/+73
|
* conv_proto *.[ch]Sascha Schumann1999-05-161-1/+1
|
* A lot of cleanups... Removed old thread-safe code and other redundant code ↵Zeev Suraski1999-04-241-1/+0
| | | | and files
* Remove tls.[ch]Zeev Suraski1999-04-231-3/+0
|
* First commit of re-structuring phase one. We have started using automake inStig Bakken1999-04-171-0/+88
sub-directories and started to move extension code into ext/<name>. For now, I have moved the "standard" extension (which is quite a mix of everything right now) and the GD extension into their own subdirs in ext/. The configure script now also runs configure in the libzend directory automatically and makes sure php4 and libzend use the same config.cache file. To avoid running configure in libzend, use the --no-recursion option. "make" in php4 also builds libzend now. The Apache module doesn't compile right now, but a fix for that is coming up.