summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/cxx.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2005-03-19 21:45:15 +0000
committerChristopher Faylor <me@cgf.cx>2005-03-19 21:45:15 +0000
commitf5808137717eebb5b38607834016ed733374ccc5 (patch)
tree47b3b7fc8def7b9454961a121d3172aa7ce741d1 /winsup/cygwin/cxx.cc
parentcfaf367058257bdeb2fb93250684335b00f5854f (diff)
downloadcygnal-f5808137717eebb5b38607834016ed733374ccc5.tar.gz
cygnal-f5808137717eebb5b38607834016ed733374ccc5.tar.bz2
cygnal-f5808137717eebb5b38607834016ed733374ccc5.zip
* child_info.h (fork_info): Use different method to alias variable.
(spawn_info): Ditto. * cxx.cc (__cxa_guard_acquire): New function (needed for gcc 4.x). (__cxa_guard_release): Ditto. * devices.in: Make sure stuff is correctly bracketed (for gcc 4.x). * devices.cc: Regenerate. * fhandler.h (fhandler_disk_file::fchmod): Avoid left coercion (for gcc 4.x). * smallprint.c (__rn): Declare as __fastcall since gcc 4.x complains about use of regparm, for some reason. * sync.h (sync::init_lock): Remove. * sync.cc (sync::init_lock): Ditto.
Diffstat (limited to 'winsup/cygwin/cxx.cc')
-rw-r--r--winsup/cygwin/cxx.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/winsup/cygwin/cxx.cc b/winsup/cygwin/cxx.cc
index 9cc1342fe..1cee576f4 100644
--- a/winsup/cygwin/cxx.cc
+++ b/winsup/cygwin/cxx.cc
@@ -43,4 +43,14 @@ __cxa_pure_virtual (void)
{
api_fatal ("pure virtual method called");
}
+
+extern "C" void
+__cxa_guard_acquire ()
+{
+}
+
+extern "C" void
+__cxa_guard_release ()
+{
+}
#endif