mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-04 00:27:47 +00:00
Kernel: Add a mechanism for listening for changes to an inode.
The syscall is quite simple: int watch_file(const char* path, int path_length); It returns a file descriptor referring to a "InodeWatcher" object in the kernel. It becomes readable whenever something changes about the inode. Currently this is implemented by hooking the "metadata dirty bit" in Inode which isn't perfect, but it's a start. :^)
This commit is contained in:
parent
a9adf4c95b
commit
c8e2bb5605
Notes:
sideshowbarker
2024-07-19 13:05:27 +09:00
Author: https://github.com/awesomekling
Commit: c8e2bb5605
12 changed files with 200 additions and 3 deletions
|
@ -54,6 +54,7 @@ __BEGIN_DECLS
|
|||
#define S_IRWXO (S_IRWXG >> 3)
|
||||
|
||||
int fcntl(int fd, int cmd, ...);
|
||||
int watch_file(const char* path, int path_length);
|
||||
|
||||
#define F_RDLCK 0
|
||||
#define F_WRLCK 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue