WIP: Added the initial process table implementation.

Wrote a basic process table implementation with CC's vectors and hash
maps. So far, it looks like it does not really work.
This commit is contained in:
BritishTeapot
2025-03-18 10:07:45 +01:00
parent 70e81d64c1
commit b6ce683364
3 changed files with 148 additions and 13 deletions

View File

@@ -21,8 +21,9 @@ struct process_info {
uid_t UID;
};
// For default socket location, set socket_path = NULL.
int init_ui_socket(const char *socket_path);
int init_ui_socket();
void destroy_ui_socket();
int interactive_access(const char *filename, struct process_info pi);