diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-06-19 23:56:20 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2010-07-23 12:41:52 -0700 |
commit | 6b912b08ce65072b2401167fbf2150b99c0ca6b0 (patch) | |
tree | e26ffa89fc694dc11a743f7e81409830644a93e3 | |
parent | 44c9350d72b3eda982c642feb45d6648afc626cf (diff) |
Add name argument to CreateNewResourceType documentation
Reflects API change made in commit 895f40792a during Xorg 1.8 development
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Reviewed-by: Patrick E. Kane <pekane52@gmail.com>
-rw-r--r-- | doc/xml/Xserver-spec.xml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/doc/xml/Xserver-spec.xml b/doc/xml/Xserver-spec.xml index 88885aec3..466b79d40 100644 --- a/doc/xml/Xserver-spec.xml +++ b/doc/xml/Xserver-spec.xml @@ -357,11 +357,15 @@ Resource types are integer values starting at 1. Get a resource type by calling <blockquote><programlisting> - RESTYPE CreateNewResourceType(deleteFunc) + RESTYPE CreateNewResourceType(deleteFunc, char *name) </programlisting></blockquote> deleteFunc will be called to destroy all resources with this -type.</para> +type. name will be used to identify this type of resource +to clients using the X-Resource extension, to security +extensions such as SELinux, and to tracing frameworks such as DTrace. +[The name argument was added in xorg-server 1.8.] +</para> <para> Resource classes are masks starting at 1 << 31 which can be or'ed with any resource type to provide attributes for the |