mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-14 15:25:23 +01:00
8 lines
231 B
C
Executable file
8 lines
231 B
C
Executable file
/* SPDX-FileCopyrightText: 2024 Richard Masters <grick23@gmail.com> */
|
|
/* SPDX-License-Identifier: MIT */
|
|
#undef CHILD_MAX
|
|
#define CHILD_MAX 4096
|
|
#undef OPEN_MAX
|
|
#define OPEN_MAX 1536
|
|
#undef FD_SETSIZE
|
|
#define FD_SETSIZE OPEN_MAX
|