History log of /PHP-5.5/Zend/zend.h (Results 176 – 200 of 404)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-4.3.4, php-4.3.4RC3, php-5.0.0b2, RELEASE_2_0_0RC1, php-5.0.0b2RC1
# 3c62b3b5 22-Oct-2003 Marcus Boerger

Expand Interface C API.
In short: zend_class_entry->interface_gets_implemented() allows to modify
the class entry of a class when an interface gets implemented.


Revision tags: php-4.3.4RC2, RELEASE_1_3b3
# b0b82541 18-Oct-2003 Marcus Boerger

Fix class/iterator relationship & handling


# 25aa8b71 17-Oct-2003 Marcus Boerger

Added c-api for iterators
# After 4 Month work and endless discussions...


Revision tags: BEFORE_HANDLERS_RESHUFFLE
# 149f7860 03-Oct-2003 Moriyoshi Koizumi

Bug #25738 (alloca() related problems on the Darwin platform)


Revision tags: RELEASE_1_3b2, php-4.3.4RC1, RELEASE_0_7
# 1c86e532 14-Sep-2003 Marcus Boerger

Bugfix #25528 (by Ard Biesheuvel)


# d45fd8a1 31-Aug-2003 Marcus Boerger

Make vspprintf available as zend utility function. Use it in exception output.


# 744c68e4 28-Aug-2003 Sascha Schumann

older gccs don't understand attribute((format)) on function pointers


# 83bd1f43 28-Aug-2003 Sascha Schumann

ZEND_GCC_VERSION should always be defined to a number so we can use
simple comparisons all the time.


# 2e36578c 28-Aug-2003 Sascha Schumann

Add format attribute to a number of functions

Kill a few warnings


# 169d43e5 28-Aug-2003 Sascha Schumann

cleanup & centralize ZEND_GCC_VERSION and ZEND_ATTRIBUTE_MALLOC so that
they can be used by downstream applications


# 28447d62 25-Aug-2003 foobar

- Fixed bug #25240 (spaces before pre-processor directives)


Revision tags: php-4.3.3
# 49c4866a 18-Aug-2003 Zeev Suraski

- Improve tracking
- Fix several overloading issues


Revision tags: php-4.3.3RC4
# 602d1b00 17-Aug-2003 Sascha Schumann

One bit fields need to be unsigned, otherwise there is no storage for
the sign bit

"A signed bit field has a length of 1 bit."


Revision tags: RELEASE_0_5_3, php-4.3.3RC3, RELEASE_0_5_2, RELEASE_1_2b5
# fe9b5870 04-Aug-2003 Zeev Suraski

Add logical XOR, proves to be quite useful lately


# f8bbafd6 03-Aug-2003 Zeev Suraski

ntroduce infrastructure for supplying information about arguments,
including:

- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future

ntroduce infrastructure for supplying information about arguments,
including:

- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance

Both user and builtin functions share the same data structures.

To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:

ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();

and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.

The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.

The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.

show more ...


Revision tags: BEFORE_ARG_INFO, php-4.3.3RC2
# 2fd4ffce 30-Jul-2003 Zeev Suraski

Add exec_finished() callback for modules - this is the last place where the
modules may touch the symbol table reliably


# 237116aa 23-Jul-2003 Stanislav Malyshev

Remove namespace leftovers


# aad79769 19-Jul-2003 foobar

Fix the HPUX alloca fix as suggested by Sascha


# 99d0a5c8 19-Jul-2003 Andi Gutmans

- Don't use alloca on HP-UX (Moriyoshi Koizumi <moriyoshi@at.wakwak.com>)


Revision tags: php-5.0.0b1, php-4.3.3RC1
# f68c7ff2 10-Jun-2003 James Cox

updating license information in the headers.


# 039c1743 04-Jun-2003 Stanislav Malyshev

rm namespace leftovers


# f7f5a5ea 02-Jun-2003 Stanislav Malyshev

MEGA-patch: namespaces are R.I.P.


Revision tags: BEFORE_FD_REAPPLY, php-4.3.2, php-4.3.2RC4, BEFORE_FD_REVERT, php-4.3.2RC3, RELEASE_0_9b, SPL_ALPHA, php-4.3.2RC2
# bfaf618b 18-Apr-2003 Derick Rethans

- Revert my symbol fix patch, and merge in Stas' fixes to Zend Engine 1.


# bd77233e 18-Apr-2003 Derick Rethans

- MacOSX also prepends the _ before symbols in bundles


Revision tags: RELEASE_0_6, RELEASE_0_5, init
# 5657b836 31-Mar-2003 Andrei Zmievski

Multi-purpose patch:
- The fields of zend_namespace were not completely initialized which
led to a variety of problems.
- The occurrence of class/interface/namespace definition is no

Multi-purpose patch:
- The fields of zend_namespace were not completely initialized which
led to a variety of problems.
- The occurrence of class/interface/namespace definition is now
captured.
- Functions/classes/interfaces/namespaces can be preceded by doc
comments which are stored for use by extensions.

show more ...


12345678910>>...17