diff options
author | Steve Bennett <steveb@workware.net.au> | 2020-05-05 22:50:27 +1000 |
---|---|---|
committer | Steve Bennett <steveb@workware.net.au> | 2024-02-04 10:08:26 +1000 |
commit | 67e32c82fa2248a70a02d0828b8785b9a25692b0 (patch) | |
tree | f5c00e2b085121e8c4965f7052e7d12819d51ab3 /jim-tty.h | |
parent | 474bab96aaa42526fdd5283a925e540679ae0bfe (diff) | |
download | jimtcl-67e32c82fa2248a70a02d0828b8785b9a25692b0.zip jimtcl-67e32c82fa2248a70a02d0828b8785b9a25692b0.tar.gz jimtcl-67e32c82fa2248a70a02d0828b8785b9a25692b0.tar.bz2 |
aio: Add support for modem control signals
RTS, DTR, etc. and sending a break condition
Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'jim-tty.h')
-rw-r--r-- | jim-tty.h | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -23,6 +23,22 @@ Jim_Obj *Jim_GetTtySettings(Jim_Interp *interp, int fd); */ int Jim_SetTtySettings(Jim_Interp *interp, int fd, Jim_Obj *dictObjPtr); +/** + * Return the tty modem control settings for the given file descriptor as a dictionary + * with a zero reference count. + * + * Returns NULL and sets errno file descriptor is not a valid tty. + */ +Jim_Obj *Jim_GetTtyControlSettings(Jim_Interp *interp, int fd); + +/** + * Sets the tty modem control settings given in 'dictObjPtr' + * + * Returns JIM_OK if OK, JIM_ERR if any settings are invalid, + * or -1 (and sets errno) if the file descriptor is not a valid tty. + */ +int Jim_SetTtyControlSettings(Jim_Interp *interp, int fd, Jim_Obj *dictObjPtr); + #ifdef __cplusplus } #endif |