ulimit.h revision 101497
157693Sjmas/*-
257693Sjmas * Copyright (c) 2002 Kyle Martin <mkm@ieee.org>
357693Sjmas * All rights reserved.
457693Sjmas *
557693Sjmas * Redistribution and use in source and binary forms, with or without
657693Sjmas * modification, are permitted provided that the following conditions
757693Sjmas * are met:
857693Sjmas * 1. Redistributions of source code must retain the above copyright
957693Sjmas *    notice, this list of conditions and the following disclaimer.
10270114Sse * 2. Redistributions in binary form must reproduce the above copyright
1157693Sjmas *    notice, this list of conditions and the following disclaimer in the
1257693Sjmas *    documentation and/or other materials provided with the distribution.
13270114Sse *
1457693Sjmas * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1557693Sjmas * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1657693Sjmas * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1757693Sjmas * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1857693Sjmas * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19270114Sse * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2057693Sjmas * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2157693Sjmas * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2257693Sjmas * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2357693Sjmas * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24270114Sse * SUCH DAMAGE.
2557693Sjmas *
2657693Sjmas * $FreeBSD: head/include/ulimit.h 101497 2002-08-08 04:50:36Z mike $
2757693Sjmas */
28270114Sse
29270114Sse#ifndef _ULIMIT_H_
30270114Sse#define	_ULIMIT_H_
3157693Sjmas
3257693Sjmas#define	UL_GETSIZE	1
3357693Sjmas#define	UL_SETSIZE	2
3457693Sjmas
3557693Sjmaslong	ulimit(int, ...);
36270114Sse
3757693Sjmas#endif /* !_ULIMIT_H_ */
3857693Sjmas