diff --git a/internals2/memory/TSRM.xml b/internals2/memory/TSRM.xml
index 1b34579733..2196cb389e 100644
--- a/internals2/memory/TSRM.xml
+++ b/internals2/memory/TSRM.xml
@@ -42,10 +42,8 @@
-
TSRM API
-
- The API documented hereafter is aimed at advanced use of TSRM. It is not ordinary for extensions to have to interact with TSRM directly, the pecl programmer should use API's above TSRM such as the Module Globals API which used correctly will ensure safety in ZTS mode for you.
+ The functionality documented hereafter is aimed at advanced use of TSRM. It is not ordinary for extensions to have to interact with TSRM directly, the pecl programmer should use API's above TSRM such as the Module Globals API which used correctly will ensure safety in ZTS mode for you.
- There are more TSRM API functions to enable the creation and destruction of interpreter contexts, the usage of such functionality is out of the scope of this documentation, please see TSRM/TSRM.h for more information.
-
+ There are more TSRM API functions to enable the creation and destruction of interpreter contexts, the usage of such functionality is out of the scope of this documentation, please see TSRM/TSRM.h for more information.
+
- TSRM Mutex API
-
-
-
-
- Prototype
- Description
-
-
-
-
-
- MUTEX_T tsrm_mutex_alloc(void)
- Allocates and returns a suitable MUTEX_T for the environment.
-
-
-
- int tsrm_mutex_lock(MUTEX_T mutexp)
-
- Locks mutexp
for the calling thread.
-
-
-
-
- int tsrm_mutex_unlock(MUTEX_T mutexp)
-
- Unlocks mutexp
for the calling thread.
-
-
-
-
- void tsrm_mutex_free(MUTEX_T mutexp);
-
- Destroys and frees the (unlocked) and previously allocated mutexp
.
-
-
-
-
-
-
- The mutex API is exposed by TSRM. However, its internal usage is far too wide to document usefully here, none the less, basic functionality and prototypes are documented here.
-
+
+ TSRM Mutex API
+
+
+
+ Prototype
+ Description
+
+
+
+
+
+ MUTEX_T tsrm_mutex_alloc(void)
+ Allocates and returns a suitable MUTEX_T for the environment.
+
+
+
+ int tsrm_mutex_lock(MUTEX_T mutexp)
+
+ Locks mutexp
for the calling thread.
+
+
+
+
+ int tsrm_mutex_unlock(MUTEX_T mutexp)
+
+ Unlocks mutexp
for the calling thread.
+
+
+
+
+ void tsrm_mutex_free(MUTEX_T mutexp);
+
+ Destroys and frees the (unlocked) and previously allocated mutexp
.
+
+
+
+
+
-
-
+
+ The mutex API is exposed by TSRM. However, its internal usage is far too wide to document usefully here, none the less, basic functionality and prototypes are documented here.
+
+
\ No newline at end of file