Unix and Linux Discussions Tagged with port |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
2 |
9,473 |
Red Hat |
|
|
|
0 |
19,132 |
Programming |
|
|
|
3 |
5,261 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
7,296 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
18,993 |
Solaris |
|
|
|
8 |
4,993 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,989 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
11,275 |
SCO |
|
|
|
7 |
10,466 |
Cybersecurity |
|
|
|
10 |
8,037 |
Shell Programming and Scripting |
|
|
|
33 |
36,648 |
Solaris |
|
|
|
5 |
3,650 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
5,772 |
AIX |
|
|
|
1 |
3,749 |
Linux |
|
|
|
2 |
4,156 |
Solaris |
|
|
|
5 |
4,125 |
AIX |
|
|
|
5 |
421,368 |
Shell Programming and Scripting |
|
|
|
1 |
3,064 |
IP Networking |
|
|
|
2 |
6,035 |
Shell Programming and Scripting |
|
|
|
1 |
2,112 |
Solaris |
|
|
|
3 |
2,588 |
Shell Programming and Scripting |
|
|
|
2 |
3,626 |
Programming |
|
|
|
1 |
4,779 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,290 |
HP-UX |
|
|
|
14 |
83,495 |
Shell Programming and Scripting |
|
|
|
23 |
58,762 |
Solaris |
|
|
|
8 |
22,125 |
Linux |
|
|
|
0 |
21,750 |
IP Networking |
|
|
|
1 |
5,657 |
Programming |
|
|
|
1 |
18,601 |
Programming |
|
|
|
3 |
6,467 |
Shell Programming and Scripting |
|
|
|
0 |
1,998 |
Software Releases - RSS News |
|
|
|
7 |
7,387 |
Shell Programming and Scripting |
|
|
|
0 |
7,873 |
Shell Programming and Scripting |
|
|
|
4 |
10,032 |
Shell Programming and Scripting |
|
|
|
11 |
20,288 |
IP Networking |
|
|
|
6 |
11,363 |
Programming |
|
|
|
0 |
5,384 |
Programming |
|
|
|
0 |
11,202 |
IP Networking |
|
|
|
1 |
4,528 |
Solaris |
XvGrabPort(3) libXv Functions XvGrabPort(3)
NAME
XvGrabPort - lock port for exclusive use by client
SYNOPSIS
#include <X11/extensions/Xvlib.h>
int XvGrabPort(Display *dpy, XvPortID port, Time time);
ARGUMENTS
dpy Specifies the connection to the X server.
port Defines the port to be grabbed.
time Specifies the request timestamp.
DESCRIPTION
XvGrabPort(3) grabs a port. Once a client grabs a port, only that client can make video requests to that port.
If the time is before the current port time, the XvGrabPort request is ignored and XvInvalidTime is returned. If the port is already
grabbed by another client, XvAlreadyGrabbed is returned. Otherwise it returns a status of Success. The port time is updated when the fol-
lowing requests are processed: XvGrabPort(3), XvUngrabPort(3), XvPutVideo(3), XvPutStill(3), XvGetVideo(3), XvGetStill(3).
If the port is actively processing video for another client, the video is preempted, and an XvVideoNotify event with detail XvPreempted is
generated for its drawable.
RETURN VALUES
[Success]
Returned if XvGrabPort(3) completed successfully.
[XvInvalidTime]
Returned if requested time is older than the current port time.
[XvAlreadyGrabbed]
Returned if the port is already grabbed by another client.
[XvBadExtension]
Returned if the Xv extension is unavailable.
[XvBadAlloc]
Returned if XvGrabPort(3) failed to allocate memory to process the request.
DIAGNOSTICS
[XvBadPort] Generated if the requested port does not exist.
SEE ALSO
XvUngrabPort(3), XvVideoNotify(3)
X Version 11 libXv 1.0.7 XvGrabPort(3)