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>2000-05-19 01:30:30 +0400
committerChristopher Faylor <me@cgf.cx>2000-05-19 01:30:30 +0400
commitf343a326d3da43f8e3c73494e412b7e123c216fc (patch)
tree3e67c1ebce041fe36a4607451fbfcc9bff96d022 /winsup/cygwin/sigproc.h
parentf43932615d05b3a2ee85885693410a3cb62c31a0 (diff)
* Makefile.in: Remove external.h dependency.
* dcrt0.cc (sigthread::init): Move here from sigproc.h. * sigproc.h (sigthread): Move init to dcrt0.cc.
Diffstat (limited to 'winsup/cygwin/sigproc.h')
-rw-r--r--winsup/cygwin/sigproc.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/winsup/cygwin/sigproc.h b/winsup/cygwin/sigproc.h
index 2a55b12f7..d850ec923 100644
--- a/winsup/cygwin/sigproc.h
+++ b/winsup/cygwin/sigproc.h
@@ -40,11 +40,7 @@ struct sigthread
DWORD frame;
muto *lock;
sigthread () : id (0), frame (0), lock (0) {}
- void init (const char *s)
- {
- lock = new_muto (FALSE, s);
- id = GetCurrentThreadId ();
- }
+ void init (const char *s);
};
class sigframe