Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | pflocal: Use default stub implementations. | Justus Winter | 2017-09-12 | 1 | -267/+0 |
| | | | | | | | | * pflocal/Makefile (fsServer-CFLAGS): Make use of default implementations. (ioServer-CFLAGS): Likewise. * pflocal/fs.c: Remove all stub functions. * pflocal/io.c: Likewise. | ||||
* | pflocal: Add support for access() on pipes | Samuel Thibault | 2016-03-20 | 1 | -0/+308 |
bash's '<(' helper creates a pipe and gives /dev/fd/63 to the program, and gcc would then run access() on it. So we actually need to support at least some FS operations on pipes. * pflocal/fs.c: New file. * pflocal/mig-mutate.h (FILE_INTRAN, FILE_INTRAN_PAYLOAD, FILE_DESTRUCTOR, FILE_IMPORTS): New macros. * pflocal/sserver.c: Include "fs_S.h". (sock_demuxer): Call fs_server_routine. * pflocal/Makefile (SRCS): Add fs.c. (MIGSTUBS): Add fsServer.o. |