LibCore: Implement LocalSocket::peer_pid

Mostly a copy of Core::LocalSocket::peer_pid.
This commit is contained in:
sin-ack 2022-01-14 13:25:37 +00:00 committed by Ali Mohammad Pur
commit 4cad0dd74c
Notes: sideshowbarker 2024-07-17 20:52:23 +09:00
2 changed files with 37 additions and 0 deletions

View file

@ -413,6 +413,7 @@ public:
ErrorOr<int> receive_fd(int flags);
ErrorOr<void> send_fd(int fd);
ErrorOr<pid_t> peer_pid() const;
ErrorOr<size_t> read_without_waiting(Bytes buffer);
virtual ~LocalSocket() { close(); }