From 4abab5ad6c8465a7528ccdd5f49367da05f78bbd Mon Sep 17 00:00:00 2001 From: Vladimir Azarov Date: Tue, 1 Oct 2024 15:47:05 +0200 Subject: Initial version --- src/process/fdop.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/process/fdop.h (limited to 'src/process/fdop.h') diff --git a/src/process/fdop.h b/src/process/fdop.h new file mode 100644 index 0000000..7cf733b --- /dev/null +++ b/src/process/fdop.h @@ -0,0 +1,17 @@ +#define FDOP_CLOSE 1 +#define FDOP_DUP2 2 +#define FDOP_OPEN 3 +#define FDOP_CHDIR 4 +#define FDOP_FCHDIR 5 + +struct fdop { + struct fdop *next, *prev; + int cmd, fd, srcfd, oflag; + mode_t mode; + char path[]; +}; + +#define malloc __libc_malloc +#define calloc __libc_calloc +#define realloc undef +#define free __libc_free -- cgit v1.2.3