Go to the source code of this file.
◆ openpty
◆ login_tty
◆ forkpty
#define forkpty |
( |
|
__amaster, |
|
|
|
__name, |
|
|
|
__termp, |
|
|
|
__winp |
|
) |
| |
Value: ({ \
VSF_MACRO_SAFE_NAME(pid) =
vfork(); \
case -1: \
break; \
case 0: \
_exit(1); \
} \
VSF_MACRO_SAFE_NAME(result) = 0; \
break; \
default: \
break; \
} \
} \
VSF_MACRO_SAFE_NAME(result); \
})
#define __name
Definition hci_transport_aic8800.c:552
#define openpty
Definition pty.h:20
#define login_tty
Definition pty.h:21
#define vfork()
Definition unistd.h:916
#define VSF_MACRO_SAFE_NAME(__NAME)
Definition vsf_preprocessor.h:32
◆ vsf_linux_pty_vplt_t
◆ openpty()
int openpty |
( |
int * |
amaster, |
|
|
int * |
aslave, |
|
|
char * |
name, |
|
|
const struct termios * |
termp, |
|
|
const struct winsize * |
winp |
|
) |
| |
◆ login_tty()
◆ vsf_linux_pty_vplt