Kernel: Increment the maximum number of file descriptors a task can have

Doesn't use up more space in the Task structure, and now we are above the Minimum Acceptable Value as defined by POSIX (20), I think.
This commit is contained in:
apio 2022-10-15 14:20:29 +02:00
parent f50017912d
commit 4bad782aad

View File

@ -4,7 +4,7 @@
#include "memory/AddressSpace.h"
#include "sys/elf/Image.h"
#define TASK_MAX_FDS 8
#define TASK_MAX_FDS 32
struct Task
{