From 8a3611422b39a1a9970013d3447e392ec7f0e8fd 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 cab73be92..801441f9e 100644 --- a/Xext/sync.c +++ b/Xext/sync.c @@ -1358,7 +1358,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) @@ -1392,7 +1393,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)