summaryrefslogtreecommitdiff
path: root/ext/com_dotnet
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-12-14 14:22:42 +0100
committerAnatol Belski <ab@php.net>2014-12-14 14:22:42 +0100
commit7b6ed8db2fa1574cffabde7a8bc9fdc277304528 (patch)
tree1380358aab5eae4d514ed58d47e6344ad3bc3d92 /ext/com_dotnet
parente112f6a04e0cddc6276c426c09c0249201878f5a (diff)
downloadphp-git-7b6ed8db2fa1574cffabde7a8bc9fdc277304528.tar.gz
almost all the replacements of TSRMLS_* are done
Some places have to be yet touched as they use different/custom macros namings for the same. Also some places in the code became redundant now, this is the next task. To name some: ext/mysqlnd, sapi/embed, ext/curl and some smaller places here and there.
Diffstat (limited to 'ext/com_dotnet')
-rw-r--r--ext/com_dotnet/com_persist.c1
-rw-r--r--ext/com_dotnet/com_wrapper.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/ext/com_dotnet/com_persist.c b/ext/com_dotnet/com_persist.c
index eec1389ade..187b50b120 100644
--- a/ext/com_dotnet/com_persist.c
+++ b/ext/com_dotnet/com_persist.c
@@ -55,7 +55,6 @@ static void istream_dtor(zend_resource *rsrc)
#define FETCH_STM() \
php_istream *stm = (php_istream*)This; \
- TSRMLS_FETCH(); \
if (GetCurrentThreadId() != stm->engine_thread) \
return RPC_E_WRONG_THREAD;
diff --git a/ext/com_dotnet/com_wrapper.c b/ext/com_dotnet/com_wrapper.c
index aa1c21c8f0..f1d08c15f2 100644
--- a/ext/com_dotnet/com_wrapper.c
+++ b/ext/com_dotnet/com_wrapper.c
@@ -88,7 +88,6 @@ static inline void trace(char *fmt, ...)
#define FETCH_DISP(methname) \
php_dispatchex *disp = (php_dispatchex*)This; \
- TSRMLS_FETCH(); \
if (COMG(rshutdown_started)) { \
trace(" PHP Object:%p (name:unknown) %s\n", Z_OBJ(disp->object), methname); \
} else { \