Kernel: Bump per-process file descriptor limit to 128.

This commit is contained in:
Andreas Kling 2019-04-03 23:48:59 +02:00
parent f1c5ee2c10
commit ea801a99dc

View file

@ -286,7 +286,7 @@ private:
Vector<FileDescriptorAndFlags> m_fds;
RingLevel m_ring { Ring0 };
int m_max_open_file_descriptors { 16 };
int m_max_open_file_descriptors { 128 };
byte m_termination_status { 0 };
byte m_termination_signal { 0 };