GNU General Lisp package implementing forkpty ()

I am looking for a GNU Common Lisp package that implements forkpty() ; openpty() would also be a big plus, and login_tty() would be a luxury I could live with. (Duckduckgo, Google, etc. Didn’t help.) Are there any? Where?

+6
lisp common-lisp gnu-common-lisp
source share
2 answers

https://github.com/cffi-posix/ seems to be the right place to put the code you are looking for.

The idea is to port standard UNIX header files to CFFI- * packages.

+1
source share

LISP does not know its libraries, which is often a side effect of its power (and lack of portability, as well as a fragmented community, etc.). You can make your own and put it on github (or on a similar platform)!

This is a rather unsatisfactory answer, therefore: No , probably not. If so, it probably won't be portable enough to work on your implementation.

0
source share

All Articles