aboutsummaryrefslograw-logtreecommitdiffstats up
diff options
context:
space:
mode:
authorChristos Zoulas <christos@zoulas.com>2026-01-26 16:15:38 +0000
committerChristos Zoulas <christos@zoulas.com>2026-01-26 16:15:38 +0000
commit626e47612a42d769d6082eef4f43fafd0da84d83 (patch) (diff)
tree1538be9624169272788e4d273696b6f3de194859
downloadtcsh-master.tar.gz
 
previous commitec558d739eb81754af111958b0715e02f826a69f (Fix nls error message (Corinna Vinschen))
Handle RLIMIT_AS on Cygwin (Corinna Vinschen) HEADmaster
-rw-r--r--Fixes[diff] [file]1
-rw-r--r--sh.func.c[diff] [file]2
2 files changed, 2 insertions, 1 deletions
diff --git a/Fixes b/Fixes
index 0d4f365..d663508 100644
--- a/Fixes
+++ b/Fixes
@@ -1,3 +1,4 @@
+ 47. Handle RLIMIT_AS on Cygwin (Corinna Vinschen)
46. Fix nls error message (Corinna Vinschen)
45. Typo fixes (spaette)
44. V6.24.16 - 2025-07-09
diff --git a/sh.func.c b/sh.func.c
index 413bcb0..6455e33 100644
--- a/sh.func.c
+++ b/sh.func.c
@@ -1859,7 +1859,7 @@ doumask(Char **v, struct command *c)
# endif
# endif /* SYSVREL > 3 && BSDLIMIT */
-# if (defined(__linux__) || defined(__GNU__) || defined(__GLIBC__))
+# if (defined(__linux__) || defined(__GNU__) || defined(__GLIBC__)) || defined(__CYGWIN__)
# if defined(RLIMIT_AS) && !defined(RLIMIT_VMEM)
# define RLIMIT_VMEM RLIMIT_AS
# endif
This site is maintained by Jamie Landeg-Jones <jamie@catflap.org>, and is not an official FreeBSD project, nor is it endorsed by the FreeBSD team.