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>2004-07-20 19:52:33 +0400
committerChristopher Faylor <me@cgf.cx>2004-07-20 19:52:33 +0400
commit894c67771114c898c0306367e46ce4eba3f40141 (patch)
tree12c767e4185e649398f99a2c940142cef127659f
parentf451556720a52b4194274d45cb94f252a0937e20 (diff)
* Makefile.in (clean): Remove cygwin.def since it is autogenerated.
-rw-r--r--winsup/cygwin/ChangeLog4
-rw-r--r--winsup/cygwin/Makefile.in2
-rw-r--r--winsup/cygwin/syscalls.cc5
3 files changed, 7 insertions, 4 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 2c2ade497..2a6a12e69 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,7 @@
+2004-07-20 Christopher Faylor <cgf@timesys.com>
+
+ * Makefile.in (clean): Remove cygwin.def since it is autogenerated.
+
2004-07-19 Corinna Vinschen <corinna@vinschen.de>
* fhandler_dsp.cc (fhandler_dev_dsp::Audio_out::init): Fix non-ISO
diff --git a/winsup/cygwin/Makefile.in b/winsup/cygwin/Makefile.in
index 26764fd96..bf531e8cc 100644
--- a/winsup/cygwin/Makefile.in
+++ b/winsup/cygwin/Makefile.in
@@ -351,7 +351,7 @@ uninstall-man:
done
clean:
- -rm -f *.o *.dll *.a *.exp junk *.base version.cc regexp/*.o winver_stamp *.exe *.d *stamp* *_magic.h sigfe.s
+ -rm -f *.o *.dll *.a *.exp junk *.base version.cc regexp/*.o winver_stamp *.exe *.d *stamp* *_magic.h sigfe.s cygwin.def
-@$(MAKE) -C $(bupdir)/cygserver libclean
maintainer-clean realclean: clean
diff --git a/winsup/cygwin/syscalls.cc b/winsup/cygwin/syscalls.cc
index b524e61f3..27b68454a 100644
--- a/winsup/cygwin/syscalls.cc
+++ b/winsup/cygwin/syscalls.cc
@@ -1939,10 +1939,9 @@ mknod (const char *_path, mode_t mode, __dev16_t dev)
}
extern "C" int
-mkfifo (const char *_path, mode_t mode)
+mkfifo (const char *path, mode_t mode)
{
- set_errno (ENOSYS); // FIXME
- return -1;
+ return mknod32 (path, (mode & ~S_IFMT) | S_IFIFO, 0);
}
/* seteuid: standards? */