mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
This commit applies various accumulated bugfixes: - Applied some fixes for compiler warnings based off of the following pull requests (with whitespace changes excluded to avoid inflating the size of the diff): https://github.com/att/ast/pull/281 https://github.com/att/ast/pull/283 https://github.com/att/ast/pull/303 https://github.com/att/ast/pull/304 - clone_type(): Two separate variables in this function share the same name. A bugfix from ksh93v- 2013-05-24 was backported to avoid conflict issues. - Backported a minor error message improvement from ksh2020 for when the user attempts to run too many coprocesses. - Backported a ksh2020 bugfix for a file descriptor leak:58bc8b56- Backported ksh2020 bugfixes for unused variable and pointless assignment lint warnings:47650fe0df209c0d5e417b00- Applied a few minor improvements to libast from graphviz:e7c03541969a7cde- dtmemory(): Mark unused parameters with NOT_USED(). Based on:6ac3ad99- Applied a few documentation/comment tweaks for the NEWS file, printf -v and spawnveg. - Added a missing regression test for using the rm builtin's -f option without additional arguments (this was fixed in ksh93u+ 2012-02-14).
184 lines
4.9 KiB
C
184 lines
4.9 KiB
C
/***********************************************************************
|
|
* *
|
|
* This software is part of the ast package *
|
|
* Copyright (c) 1982-2012 AT&T Intellectual Property *
|
|
* Copyright (c) 2020-2022 Contributors to ksh 93u+m *
|
|
* and is licensed under the *
|
|
* Eclipse Public License, Version 1.0 *
|
|
* by AT&T Intellectual Property *
|
|
* *
|
|
* A copy of the License is available at *
|
|
* http://www.eclipse.org/org/documents/epl-v10.html *
|
|
* (with md5 checksum b35adb5213ca9657e911e9befb180842) *
|
|
* *
|
|
* Information and Software Systems Research *
|
|
* AT&T Research *
|
|
* Florham Park NJ *
|
|
* *
|
|
* David Korn <dgk@research.att.com> *
|
|
* *
|
|
***********************************************************************/
|
|
#ifndef _ULIMIT_H
|
|
#define _ULIMIT_H 1
|
|
/*
|
|
* This is for the ulimit built-in command
|
|
*/
|
|
|
|
#include "FEATURE/time"
|
|
#include "FEATURE/rlimits"
|
|
#if defined(_sys_resource) && defined(_lib_getrlimit)
|
|
# include <sys/resource.h>
|
|
# if !defined(RLIMIT_FSIZE) && defined(_sys_vlimit)
|
|
/* This handles HP-UX problem */
|
|
# include <sys/vlimit.h>
|
|
# define RLIMIT_FSIZE (LIM_FSIZE-1)
|
|
# define RLIMIT_DATA (LIM_DATA-1)
|
|
# define RLIMIT_STACK (LIM_STACK-1)
|
|
# define RLIMIT_CORE (LIM_CORE-1)
|
|
# define RLIMIT_CPU (LIM_CPU-1)
|
|
# ifdef LIM_MAXRSS
|
|
# define RLIMIT_RSS (LIM_MAXRSS-1)
|
|
# endif /* LIM_MAXRSS */
|
|
# endif
|
|
# undef _lib_ulimit
|
|
#else
|
|
# ifdef _sys_vlimit
|
|
# include <sys/vlimit.h>
|
|
# undef _lib_ulimit
|
|
# define RLIMIT_FSIZE LIM_FSIZE
|
|
# define RLIMIT_DATA LIM_DATA
|
|
# define RLIMIT_STACK LIM_STACK
|
|
# define RLIMIT_CORE LIM_CORE
|
|
# define RLIMIT_CPU LIM_CPU
|
|
# ifdef LIM_MAXRSS
|
|
# define RLIMIT_RSS LIM_MAXRSS
|
|
# endif /* LIM_MAXRSS */
|
|
# else
|
|
# ifdef _lib_ulimit
|
|
# define vlimit ulimit
|
|
# endif /* _lib_ulimit */
|
|
# endif /* _lib_vlimit */
|
|
#endif
|
|
|
|
#ifdef RLIM_INFINITY
|
|
# define INFINITY RLIM_INFINITY
|
|
#else
|
|
# ifndef INFINITY
|
|
# define INFINITY ((rlim_t)-1L)
|
|
# endif /* INFINITY */
|
|
#endif /* RLIM_INFINITY */
|
|
|
|
#if defined(_lib_getrlimit) || defined(_lib_vlimit) || defined(_lib_ulimit)
|
|
# ifndef RLIMIT_VMEM
|
|
# ifdef RLIMIT_AS
|
|
# define RLIMIT_VMEM RLIMIT_AS
|
|
# endif
|
|
# endif /* !RLIMIT_VMEM */
|
|
#else
|
|
# define _no_ulimit
|
|
#endif
|
|
#ifndef _typ_rlim_t
|
|
typedef long rlim_t;
|
|
#endif
|
|
|
|
#if !defined(RLIMIT_NOFILE) && defined(RLIMIT_OFILE)
|
|
#define RLIMIT_NOFILE RLIMIT_OFILE
|
|
#endif
|
|
|
|
#ifndef RLIMIT_UNKNOWN
|
|
#define RLIMIT_UNKNOWN (-9999)
|
|
#endif
|
|
#ifndef RLIMIT_AS
|
|
#define RLIMIT_AS RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_CORE
|
|
#define RLIMIT_CORE RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_CPU
|
|
#define RLIMIT_CPU RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_DATA
|
|
#define RLIMIT_DATA RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_FSIZE
|
|
#define RLIMIT_FSIZE RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_KQUEUES
|
|
#define RLIMIT_KQUEUES RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_LOCKS
|
|
#define RLIMIT_LOCKS RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_MEMLOCK
|
|
#define RLIMIT_MEMLOCK RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_MSGQUEUE
|
|
#define RLIMIT_MSGQUEUE RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_NOFILE
|
|
#define RLIMIT_NOFILE RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_NICE
|
|
#define RLIMIT_NICE RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_NPROC
|
|
#define RLIMIT_NPROC RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_NPTS
|
|
#define RLIMIT_NPTS RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_PIPE
|
|
#define RLIMIT_PIPE RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_PTHREAD
|
|
#define RLIMIT_PTHREAD RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_RSS
|
|
#define RLIMIT_RSS RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_RTPRIO
|
|
#define RLIMIT_RTPRIO RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_RTTIME
|
|
#define RLIMIT_RTTIME RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_SBSIZE
|
|
#define RLIMIT_SBSIZE RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_SIGPENDING
|
|
#define RLIMIT_SIGPENDING RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_STACK
|
|
#define RLIMIT_STACK RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_SWAP
|
|
#define RLIMIT_SWAP RLIMIT_UNKNOWN
|
|
#endif
|
|
#ifndef RLIMIT_VMEM
|
|
#define RLIMIT_VMEM RLIMIT_UNKNOWN
|
|
#endif
|
|
|
|
#define LIM_COUNT 0
|
|
#define LIM_BLOCK 1
|
|
#define LIM_BYTE 2
|
|
#define LIM_KBYTE 3
|
|
#define LIM_SECOND 4
|
|
#define LIM_MICROSECOND 5
|
|
|
|
typedef struct Limit_s
|
|
{
|
|
const char* name;
|
|
const char* description;
|
|
int index;
|
|
const char* conf;
|
|
unsigned char option;
|
|
unsigned char type;
|
|
} Limit_t;
|
|
|
|
extern const Limit_t shtab_limits[];
|
|
extern const int shtab_units[];
|
|
|
|
extern const char e_unlimited[];
|
|
extern const char* e_units[];
|
|
|
|
#endif /* _ULIMIT_H */
|