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:
authorCorinna Vinschen <corinna@vinschen.de>2003-12-03 12:55:42 +0300
committerCorinna Vinschen <corinna@vinschen.de>2003-12-03 12:55:42 +0300
commite2a39e2efa3337b9c6abbba4c7eb914c5ee9d3d9 (patch)
tree257296c3c3c822ce933879a5fd8e021c306bb7fe /winsup/cygwin
parent941c9bf805b0abfc911ed79a3ef712245996bf8e (diff)
* fcntl.cc (fcntl_worker): Remove static storage class.
* flock.cc (flock): Use struct __flock64. Call fcntl_worker. Use Cygwin errno functions instead of accessing errno directly. * winsup.h: Declare fcntl_worker.
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/ChangeLog9
-rw-r--r--winsup/cygwin/fcntl.cc2
-rw-r--r--winsup/cygwin/flock.cc26
-rw-r--r--winsup/cygwin/winsup.h2
4 files changed, 24 insertions, 15 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 966a812a5..4113bc6b6 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,6 +1,13 @@
2003-12-03 Corinna Vinschen <corinna@vinschen.de>
- * fcntl.cc (_fcntl): Whitespace cleanup.
+ * fcntl.cc (fcntl_worker): Remove static storage class.
+ * flock.cc (flock): Use struct __flock64. Call fcntl_worker.
+ Use Cygwin errno functions instead of accessing errno directly.
+ * winsup.h: Declare fcntl_worker.
+
+2003-12-03 Corinna Vinschen <corinna@vinschen.de>
+
+ * fcntl.cc: Whitespace cleanup.
2003-12-03 Christopher Faylor <cgf@redhat.com>
diff --git a/winsup/cygwin/fcntl.cc b/winsup/cygwin/fcntl.cc
index a492bf93d..d81126f52 100644
--- a/winsup/cygwin/fcntl.cc
+++ b/winsup/cygwin/fcntl.cc
@@ -19,7 +19,7 @@ details. */
#include "cygheap.h"
#include "thread.h"
-static int
+int
fcntl_worker (int fd, int cmd, void *arg)
{
int res;
diff --git a/winsup/cygwin/flock.cc b/winsup/cygwin/flock.cc
index 09ea2b6db..b15962d94 100644
--- a/winsup/cygwin/flock.cc
+++ b/winsup/cygwin/flock.cc
@@ -15,9 +15,9 @@
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
details. */
+#include "winsup.h"
+#include "cygerrno.h"
#include <sys/file.h>
-#include <sys/types.h>
-#include <errno.h>
#include <fcntl.h>
#include <unistd.h>
@@ -25,7 +25,7 @@ int
flock (int fd, int operation)
{
int i, cmd;
- struct flock l = { 0, 0, 0, 0, 0 };
+ struct __flock64 l = { 0, 0, 0, 0, 0 };
if (operation & LOCK_NB)
{
cmd = F_SETLK;
@@ -39,40 +39,40 @@ flock (int fd, int operation)
{
case LOCK_EX:
l.l_type = F_WRLCK;
- i = fcntl (fd, cmd, &l);
+ i = fcntl_worker (fd, cmd, &l);
if (i == -1)
{
- if ((errno == EAGAIN) || (errno == EACCES))
+ if ((get_errno () == EAGAIN) || (get_errno () == EACCES))
{
- errno = EWOULDBLOCK;
+ set_errno (EWOULDBLOCK);
}
}
break;
case LOCK_SH:
l.l_type = F_RDLCK;
- i = fcntl (fd, cmd, &l);
+ i = fcntl_worker (fd, cmd, &l);
if (i == -1)
{
- if ((errno == EAGAIN) || (errno == EACCES))
+ if ((get_errno () == EAGAIN) || (get_errno () == EACCES))
{
- errno = EWOULDBLOCK;
+ set_errno (EWOULDBLOCK);
}
}
break;
case LOCK_UN:
l.l_type = F_UNLCK;
- i = fcntl (fd, cmd, &l);
+ i = fcntl_worker (fd, cmd, &l);
if (i == -1)
{
- if ((errno == EAGAIN) || (errno == EACCES))
+ if ((get_errno () == EAGAIN) || (get_errno () == EACCES))
{
- errno = EWOULDBLOCK;
+ set_errno (EWOULDBLOCK);
}
}
break;
default:
i = -1;
- errno = EINVAL;
+ set_errno (EINVAL);
break;
}
return i;
diff --git a/winsup/cygwin/winsup.h b/winsup/cygwin/winsup.h
index 937b46061..26be3d0c3 100644
--- a/winsup/cygwin/winsup.h
+++ b/winsup/cygwin/winsup.h
@@ -298,6 +298,8 @@ int symlink_worker (const char *, const char *, bool, bool)
class path_conv;
int access_worker (path_conv&, int) __attribute__ ((regparm (2)));
+int fcntl_worker (int fd, int cmd, void *arg);
+
extern "C" int low_priority_sleep (DWORD) __attribute__ ((regparm (1)));
#define SLEEP_0_STAY_LOW INFINITE