Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ExeBy/exe_root.../usr/include/sys
File: vlimit.h
/* Copyright (C) 1991-2018 Free Software Foundation, Inc.
[0] Fix | Delete
This file is part of the GNU C Library.
[1] Fix | Delete
[2] Fix | Delete
The GNU C Library is free software; you can redistribute it and/or
[3] Fix | Delete
modify it under the terms of the GNU Lesser General Public
[4] Fix | Delete
License as published by the Free Software Foundation; either
[5] Fix | Delete
version 2.1 of the License, or (at your option) any later version.
[6] Fix | Delete
[7] Fix | Delete
The GNU C Library is distributed in the hope that it will be useful,
[8] Fix | Delete
but WITHOUT ANY WARRANTY; without even the implied warranty of
[9] Fix | Delete
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
[10] Fix | Delete
Lesser General Public License for more details.
[11] Fix | Delete
[12] Fix | Delete
You should have received a copy of the GNU Lesser General Public
[13] Fix | Delete
License along with the GNU C Library; if not, see
[14] Fix | Delete
<http://www.gnu.org/licenses/>. */
[15] Fix | Delete
[16] Fix | Delete
#ifndef _SYS_VLIMIT_H
[17] Fix | Delete
#define _SYS_VLIMIT_H 1
[18] Fix | Delete
[19] Fix | Delete
#include <features.h>
[20] Fix | Delete
[21] Fix | Delete
__BEGIN_DECLS
[22] Fix | Delete
[23] Fix | Delete
/* This interface is obsolete, and is superseded by <sys/resource.h>. */
[24] Fix | Delete
[25] Fix | Delete
/* Kinds of resource limit. */
[26] Fix | Delete
enum __vlimit_resource
[27] Fix | Delete
{
[28] Fix | Delete
/* Setting this non-zero makes it impossible to raise limits.
[29] Fix | Delete
Only the super-use can set it to zero.
[30] Fix | Delete
[31] Fix | Delete
This is not implemented in recent versions of BSD, nor by
[32] Fix | Delete
the GNU C library. */
[33] Fix | Delete
LIM_NORAISE,
[34] Fix | Delete
[35] Fix | Delete
/* CPU time available for each process (seconds). */
[36] Fix | Delete
LIM_CPU,
[37] Fix | Delete
[38] Fix | Delete
/* Largest file which can be created (bytes). */
[39] Fix | Delete
LIM_FSIZE,
[40] Fix | Delete
[41] Fix | Delete
/* Maximum size of the data segment (bytes). */
[42] Fix | Delete
LIM_DATA,
[43] Fix | Delete
[44] Fix | Delete
/* Maximum size of the stack segment (bytes). */
[45] Fix | Delete
LIM_STACK,
[46] Fix | Delete
[47] Fix | Delete
/* Largest core file that will be created (bytes). */
[48] Fix | Delete
LIM_CORE,
[49] Fix | Delete
[50] Fix | Delete
/* Resident set size (bytes). */
[51] Fix | Delete
LIM_MAXRSS
[52] Fix | Delete
};
[53] Fix | Delete
[54] Fix | Delete
/* This means no limit. */
[55] Fix | Delete
#define INFINITY 0x7fffffff
[56] Fix | Delete
[57] Fix | Delete
[58] Fix | Delete
/* Set the soft limit for RESOURCE to be VALUE.
[59] Fix | Delete
Returns 0 for success, -1 for failure. */
[60] Fix | Delete
extern int vlimit (enum __vlimit_resource __resource, int __value) __THROW;
[61] Fix | Delete
[62] Fix | Delete
[63] Fix | Delete
__END_DECLS
[64] Fix | Delete
[65] Fix | Delete
#endif /* sys/vlimit.h */
[66] Fix | Delete
[67] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function