]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/sys/resource.h
xnu-792.13.8.tar.gz
[apple/xnu.git] / bsd / sys / resource.h
index 1087aa342dcef55d5ae2bf8d237aa65730883c2f..392c140f248458488952aeeb2bcabafa1ec0f991 100644 (file)
@@ -1,23 +1,31 @@
 /*
- * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
  *
- * @APPLE_LICENSE_HEADER_START@
+ * @APPLE_LICENSE_OSREFERENCE_HEADER_START@
  * 
- * The contents of this file constitute Original Code as defined in and
- * are subject to the Apple Public Source License Version 1.1 (the
- * "License").  You may not use this file except in compliance with the
- * License.  Please obtain a copy of the License at
- * http://www.apple.com/publicsource and read it before using this file.
- * 
- * This Original Code and all software distributed under the License are
- * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
- * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
- * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT.  Please see the
- * License for the specific language governing rights and limitations
- * under the License.
- * 
- * @APPLE_LICENSE_HEADER_END@
+ * This file contains Original Code and/or Modifications of Original Code 
+ * as defined in and that are subject to the Apple Public Source License 
+ * Version 2.0 (the 'License'). You may not use this file except in 
+ * compliance with the License.  The rights granted to you under the 
+ * License may not be used to create, or enable the creation or 
+ * redistribution of, unlawful or unlicensed copies of an Apple operating 
+ * system, or to circumvent, violate, or enable the circumvention or 
+ * violation of, any terms of an Apple operating system software license 
+ * agreement.
+ *
+ * Please obtain a copy of the License at 
+ * http://www.opensource.apple.com/apsl/ and read it before using this 
+ * file.
+ *
+ * The Original Code and all software distributed under the License are 
+ * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
+ * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
+ * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 
+ * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
+ * Please see the License for the specific language governing rights and 
+ * limitations under the License.
+ *
+ * @APPLE_LICENSE_OSREFERENCE_HEADER_END@
  */
 /* Copyright (c) 1995 NeXT Computer, Inc. All Rights Reserved */
 /*
 #ifndef _SYS_RESOURCE_H_
 #define        _SYS_RESOURCE_H_
 
+#include <sys/appleapiopts.h>
+#include <sys/cdefs.h>
+#include <sys/_types.h>
+
+
+/* [XSI] The timeval structure shall be defined as described in
+ * <sys/time.h>
+ *
+ * NB: We use __darwin_time_t and __darwin_suseconds_t here to avoid
+ * improperly exposing time_t and suseconds_t into the namespace.
+ */
+#ifndef _TIMEVAL
+#define _TIMEVAL
+struct timeval {
+       __darwin_time_t         tv_sec;         /* seconds */
+       __darwin_suseconds_t    tv_usec;        /* and microseconds */
+};
+#endif
+
+/* The id_t type shall be defined as described in <sys/types.h> */
+#ifndef _ID_T
+#define _ID_T
+typedef __darwin_id_t  id_t;           /* can hold pid_t, gid_t, or uid_t */
+#endif
+
+
 /*
- * Process priority specifications to get/setpriority.
+ * Resource limit type (low 63 bits, excluding the sign bit)
+ */
+typedef __int64_t      rlim_t;
+
+
+/*****
+ * PRIORITY
+ */
+
+/*
+ * Possible values of the first parameter to getpriority()/setpriority(),
+ * used to indicate the type of the second parameter.
+ */
+#define        PRIO_PROCESS    0               /* Second argument is a PID */
+#define        PRIO_PGRP       1               /* Second argument is a GID */
+#define        PRIO_USER       2               /* Second argument is a UID */
+
+#ifndef _POSIX_C_SOURCE
+/*
+ * Range limitations for the value of the third parameter to setpriority().
  */
 #define        PRIO_MIN        -20
 #define        PRIO_MAX        20
+#endif /* !_POSIX_C_SOURCE */
 
-#define        PRIO_PROCESS    0
-#define        PRIO_PGRP       1
-#define        PRIO_USER       2
 
-/*
- * Resource utilization information.
+
+/*****
+ * RESOURCE USAGE
  */
 
-#define        RUSAGE_SELF     0
-#define        RUSAGE_CHILDREN -1
+/*
+ * Possible values of the first parameter to getrusage(), used to indicate
+ * the scope of the information to be returned.
+ */
+#define        RUSAGE_SELF     0               /* Current process information */
+#define        RUSAGE_CHILDREN -1              /* Current process' children */
 
+/*
+ * A structure representing an accounting of resource utilization.  The
+ * address of an instance of this structure is the second parameter to
+ * getrusage().
+ *
+ * Note: All values other than ru_utime and ru_stime are implementaiton
+ *       defined and subject to change in a future release.  Their use
+ *       is discouraged for standards compliant programs.
+ */
 struct rusage {
        struct timeval ru_utime;        /* user time used */
        struct timeval ru_stime;        /* system time used */
+#ifdef _POSIX_C_SOURCE
+       long    ru_opaque[14];          /* implementation defined */
+#else  /* !_POSIX_C_SOURCE */
+       /*
+        * Informational aliases for source compatibility with programs
+        * that need more information than that provided by standards,
+        * and which do not mind being OS-dependent.
+        */
        long    ru_maxrss;              /* max resident set size */
-#define        ru_first        ru_ixrss
+#define        ru_first        ru_ixrss        /* internal: ruadd() range start */
        long    ru_ixrss;               /* integral shared memory size */
        long    ru_idrss;               /* integral unshared data " */
        long    ru_isrss;               /* integral unshared stack " */
@@ -93,55 +166,99 @@ struct     rusage {
        long    ru_nsignals;            /* signals received */
        long    ru_nvcsw;               /* voluntary context switches */
        long    ru_nivcsw;              /* involuntary " */
-#define        ru_last         ru_nivcsw
+#define        ru_last         ru_nivcsw       /* internal: ruadd() range end */
+#endif /* !_POSIX_C_SOURCE */
+};
+
+
+
+// LP64todo - should this move?
+#ifdef KERNEL
+#include <machine/types.h>     /* user_time_t */
+
+/* LP64 version of struct timeval.  time_t is a long and must grow when 
+ * we're dealing with a 64-bit process.
+ * WARNING - keep in sync with struct timeval
+ */
+
+struct user_rusage_timeval {
+       user_time_t             tv_sec;         /* seconds */
+       __darwin_suseconds_t    tv_usec __attribute((aligned(8)));      /* and microseconds */
+};     
+struct user_rusage {
+       struct user_rusage_timeval ru_utime;    /* user time used */
+       struct user_rusage_timeval ru_stime;    /* system time used */
+       user_long_t     ru_maxrss;              /* max resident set size */
+       user_long_t     ru_ixrss;               /* integral shared memory size */
+       user_long_t     ru_idrss;               /* integral unshared data " */
+       user_long_t     ru_isrss;               /* integral unshared stack " */
+       user_long_t     ru_minflt;              /* page reclaims */
+       user_long_t     ru_majflt;              /* page faults */
+       user_long_t     ru_nswap;               /* swaps */
+       user_long_t     ru_inblock;             /* block input operations */
+       user_long_t     ru_oublock;             /* block output operations */
+       user_long_t     ru_msgsnd;              /* messages sent */
+       user_long_t     ru_msgrcv;              /* messages received */
+       user_long_t     ru_nsignals;    /* signals received */
+       user_long_t     ru_nvcsw;               /* voluntary context switches */
+       user_long_t     ru_nivcsw;              /* involuntary " */
 };
 
+#endif // KERNEL
+
+
+/*****
+ * RESOURCE LIMITS
+ */
+
+/*
+ * Symbolic constants for resource limits; since all limits are representable
+ * as a type rlim_t, we are permitted to define RLIM_SAVED_* in terms of
+ * RLIM_INFINITY.
+ */
+#define        RLIM_INFINITY   (((__uint64_t)1 << 63) - 1)     /* no limit */
+#define        RLIM_SAVED_MAX  RLIM_INFINITY   /* Unrepresentable hard limit */
+#define        RLIM_SAVED_CUR  RLIM_INFINITY   /* Unrepresentable soft limit */
+
 /*
- * Resource limits
+ * Possible values of the first parameter to getrlimit()/setrlimit(), to
+ * indicate for which resource the operation is being performed.
  */
-#define        RLIMIT_CPU      0               /* cpu time in milliseconds */
-#define        RLIMIT_FSIZE    1               /* maximum file size */
-#define        RLIMIT_DATA     2               /* data size */
+#define        RLIMIT_CPU      0               /* cpu time per process, in ms */
+#define        RLIMIT_FSIZE    1               /* file size */
+#define        RLIMIT_DATA     2               /* data segment size */
 #define        RLIMIT_STACK    3               /* stack size */
 #define        RLIMIT_CORE     4               /* core file size */
-#define        RLIMIT_RSS      5               /* resident set size */
+#define        RLIMIT_AS       5               /* address space (resident set size) */
+#ifndef _POSIX_C_SOURCE
+#define        RLIMIT_RSS      RLIMIT_AS       /* source compatibility alias */
 #define        RLIMIT_MEMLOCK  6               /* locked-in-memory address space */
 #define        RLIMIT_NPROC    7               /* number of processes */
+#endif /* !_POSIX_C_SOURCE */
 #define        RLIMIT_NOFILE   8               /* number of open files */
+#ifndef _POSIX_C_SOURCE
+#define        RLIM_NLIMITS    9               /* total number of resource limits */
+#endif /* !_POSIX_C_SOURCE */
 
-#define        RLIM_NLIMITS    9               /* number of resource limits */
-
-#define        RLIM_INFINITY   (((u_quad_t)1 << 63) - 1)
-
-struct orlimit {
-       int32_t rlim_cur;               /* current (soft) limit */
-       int32_t rlim_max;               /* maximum value for rlim_cur */
-};
-
+/*
+ * A structure representing a resource limit.  The address of an instance
+ * of this structure is the second parameter to getrlimit()/setrlimit().
+ */
 struct rlimit {
        rlim_t  rlim_cur;               /* current (soft) limit */
        rlim_t  rlim_max;               /* maximum value for rlim_cur */
 };
 
-/* Load average structure. */
-struct loadavg {
-       fixpt_t ldavg[3];
-       long    fscale;
-};
 
-#ifdef KERNEL
-extern struct loadavg averunnable;
-#define LSCALE 1000            /* scaling for "fixed point" arithmetic */
-#else
-#include <sys/cdefs.h>
+#ifndef KERNEL
 
 __BEGIN_DECLS
-int    getpriority __P((int, int));
-int    getrlimit __P((int, struct rlimit *));
-int    getrusage __P((int, struct rusage *));
-int    setpriority __P((int, int, int));
-int    setrlimit __P((int, const struct rlimit *));
+int    getpriority(int, id_t);
+int    getrlimit(int, struct rlimit *);
+int    getrusage(int, struct rusage *);
+int    setpriority(int, id_t, int);
+int    setrlimit(int, const struct rlimit *);
 __END_DECLS
 
-#endif /* KERNEL */
+#endif /* !KERNEL */
 #endif /* !_SYS_RESOURCE_H_ */