2000-02-17 20:38:33 +01:00
|
|
|
/* sync.h: Header file for cygwin synchronization primitives.
|
|
|
|
|
2000-02-24 03:49:44 +01:00
|
|
|
Copyright 1999, 2000 Cygnus Solutions.
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
Written by Christopher Faylor <cgf@cygnus.com>
|
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
/* FIXME: Note that currently this class cannot be allocated via `new' since
|
|
|
|
there are issues with malloc and fork. */
|
|
|
|
class muto
|
|
|
|
{
|
|
|
|
LONG sync; /* Used to serialize access to this class. */
|
|
|
|
LONG visits; /* Count of number of times a thread has called acquire. */
|
|
|
|
LONG waiters; /* Number of threads waiting for lock. */
|
|
|
|
HANDLE bruteforce; /* event handle used to control waiting for lock. */
|
|
|
|
DWORD tid; /* Thread Id of lock owner. */
|
|
|
|
public:
|
2000-02-24 20:54:01 +01:00
|
|
|
class muto *next;
|
2000-03-15 05:49:36 +01:00
|
|
|
const char *name;
|
2000-02-17 20:38:33 +01:00
|
|
|
void *operator new (size_t, void *p) {return p;}
|
2000-02-21 06:20:38 +01:00
|
|
|
void *operator new (size_t) {return ::new muto; }
|
|
|
|
void operator delete (void *) {;} /* can't handle allocated mutos
|
2000-02-17 20:38:33 +01:00
|
|
|
currently */
|
|
|
|
|
|
|
|
/* This simple constructor is used for cases where no bruteforce
|
|
|
|
event handling is required. */
|
2000-02-26 02:11:54 +01:00
|
|
|
muto(): sync(0), visits(0), waiters(-1), bruteforce(0), tid(0), next (NULL) {;}
|
2000-02-17 20:38:33 +01:00
|
|
|
/* A more complicated constructor. */
|
|
|
|
muto(int inh, const char *name);
|
|
|
|
~muto ();
|
|
|
|
int acquire (DWORD ms = INFINITE); /* Acquire the lock. */
|
|
|
|
int release (); /* Release the lock. */
|
|
|
|
|
|
|
|
/* Return true if caller thread owns the lock. */
|
|
|
|
int ismine () {return tid == GetCurrentThreadId ();}
|
2000-02-24 03:49:44 +01:00
|
|
|
DWORD owner () {return tid;}
|
2000-02-24 07:45:32 +01:00
|
|
|
int unstable () {return !tid && (sync || waiters >= 0);}
|
2000-09-07 03:18:37 +02:00
|
|
|
void reset ();
|
2000-02-17 20:38:33 +01:00
|
|
|
};
|
|
|
|
|
2000-02-24 20:54:01 +01:00
|
|
|
extern muto muto_start;
|
|
|
|
|
2000-02-17 20:38:33 +01:00
|
|
|
/* Use a statically allocated buffer as the storage for a muto */
|
|
|
|
#define new_muto(__inh, __name) \
|
|
|
|
({ \
|
2000-05-17 07:49:51 +02:00
|
|
|
static __attribute__((section(".data_cygwin_nocopy"))) muto __mbuf; \
|
2000-02-26 02:11:54 +01:00
|
|
|
(void) new ((char *) &__mbuf) muto (__inh, __name); \
|
|
|
|
__mbuf.next = muto_start.next; \
|
|
|
|
muto_start.next = &__mbuf; \
|
|
|
|
&__mbuf; \
|
2000-02-17 20:38:33 +01:00
|
|
|
})
|