Sophie

Sophie

distrib > Mandriva > cooker > i586 > by-pkgid > 2aa8650c4c271c109084393b71584169 > files > 20

dhcp-forwarder-debug-0.8-3mdv2011.0.i586.rpm

// Copyright (C) 2002, 2008
//               Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; version 3 of the License.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see http://www.gnu.org/licenses/.

#ifndef ensc_DHCP_FORWARDER_ULIMIT_H_I_KNOW_WHAT_I_DO
#  error ulimit_codes.h can not be used in this way
#endif

static
struct {
    /*@observer@*/
    char	*name;
    int		code;
} const  ULIMIT_CODES[] =
{
  { "stack",   RLIMIT_STACK },
  { "data",    RLIMIT_DATA },
  { "core",    RLIMIT_CORE },
  { "rss",     RLIMIT_RSS },
  { "nproc",   RLIMIT_NPROC },
  { "nofile",  RLIMIT_NOFILE },
  { "memlock", RLIMIT_MEMLOCK },
  { "as",      RLIMIT_AS }
#ifdef RLIMIT_LOCKS
  , { "locks",   RLIMIT_LOCKS }
#else
#  warning RLIMIT_LOCKS limit not set
#endif
};

#undef ensc_DHCP_FORWARDER_ULIMIT_H_I_KNOW_WHAT_I_DO