Xext: sync: a bit of request handler documentation

Improve in-code docs of some request handlers, so it becomes a bit
more obvious what they're doing.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-04-17 15:08:03 +02:00
parent 098008879b
commit 8e161ae771

View File

@ -1355,7 +1355,8 @@ ProcSyncListSystemCounters(ClientPtr client)
} }
/* /*
* ** Set client Priority * Set the priority of the client owning given resource.
* If the resource ID is None then set the priority of calling client.
*/ */
static int static int
ProcSyncSetPriority(ClientPtr client) ProcSyncSetPriority(ClientPtr client)
@ -1389,7 +1390,8 @@ ProcSyncSetPriority(ClientPtr client)
} }
/* /*
* ** Get client Priority * Retrieve the priority of the client owning given resource.
* If the resource ID is None then retrieve the priority of calling client.
*/ */
static int static int
ProcSyncGetPriority(ClientPtr client) ProcSyncGetPriority(ClientPtr client)