summaryrefslogtreecommitdiff
path: root/ext/sysvshm
Commit message (Collapse)AuthorAgeFilesLines
* the 'setup' script was removed more than two years ago.jim winstead2002-03-161-5/+0
| | | | | these can be safely removed from the 4.2 branch, too.
* extension converted automatically to PHP_NEW_EXTENSION. Manually confirmedSascha Schumann2002-03-122-7/+1
|
* Use {NULL, NULL, NULL} to terminate function entry.Yasuo Ohgaki2002-02-281-1/+1
| | | | | # It does not fix any bugs, since {0} works also.
* Maintain headers.Sebastian Bergmann2002-02-282-2/+2
|
* Update headers.Sebastian Bergmann2001-12-112-4/+4
|
* Unified the configure messages.foobar2001-11-301-1/+3
|
* WS fix.foobar2001-11-221-6/+6
|
* - Fix crach bug if the parameter to shm_remove is not a valid identifier.Derick Rethans2001-11-221-0/+6
|
* compile fixThies C. Arntzen2001-11-111-2/+2
|
* Fix for 14012Rasmus Lerdorf2001-11-111-1/+1
|
* * zend_module_entry change: apino, debug and zts are moved first,Stig Bakken2001-10-111-0/+2
| | | | | | see README.EXTENSIONS file for upgrade help. @Introduced extension version numbers (Stig)
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-11/+11
| | | | 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 for bug #13190Wez Furlong2001-09-071-3/+4
|
* more tsrm cleanupSascha Schumann2001-08-051-2/+2
|
* Full include paths are preferrable.Jon Parise2001-08-031-2/+2
|
* smart_str use requires php_smart_str.h.Jon Parise2001-08-031-0/+1
|
* Convert serializer to smart_str.. avoids lots of sprintf's andSascha Schumann2001-08-031-6/+3
| | | | | copying of data.
* More TSRMLS_FETCH annihilationZeev Suraski2001-07-311-1/+1
|
* Avoid TSRMLS_FETCH()'s, and clean up a bit of stale extern's and layout on ↵Zeev Suraski2001-07-301-3/+3
| | | | the way
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-1/+2
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-13/+23
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
* * include "config.h" if HAVE_CONFIG_H is defined (for standalone dso build)Stig Bakken2001-05-241-0/+4
|
* fixed shm_remove to expect the correct argument.Gavin Sherry2001-05-151-12/+13
|
* - Fix copyright notices with 2001Andi Gutmans2001-02-262-2/+2
|
* fixed BUG #8306: shmat() returns -1 on errors, not NULLHartmut Holzgraefe2000-12-181-1/+1
|
* 2nd step towards auto-creditsHartmut Holzgraefe2000-11-201-0/+2
|
* Update to use reference-serializer tooStanislav Malyshev2000-10-301-2/+9
|
* Add support for serializing references.Stanislav Malyshev2000-10-301-1/+1
| | | | | | @- Add support for serializing references (Stas) # WDDX and shared memory functions not covered yet
* Use zend_register_list_destructors_ex() instead.Andrei Zmievski2000-10-251-1/+1
|
* Mega-patch to get better resource information for modules.Andrei Zmievski2000-10-201-2/+3
| | | | | | | | | | | | | * Fixed a bug in zend_rsrc_list_get_rsrc_type() * Switched register_list_destructors() to use zend_register_list_destructors_ex() instead * Updated all relevant modules to provide the resource type name to register_list_destructors() call * Updated var_dump() to output resource type name instead of number @- Made resource type names visible, e.g. var_dump() and @ get_resource_type() display "file" for file resources. (Andrei)
* Some protos corrected.Egon Schmid2000-08-121-2/+2
|
* Changed lots of PHP 3 licence headers to PHP 4, mainly in .h files.David Croft2000-07-241-22/+10
| | | | | | | | | Added a few RCS $Id$ tags. # Note: I have avoided changing any .h files if the corresponding .c file # had not already been changed as I am not sure if there are any legal # issues here. So some extensions still have PHP 3 headers.
* Changed the descriptions.Egon Schmid2000-07-101-6/+6
|
* Changed some protos and the authors email address.Egon Schmid2000-07-102-9/+7
|
* Change header protection macros to conform to standard.Sascha Schumann2000-07-021-3/+3
| | | | | | | | | Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment" All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use by the implementation.
* - Nuke COMPILE_DL. Modules that need to be compiled as dll's in WindowsAndi Gutmans2000-06-101-6/+0
| | | | | - need to define both COMPILE_DL_MODULE and HAVE_MODULE=1
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-6/+6
|
* Use #ifdef COMPILE_DL_EXTNAME solely.Sascha Schumann2000-05-231-1/+1
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* proto correctedHartmut Holzgraefe2000-05-171-1/+1
|
* Make sysvshm buildable as shared moduleSascha Schumann2000-05-022-15/+8
|
* #if COMPILE_DLSascha Schumann2000-05-021-1/+1
| | | | | | | becomes #if defined(COMPILE_DL) || defined(COMPILE_DL_EXTENSION_NAME)
* Replace the various get_module() functions with a uniformSascha Schumann2000-05-021-1/+1
| | | | | ZEND_GET_MODULE(name) macro.
* Remove trailing empty linesSascha Schumann2000-05-011-4/+0
|
* Large test commit IVSascha Schumann2000-05-011-0/+1
|
* Large commit test IIISascha Schumann2000-05-011-0/+3
|
* Improved in-tree shared libraries build systemSascha Schumann2000-05-011-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The following new/revived shared modules are available now: ... MySQL (*) ... PCRE (*) ... Session ... SWF (*) capable of using bundled library or external library All changes: The m4 macro PHP_EXTENSION was revamped. Uses LIB_BUILD now. This effectively means that all extensions have to use dynlib. ext/mysql/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/pcre/config.m4 was revamped. Uses LIB_BUILD for building bundled library. ext/ext_skel was changed to reflect that more modules should be compileable as shared module. ext/Makefile.in has been simplified enormously. Dependencies are now stored in the build tree. Empty dependencies are not generated by buildconf anymore. They are now dynamically created during the build process. Implicit rules for .S were removed. The NO_RECURSION feature was removed. "libs.mk" has been added to all cvsignore files in ext.
* Overall UNIX build system improvements:Sascha Schumann2000-04-301-6/+1
| | | | | | | | | * Makefile header is now completely dynamic * Absolute paths in (top_)?(src|build)dir and VPATH (fixes Tru64 support) * VPATH does not contain variables anymore (fixes UnixWare support)
* Change extension names in all extensions' zend_module_entry to theirStig Bakken2000-03-061-1/+1
| | | | | directory name.