Search:
Login
Preferences
Help/Guide
About Trac
Wiki
Timeline
Roadmap
Browse Source
View Tickets
Search
Context Navigation
← Previous Revision
Latest Revision
Next Revision
→
Blame
Revision Log
source:
trunk
/
src
/
emx
/
src
/
lib
/
misc
/
ulimit.c
@
18
View diff against:
View revision:
Visit:
trunk
branches/BINUTILS_2-11-2_BRANCH
branches/GCC_3-2-2_BETA4_BRANCH
branches/GCC_3-2-2_BRANCH
branches/libc-0.6
tags/GCC-3-2-2_ALPHA2
tags/GCC_3-2-2_BETA1
tags/GCC_3-2-2_BETA2
tags/GCC_3-2-2_BETA3
tags/GCC_3-2-2_BETA4
tags/GCC_3-2-2_BETA4_CSD1
tags/GCC_3-3-3_UNRELEASED
tags/GCC_3-3-4_ALPHA2
tags/GCC_3-3-5_ALPHA3
tags/GCC_3-3-5_BETA5
tags/GCC_3-3-5_RC1
tags/LIBC-0.6.1
tags/LIBC-0.6.3
tags/LIBC-0.6.4
tags/LIBC-0.6.5
tags/LIBC-0.6.6
tags/LIBC_PREFORK
tags/LIBC_PRESIGNALS
Last change
on this file since 18 was
18
, checked in by
bird
,
23 years ago
Initial revision
Property
cvs2svn:cvs-rev
set to
1.1
Property
svn:eol-style
set to
native
Property
svn:executable
set to
*
File size:
653 bytes
Line
1
/* ulimit.c (emx+gcc) -- Copyright (c) 1990-1996 by Eberhard Mattes */
2
3
#include
<stdarg.h>
4
#include
<stdlib.h>
5
#include
<ulimit.h>
6
#include
<errno.h>
7
#include
<emx/syscalls.h>
8
9
long
_ulimit
(
int
cmd
,
...)
10
{
11
va_list
arg_ptr
;
12
long
newlimit
;
13
14
switch
(
cmd
)