From 60b68f0d39b92f329c4156a41866341d982831cb Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Fri, 15 Feb 2002 17:06:40 +0000 Subject: * hires.h (hires::usecs): Rename from utime. Accept an argument. * strace.cc (strace::microseconds): Use hires class for calculating times. * sync.h (new_muto): Use NO_COPY explicitly in declaration. * times.cc (gettimeofday): Reflect change in usecs argument. (hires::usecs): Ditto. Changed name from utime. * winsup.h (NO_COPY): Add nocommon attribute to force setting aside space for variable. * regcomp.c (REQUIRE): Add a void cast to bypass a warning. --- winsup/cygwin/sync.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'winsup/cygwin/sync.h') diff --git a/winsup/cygwin/sync.h b/winsup/cygwin/sync.h index 756503d86..c710f8901 100644 --- a/winsup/cygwin/sync.h +++ b/winsup/cygwin/sync.h @@ -44,6 +44,6 @@ extern muto muto_start; /* Use a statically allocated buffer as the storage for a muto */ #define new_muto(__inh, __name) \ ({ \ - static muto __mbuf __attribute__((section(".data_cygwin_nocopy"))); \ + static muto __mbuf NO_COPY; \ __mbuf.init (__inh, __name); \ }) -- cgit v1.2.3