summaryrefslogtreecommitdiff
path: root/kernel/syscalls.h
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-10-12 00:30:44 +0200
committerMiguel <m.i@gmx.at>2018-10-12 00:30:44 +0200
commitb461c3558b2fe765a4bac512638b0acf5185b4bb (patch)
tree62d025135865f1752c7d884ac92fdcdd39b21654 /kernel/syscalls.h
parent2e8d1bc3b6aa0671995860ca8a09c97523f3538d (diff)
imeplemented /dev/tty and minimalistic "less"
Diffstat (limited to 'kernel/syscalls.h')
-rw-r--r--kernel/syscalls.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/syscalls.h b/kernel/syscalls.h
index b79e6b3..5579dd7 100644
--- a/kernel/syscalls.h
+++ b/kernel/syscalls.h
@@ -48,7 +48,7 @@
/** Todo move somewhere else and init per process , think how to make thread safe */
void fd_init_std_streams(uint32_t pid);
-fd *get_fd(uint32_t pid,uint32_t file);
+fd *get_tty(uint32_t pid);
/** returns string representation of the syscall from its number */
char* syscall_get_name(uint32_t num);