Kernel: Use shared locking mode in some places

The notable piece of code that remains to be converted is Ext2FS.
This commit is contained in:
Sergey Bugaev 2020-04-18 12:50:35 +03:00 committed by Andreas Kling
commit 54550365eb
Notes: sideshowbarker 2024-07-19 07:30:46 +09:00
11 changed files with 26 additions and 26 deletions

View file

@ -36,7 +36,7 @@ public:
virtual ~UDPSocket() override;
static SocketHandle<UDPSocket> from_port(u16);
static void for_each(Function<void(UDPSocket&)>);
static void for_each(Function<void(const UDPSocket&)>);
private:
explicit UDPSocket(int protocol);