mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
2.8 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/base/dietlibc/ulimit_h.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or
  14. # (at your option) any later version. A copy of the GNU General Public
  15. # License can be found at Documentation/COPYING.
  16. #
  17. # Many people helped and are helping developing ROCK Linux. Please
  18. # have a look at http://www.rocklinux.org/ and the Documentation/TEAM
  19. # file for details.
  20. #
  21. # --- ROCK-COPYRIGHT-NOTE-END ---
  22. needed by sysvinit
  23. --- ./include/ulimit.h.orig Wed Jul 31 00:06:08 2002
  24. +++ ./include/ulimit.h Wed Jul 31 00:05:59 2002
  25. @@ -0,0 +1,48 @@
  26. +/* Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
  27. + This file is part of the GNU C Library.
  28. +
  29. + The GNU C Library is free software; you can redistribute it and/or
  30. + modify it under the terms of the GNU Lesser General Public
  31. + License as published by the Free Software Foundation; either
  32. + version 2.1 of the License, or (at your option) any later version.
  33. +
  34. + The GNU C Library is distributed in the hope that it will be useful,
  35. + but WITHOUT ANY WARRANTY; without even the implied warranty of
  36. + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  37. + Lesser General Public License for more details.
  38. +
  39. + You should have received a copy of the GNU Lesser General Public
  40. + License along with the GNU C Library; if not, write to the Free
  41. + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
  42. + 02111-1307 USA. */
  43. +
  44. +#ifndef _ULIMIT_H
  45. +#define _ULIMIT_H 1
  46. +
  47. +#include <features.h>
  48. +
  49. +/* Constants used as the first parameter for `ulimit'. They denote limits
  50. + which can be set or retrieved using this function. */
  51. +enum
  52. +{
  53. + UL_GETFSIZE = 1, /* Return limit on the size of a file,
  54. + in units of 512 bytes. */
  55. +#define UL_GETFSIZE UL_GETFSIZE
  56. + UL_SETFSIZE, /* Set limit on the size of a file to
  57. + second argument. */
  58. +#define UL_SETFSIZE UL_SETFSIZE
  59. + __UL_GETMAXBRK, /* Return the maximum possible address
  60. + of the data segment. */
  61. + __UL_GETOPENMAX /* Return the maximum number of files
  62. + that the calling process can open.*/
  63. +};
  64. +
  65. +
  66. +__BEGIN_DECLS
  67. +
  68. +/* Control process limits according to CMD. */
  69. +extern long int ulimit (int __cmd, ...) __THROW;
  70. +
  71. +__END_DECLS
  72. +
  73. +#endif /* ulimit.h */