History log of /PHP-7.1/main/main.c (Results 76 – 100 of 1053)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.6.3, php-5.5.19, php-5.4.35, php-5.6.3RC1, php-5.5.19RC1
# 05f812c8 27-Oct-2014 Anatol Belski

catch up with zend_html_puts


# 73ecac89 27-Oct-2014 Anatol Belski

fix datatype mismatches and warnings


Revision tags: php-5.5.18
# c00424e4 15-Oct-2014 Anatol Belski

bring back all the TSRMLS_FETCH() stuff

for better comparability with the mainstream


Revision tags: php-5.4.34, php-5.5.18RC1, php-5.6.1, php-5.6.2, php-5.4.33, php-5.5.17, php-5.6.1RC1
# e756333b 09-Sep-2014 Nikita Popov

Remove <% and <script language="php"> tags

As per https://wiki.php.net/rfc/remove_alternative_php_tags.

Removes:
* <% opening tag
* %> closing tag
* <%= short opening

Remove <% and <script language="php"> tags

As per https://wiki.php.net/rfc/remove_alternative_php_tags.

Removes:
* <% opening tag
* %> closing tag
* <%= short opening tag
* /<script\s+language\s*=\s*(php|"php"|'php')\s*>/i opening tag
* /</script>/i closing tag
* asp_tags ini directive

show more ...


# f7900367 26-Sep-2014 Anatol Belski

some cleanups for TSRMLS_FETCH and direct tsrm_ls usage in main


# d11734b4 25-Sep-2014 Anatol Belski

reworked the patch, less new stuff but worky

TLS is already used in TSRM, the way exporting the tsrm cache through
a thread local variable is not portable. Additionally, the current

reworked the patch, less new stuff but worky

TLS is already used in TSRM, the way exporting the tsrm cache through
a thread local variable is not portable. Additionally, the current
patch suffers from bugs which are hard to find, but prevent it to
be worky with apache. What is done here is mainly uses the idea
from the RFC patch, but

- __thread variable is removed
- offset math and declarations are removed
- extra macros and definitions are removed

What is done merely is

- use an inline function to access the tsrm cache. The function uses
the portable tsrm_tls_get macro which is cheap
- all the TSRM_* macros are set to placebo. Thus this opens the way
remove them later

Except that, the logic is old. TSRMLS_FETCH will have to be done once
per thread, then tsrm_get_ls_cache() can be used. Things seeming to be
worky are cli, cli server and apache. I also tried to enable bz2
shared and it has worked out of the box. The change is yet minimal
diffing to the current master bus is a worky start, IMHO. Though will
have to recheck the other previously done SAPIs - embed and cgi.

The offsets can be added to the tsrm_resource_type struct, then
it'll not be needed to declare them in the userspace. Even the
"done" member type can be changed to int16 or smaller, then adding
the offset as int16 will not change the struct size. As well on the
todo might be removing the hashed storage, thread_id != thread_id and
linked list logic in favour of the explicit TLS operations.

show more ...


# b3aebda9 20-Sep-2014 krakjoe

native tls initial patch


# d0cb7153 19-Sep-2014 Johannes Schlüter

s/PHP 5/PHP 7/


# c80d9ccf 19-Sep-2014 Anatol Belski

fix printf format


# 6cceb54c 03-Sep-2014 Nikita Popov

Fix a number of format issues


Revision tags: php-5.5.17RC1, php-5.4.33RC1
# fe551c08 02-Sep-2014 Stanislav Malyshev

Revert "Fix bug #67644 - Memory corruption & crash during ob_start function callback"

This reverts commit 53fa6c5b6b5b09059ba54c8912d0c0aef57aa4ff.
The change breaks tests, so not puttin

Revert "Fix bug #67644 - Memory corruption & crash during ob_start function callback"

This reverts commit 53fa6c5b6b5b09059ba54c8912d0c0aef57aa4ff.
The change breaks tests, so not putting it into 5.4.

show more ...


# 53fa6c5b 31-Aug-2014 Stanislav Malyshev

Fix bug #67644 - Memory corruption & crash during ob_start function callback


# e321170c 02-Sep-2014 Dmitry Stogov

Fixed memory leaks


# 88d7ca44 01-Sep-2014 Dmitry Stogov

Refactored INI subsystem to use zend_string* instead of char*


Revision tags: php-5.6.0
# b63ab832 26-Aug-2014 Anatol Belski

several signature and data type fixes


Revision tags: POST_AST_MERGE, PRE_AST_MERGE
# 28b7a033 25-Aug-2014 Anatol Belski

master renamings phase 5


# 4d997f63 25-Aug-2014 Anatol Belski

master renames phase 3


# 6f9f0bf2 25-Aug-2014 Anatol Belski

master renames phase 2


# c3e3c98e 25-Aug-2014 Anatol Belski

master renames phase 1


Revision tags: POST_64BIT_BRANCH_MERGE, PRE_64BIT_BRANCH_MERGE, php-5.5.16, php-5.4.32
# 7534bf12 16-Aug-2014 Anatol Belski

fix set_time_limit, substr and some more


# 8ee2a4a9 16-Aug-2014 Anatol Belski

first shot on merging the core fro the int64 branch


Revision tags: POST_PHPNG_MERGE, PRE_PHPNG_MERGE
# 6463bc5b 14-Aug-2014 Dmitry Stogov

Fixed mode


# c78a1734 14-Aug-2014 Dmitry Stogov

Fixed compilation warnings


Revision tags: php-5.6.0RC4, php-5.3.29, php-5.5.16RC1, php-5.4.32RC1
# 24d7fc2b 01-Aug-2014 Andrea Faulds

Added PHP_INT_MIN


Revision tags: php-5.3.29RC1
# 72753068 31-Jul-2014 Dmitry Stogov

Fixed check for eval()


12345678910>>...43