summaryrefslogtreecommitdiff
path: root/ext/standard/microtime.c
Commit message (Collapse)AuthorAgeFilesLines
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-1/+1
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-3/+2
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-0/+1
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
* Simple patch to deal with lack of fields in the BeOS implementation of rusage.Stephen van Egmond2001-03-231-1/+1
|
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* Always return a value even if HAVE_GETTIMEOFDAY is not setJames Moore2001-02-041-4/+6
|
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-1/+1
|
* a second (cleaner?) try on warnings about unsupported functionsHartmut Holzgraefe2000-05-271-4/+2
|
* - I'm not sure if PHP_NOT_IN_THIS_BUILD is the way to handle theseAndi Gutmans2000-05-271-1/+1
| | | | | - functions but in any case I have changed it to PHP_NOT_IN_THIS_BUILD()
* if a module provides a function it should also do so if the functionHartmut Holzgraefe2000-05-261-2/+4
| | | | | | | | is not functional due to configure findings the function should offer a meaningful warning if it is not supported instead of just beeing undefined i had already changed this in 'gd', now this is doing it for 'standard'
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* Fix build on systems which lack snprintf or vsnprintf.Sascha Schumann2000-03-121-1/+0
| | | | | PR: #3786
* - Convert 'PHP3' to 'PHP'Zeev Suraski2000-02-261-18/+18
| | | | | - Avoid declaring crypt() related salt types twice
* More protos.Egon Schmid2000-02-241-3/+3
|
* (PHP getrusage) don't define this function at all if the getrusage() functionStig Bakken2000-02-231-2/+3
| | | | | is not available on the system.
* Include <sys/types.h> and <sys/time.h> before <sys/resource.h>Sascha Schumann2000-02-231-13/+13
|
* php.h should be the first file included, so that HAVE_* are definedSascha Schumann2000-02-231-1/+2
|
* Include <sys/resource.h> for getrusage(2)Sascha Schumann2000-02-231-0/+3
| | | | | PR: #3479
* the pipe is breaking all the timeZeev Suraski2000-02-191-2/+2
|
* Fine tune Andi's patchZeev Suraski2000-02-111-1/+1
|
* - Get rid of some more evil MSVC5's and switch standard/ to use PHP_WIN32Andi Gutmans2000-02-101-1/+1
|
* Happy Y2K patch! Happy new year (or the new millennium, depending on whetherSascha Schumann2000-01-011-1/+1
| | | | | you start counting at 0 or 1).
* - The tree compiles againZeev Suraski1999-12-181-1/+1
|
* 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.