Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/AnonR/smanonr..../usr/include/bits
File: local_lim.h
/* Minimum guaranteed maximum values for system limits. Linux version.
[0] Fix | Delete
Copyright (C) 1993-2018 Free Software Foundation, Inc.
[1] Fix | Delete
This file is part of the GNU C Library.
[2] Fix | Delete
[3] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[4] Fix | Delete
modify it under the terms of the GNU Lesser General Public License as
[5] Fix | Delete
published by the Free Software Foundation; either version 2.1 of the
[6] Fix | Delete
License, or (at your option) any later version.
[7] Fix | Delete
[8] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[9] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[10] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[11] Fix | Delete
Lesser General Public License for more details.
[12] Fix | Delete
[13] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[14] Fix | Delete
License along with the GNU C Library; see the file COPYING.LIB. If
[15] Fix | Delete
not, see <http://www.gnu.org/licenses/>. */
[16] Fix | Delete
[17] Fix | Delete
/* The kernel header pollutes the namespace with the NR_OPEN symbol
[18] Fix | Delete
and defines LINK_MAX although filesystems have different maxima. A
[19] Fix | Delete
similar thing is true for OPEN_MAX: the limit can be changed at
[20] Fix | Delete
runtime and therefore the macro must not be defined. Remove this
[21] Fix | Delete
after including the header if necessary. */
[22] Fix | Delete
#ifndef NR_OPEN
[23] Fix | Delete
# define __undef_NR_OPEN
[24] Fix | Delete
#endif
[25] Fix | Delete
#ifndef LINK_MAX
[26] Fix | Delete
# define __undef_LINK_MAX
[27] Fix | Delete
#endif
[28] Fix | Delete
#ifndef OPEN_MAX
[29] Fix | Delete
# define __undef_OPEN_MAX
[30] Fix | Delete
#endif
[31] Fix | Delete
#ifndef ARG_MAX
[32] Fix | Delete
# define __undef_ARG_MAX
[33] Fix | Delete
#endif
[34] Fix | Delete
[35] Fix | Delete
/* The kernel sources contain a file with all the needed information. */
[36] Fix | Delete
#include <linux/limits.h>
[37] Fix | Delete
[38] Fix | Delete
/* Have to remove NR_OPEN? */
[39] Fix | Delete
#ifdef __undef_NR_OPEN
[40] Fix | Delete
# undef NR_OPEN
[41] Fix | Delete
# undef __undef_NR_OPEN
[42] Fix | Delete
#endif
[43] Fix | Delete
/* Have to remove LINK_MAX? */
[44] Fix | Delete
#ifdef __undef_LINK_MAX
[45] Fix | Delete
# undef LINK_MAX
[46] Fix | Delete
# undef __undef_LINK_MAX
[47] Fix | Delete
#endif
[48] Fix | Delete
/* Have to remove OPEN_MAX? */
[49] Fix | Delete
#ifdef __undef_OPEN_MAX
[50] Fix | Delete
# undef OPEN_MAX
[51] Fix | Delete
# undef __undef_OPEN_MAX
[52] Fix | Delete
#endif
[53] Fix | Delete
/* Have to remove ARG_MAX? */
[54] Fix | Delete
#ifdef __undef_ARG_MAX
[55] Fix | Delete
# undef ARG_MAX
[56] Fix | Delete
# undef __undef_ARG_MAX
[57] Fix | Delete
#endif
[58] Fix | Delete
[59] Fix | Delete
/* The number of data keys per process. */
[60] Fix | Delete
#define _POSIX_THREAD_KEYS_MAX 128
[61] Fix | Delete
/* This is the value this implementation supports. */
[62] Fix | Delete
#define PTHREAD_KEYS_MAX 1024
[63] Fix | Delete
[64] Fix | Delete
/* Controlling the iterations of destructors for thread-specific data. */
[65] Fix | Delete
#define _POSIX_THREAD_DESTRUCTOR_ITERATIONS 4
[66] Fix | Delete
/* Number of iterations this implementation does. */
[67] Fix | Delete
#define PTHREAD_DESTRUCTOR_ITERATIONS _POSIX_THREAD_DESTRUCTOR_ITERATIONS
[68] Fix | Delete
[69] Fix | Delete
/* The number of threads per process. */
[70] Fix | Delete
#define _POSIX_THREAD_THREADS_MAX 64
[71] Fix | Delete
/* We have no predefined limit on the number of threads. */
[72] Fix | Delete
#undef PTHREAD_THREADS_MAX
[73] Fix | Delete
[74] Fix | Delete
/* Maximum amount by which a process can descrease its asynchronous I/O
[75] Fix | Delete
priority level. */
[76] Fix | Delete
#define AIO_PRIO_DELTA_MAX 20
[77] Fix | Delete
[78] Fix | Delete
/* Minimum size for a thread. We are free to choose a reasonable value. */
[79] Fix | Delete
#define PTHREAD_STACK_MIN 16384
[80] Fix | Delete
[81] Fix | Delete
/* Maximum number of timer expiration overruns. */
[82] Fix | Delete
#define DELAYTIMER_MAX 2147483647
[83] Fix | Delete
[84] Fix | Delete
/* Maximum tty name length. */
[85] Fix | Delete
#define TTY_NAME_MAX 32
[86] Fix | Delete
[87] Fix | Delete
/* Maximum login name length. This is arbitrary. */
[88] Fix | Delete
#define LOGIN_NAME_MAX 256
[89] Fix | Delete
[90] Fix | Delete
/* Maximum host name length. */
[91] Fix | Delete
#define HOST_NAME_MAX 64
[92] Fix | Delete
[93] Fix | Delete
/* Maximum message queue priority level. */
[94] Fix | Delete
#define MQ_PRIO_MAX 32768
[95] Fix | Delete
[96] Fix | Delete
/* Maximum value the semaphore can have. */
[97] Fix | Delete
#define SEM_VALUE_MAX (2147483647)
[98] Fix | Delete
[99] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function