From 8a9208612eec8ddae4c418485d848ecfa0613699 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Mon, 30 Oct 2023 22:12:14 +0100 Subject: Meta: Move kernel and userland to their own folders. This is to allow both the kernel and the userland to share certain header files and to make the folder structure a bit more clear. --- fs/tmpfs.h | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 fs/tmpfs.h (limited to 'fs/tmpfs.h') diff --git a/fs/tmpfs.h b/fs/tmpfs.h deleted file mode 100644 index 4052bd5..0000000 --- a/fs/tmpfs.h +++ /dev/null @@ -1,16 +0,0 @@ -#ifndef TMP_H -#define TMP_H -#include -#include - -#define TMP_BUFFER_SIZE (1024 * 10) - -typedef struct { - FIFO_FILE *fifo; - uint8_t is_closed; - vfs_inode_t *read_inode; -} tmp_inode; - -void pipe(int fd[2]); -void dual_pipe(int fd[2]); -#endif -- cgit v1.2.3