From 8e161ae771589528a3eba5beaf543c208687e475 Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Thu, 17 Apr 2025 15:08:03 +0200 Subject: [PATCH] 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 --- Xext/sync.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Xext/sync.c b/Xext/sync.c index 60e1e5ecf..ed8f6dde8 100644 --- a/Xext/sync.c +++ b/Xext/sync.c @@ -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 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 ProcSyncGetPriority(ClientPtr client)