unlockpt - Unlock a pseudoterminal master and slave pair
#include <stdlib.h>
int unlockpt(
int mastfd );
Standard C Library (libc)
Interfaces documented on this reference page conform to
industry standards as follows:
unlockpt(): XSH5.0
Refer to the standards(5) reference page for more information
about industry standards and associated tags.
Specifies a file descriptor that is returned from a successful
open of the master pseudoterminal device.
The unlockpt() function unlocks a slave pseudoterminal
from its associated master counterpart. It does this by
clearing a lock option so that the slave device can be
opened.
The unlockpt() function sets errno to the specified values
for the following conditions:
The file descriptor specified by the mastfd parameter is
not an open file descriptor. The file descriptor specified
by the mastfd parameter is not associated with a master
pseudoterminal device.
Upon successful completion, the unlockpt() function
returns a value of 0. Otherwise, it returns a value of -1
and sets errno to indicate the error.
Functions: openpty(3)
Standards: standards(5)
unlockpt(3)
[ Back ] |