summaryrefslogtreecommitdiff
path: root/src/kernel/handle.h
blob: b90ab6002e6b14a0bdd0976249efa0925074cf95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#pragma once
#include <kernel/vfs/mount.h>
#include <shared/types.h>
#include <stddef.h>

enum handle_type {
	HANDLE_INVALID = 0,
	HANDLE_FILE,

	HANDLE_FS_FRONT,
};

struct handle {
	enum handle_type type;
	union {
		// TODO consolidate backend fields
		struct {
			struct vfs_backend *backend;
			int id;
		} file;
		struct {
			struct vfs_backend *backend;
		} fs;
	};

	size_t refcount;
};

struct handle *handle_init(enum handle_type);
void handle_close(struct handle *);