Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2009-09-19 01:27:02 +0400
committerChristopher Faylor <me@cgf.cx>2009-09-19 01:27:02 +0400
commit7b9f3ce02cfd0147efa0aeea0ab4119810696259 (patch)
treeaf62932e487b4ba912d1eb66e10ed880f92f33d1 /winsup/cygwin/syscalls.cc
parenta7f01125771dc56bf0f0794f2a8f6f00bbb74c20 (diff)
* exceptions.cc (sigpacket::process): Give sigwait() processing precedence even
when a handler is present. * syscalls.cc (getpagesize): Change return to 'int'.
Diffstat (limited to 'winsup/cygwin/syscalls.cc')
-rw-r--r--winsup/cygwin/syscalls.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc
index 8fc806f88..e86163886 100644
--- a/winsup/cygwin/syscalls.cc
+++ b/winsup/cygwin/syscalls.cc
@@ -2056,7 +2056,7 @@ getdtablesize ()
return cygheap->fdtab.size > OPEN_MAX ? cygheap->fdtab.size : OPEN_MAX;
}
-extern "C" size_t
+extern "C" int
getpagesize ()
{
if (!system_info.dwAllocationGranularity)