summaryrefslogtreecommitdiff
path: root/UPGRADING.INTERNALS
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2010-09-16 09:33:42 +0000
committerPierre Joye <pajoye@php.net>2010-09-16 09:33:42 +0000
commited58636f004aa9240a8f9cd056bdd0dc7c05490c (patch)
treeb04a57c17f1508a1fd2107a0e143ea9ccaefc075 /UPGRADING.INTERNALS
parentdaa90813fb4cee6bb50af334c14f17d795ab8d3b (diff)
downloadphp-git-ed58636f004aa9240a8f9cd056bdd0dc7c05490c.tar.gz
- use TSRMLS_D/C with php_stream_context_alloc
Diffstat (limited to 'UPGRADING.INTERNALS')
-rw-r--r--UPGRADING.INTERNALS9
1 files changed, 9 insertions, 0 deletions
diff --git a/UPGRADING.INTERNALS b/UPGRADING.INTERNALS
index 08e3085194..33b93a7a32 100644
--- a/UPGRADING.INTERNALS
+++ b/UPGRADING.INTERNALS
@@ -86,3 +86,12 @@ PHPAPI php_stream_context *php_stream_context_alloc(TSRMLS_D)
it has to be called using:
context = php_stream_context_alloc(TSRMLS_C);
+
+ h. php_stream_context_alloc
+php_stream_context_alloc uses now TSRMLS_D:
+
+PHPAPI php_stream_context *php_stream_context_alloc(TSRMLS_D);
+
+it has to be called using:
+
+context = php_stream_context_alloc(TSRMLS_C);