diff options
author | Christopher Faylor <me@cgf.cx> | 2003-05-30 15:01:33 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-05-30 15:01:33 +0000 |
commit | cbe537543738595591484dacafcafabcad673005 (patch) | |
tree | 324fcd5794051570e36748a9b9acb1b2208e47ce /winsup/cygwin/cygheap.cc | |
parent | 1698ff392ad8abc4320ddd9dd13609e5cef94030 (diff) | |
download | cygnal-cbe537543738595591484dacafcafabcad673005.tar.gz cygnal-cbe537543738595591484dacafcafabcad673005.tar.bz2 cygnal-cbe537543738595591484dacafcafabcad673005.zip |
* cygheap.cc (init_cheap): Temporarily remove inline that newer gcc's have
problems with.
* path.cc (path_conv::check): Rework has_acls logic slightly. Uncouple exec
tests away from filesystem tests.
Diffstat (limited to 'winsup/cygwin/cygheap.cc')
-rw-r--r-- | winsup/cygwin/cygheap.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/cygheap.cc b/winsup/cygwin/cygheap.cc index 7fdb87a3e..1b4096a6f 100644 --- a/winsup/cygwin/cygheap.cc +++ b/winsup/cygwin/cygheap.cc @@ -47,7 +47,7 @@ extern "C" { static void __stdcall _cfree (void *ptr) __attribute__((regparm(1))); } -inline static void +static void init_cheap () { cygheap = (init_cygheap *) VirtualAlloc ((void *) &_cygheap_start, CYGHEAPSIZE, MEM_RESERVE, PAGE_NOACCESS); |