unlockpt - Man Page

unlock a pseudo-terminal master/slave pair

Prolog

This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux.

Synopsis

#include <stdlib.h>

int unlockpt(int fildes);

Description

The unlockpt() function shall unlock the slave pseudo-terminal device associated with the master to which fildes refers.

Conforming applications shall ensure that they call unlockpt() before opening the slave side of a pseudo-terminal device.

Return Value

Upon successful completion, unlockpt() shall return 0. Otherwise, it shall return -1 and set errno to indicate the error.

Errors

The unlockpt() function may fail if:

EBADF

The fildes argument is not a file descriptor open for writing.

EINVAL

The fildes argument is not associated with a master pseudo-terminal device.

The following sections are informative.

Examples

None.

Application Usage

None.

Rationale

See the RATIONALE section for posix_openpt().

Future Directions

None.

See Also

grantpt(), open(), posix_openpt(), ptsname()

The Base Definitions volume of POSIX.1-2017, <stdlib.h>

Referenced By

grantpt(3p), open(3p), posix_openpt(3p), ptsname(3p), stdlib.h(0p).

2017 IEEE/The Open Group POSIX Programmer's Manual