1xcb_sync_get_priority(3)         XCB Requests         xcb_sync_get_priority(3)
2
3
4

NAME

6       xcb_sync_get_priority -
7

SYNOPSIS

9       #include <xcb/sync.h>
10
11   Request function
12       xcb_sync_get_priority_cookie_t
13              xcb_sync_get_priority(xcb_connection_t *conn, uint32_t id);
14
15   Reply datastructure
16       typedef struct xcb_sync_get_priority_reply_t {
17           uint8_t  response_type;
18           uint8_t  pad0;
19           uint16_t sequence;
20           uint32_t length;
21           int32_t  priority;
22       } xcb_sync_get_priority_reply_t;
23
24   Reply function
25       xcb_sync_get_priority_reply_t
26              *xcb_sync_get_priority_reply(xcb_connection_t *conn,
27              xcb_sync_get_priority_cookie_t cookie, xcb_generic_error_t **e);
28

REQUEST ARGUMENTS

30       conn      The XCB connection to X11.
31
32       id        TODO: NOT YET DOCUMENTED.
33

REPLY FIELDS

35       response_type
36                 The type of this reply, in this case XCB_SYNC_GET_PRIORITY.
37                 This field is also present in the xcb_generic_reply_t and can
38                 be used to tell replies apart from each other.
39
40       sequence  The sequence number of the last request processed by the X11
41                 server.
42
43       length    The length of the reply, in words (a word is 4 bytes).
44
45       priority  TODO: NOT YET DOCUMENTED.
46

DESCRIPTION

RETURN VALUE

49       Returns an xcb_sync_get_priority_cookie_t. Errors have to be handled
50       when calling the reply function xcb_sync_get_priority_reply.
51
52       If you want to handle errors in the event loop instead, use
53       xcb_sync_get_priority_unchecked. See xcb-requests(3) for details.
54

ERRORS

56       This request does never generate any errors.
57

SEE ALSO

AUTHOR

60       Generated from sync.xml. Contact xcb@lists.freedesktop.org for correcā€
61       tions and improvements.
62
63
64
65X Version 11                      libxcb 1.13         xcb_sync_get_priority(3)
Impressum