diff options
author | Adam Jackson <ajax@redhat.com> | 2014-07-08 13:24:25 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2014-07-29 09:51:50 -0400 |
commit | cad9b053d52f62432dfd70e42e0240de77027cae (patch) | |
tree | a629b802dd1ed86a8c36e83bac3eaa2829f6477d /doc | |
parent | d5b279977236c4f80a8ba81db1f81a314484facf (diff) |
os: Remove deprecated malloc/free wrappers
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Adam Jackson <ajax@redhat.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Xserver-spec.xml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/doc/Xserver-spec.xml b/doc/Xserver-spec.xml index cd1a9d07a..4c344194d 100644 --- a/doc/Xserver-spec.xml +++ b/doc/Xserver-spec.xml @@ -1217,11 +1217,9 @@ library is contained in dix/dixfonts.c <section> <title>Memory Management</title> <para> -Memory management is based on functions in the C runtime library. -Xalloc(), Xrealloc(), and Xfree() are deprecated aliases for malloc(), +Memory management is based on functions in the C runtime library, malloc(), realloc(), and free(), and you should simply call the C library functions -directly. Consult a C runtime library reference -manual for more details. +directly. Consult a C runtime library reference manual for more details. </para> <para> Treat memory allocation carefully in your implementation. Memory |