POSIX system-call API for Common Lisp

These pages represent an ongoing project to define a Common Lisp API for POSIX system calls.

The goal of the API is to provide a convenient interface to POSIX system calls, while still providing some optimizations such as allowing the caller to supply pre-allocated objects for the call to fill in.

We are aware of projects such as Ossicat. The goal of this project is quite different. We are mainly interested in creating a specification of an API that looks "natural" to Common Lisp. This requirement excludes the use of any foreign-function interface (FFI) if using such an interface makes the underlying lower-level programming language visible in the interface. It is of course not excluded to use some FFI to implement the various functions of this interface, but the mapping may not direct for all functions.

Since there is no direct correspondence between the functions in this interface and similar functions in (say) libc, the specification of this interface must be complete and without reference to such similar functions.

The API comes in two levels:

Table of contents
robert.strandh@gmail.com