1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:38:10 +00:00

Kernel: Switch LocalSocket to IntrusiveList from InlineLinkedList

This commit is contained in:
Brian Gianforcaro 2021-05-26 02:38:32 -07:00 committed by Andreas Kling
parent 493d4d1cd7
commit e0da61f9d6
2 changed files with 13 additions and 13 deletions

View file

@ -17,9 +17,9 @@
namespace Kernel {
static AK::Singleton<Lockable<InlineLinkedList<LocalSocket>>> s_list;
static AK::Singleton<Lockable<LocalSocket::List>> s_list;
Lockable<InlineLinkedList<LocalSocket>>& LocalSocket::all_sockets()
static Lockable<LocalSocket::List>& all_sockets()
{
return *s_list;
}
@ -69,8 +69,10 @@ KResultOr<SocketPair> LocalSocket::create_connected_pair(int type)
LocalSocket::LocalSocket(int type)
: Socket(AF_LOCAL, type, 0)
{
Locker locker(all_sockets().lock());
all_sockets().resource().append(this);
{
Locker locker(all_sockets().lock());
all_sockets().resource().append(*this);
}
auto current_process = Process::current();
m_prebind_uid = current_process->euid();
@ -90,7 +92,7 @@ LocalSocket::LocalSocket(int type)
LocalSocket::~LocalSocket()
{
Locker locker(all_sockets().lock());
all_sockets().resource().remove(this);
all_sockets().resource().remove(*this);
}
void LocalSocket::get_local_address(sockaddr* address, socklen_t* address_size)