Kernel+LibC: Add get_process_name() syscall

It does exactly what it sounds like:

    int get_process_name(char* buffer, int buffer_size);
This commit is contained in:
Andreas Kling 2019-08-15 20:55:10 +02:00
commit 6ad3efe067
Notes: sideshowbarker 2024-07-19 12:40:20 +09:00
6 changed files with 29 additions and 1 deletions

View file

@ -14,6 +14,7 @@ __BEGIN_DECLS
extern char** environ;
int get_process_name(char* buffer, int buffer_size);
void dump_backtrace();
int fsync(int fd);
void sysbeep();