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:
authorCorinna Vinschen <corinna@vinschen.de>2017-11-28 21:08:04 +0300
committerCorinna Vinschen <corinna@vinschen.de>2017-11-28 21:08:04 +0300
commit39138114542027e2df79333c91f494cc3e058d6e (patch)
tree4a4c1f05e0efcb92ae4a8262eeaf8d1240aeab79 /winsup/cygserver/threaded_queue.cc
parentc37171b528502aad4b55d329ff91a55335b641ad (diff)
cygserver: remove all asserts on "this"
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'winsup/cygserver/threaded_queue.cc')
-rw-r--r--winsup/cygserver/threaded_queue.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/winsup/cygserver/threaded_queue.cc b/winsup/cygserver/threaded_queue.cc
index df0bc0cc0..72f2a5fdd 100644
--- a/winsup/cygserver/threaded_queue.cc
+++ b/winsup/cygserver/threaded_queue.cc
@@ -85,7 +85,6 @@ threaded_queue::~threaded_queue ()
void
threaded_queue::add_submission_loop (queue_submission_loop *const submitter)
{
- assert (this);
assert (submitter);
assert (submitter->_queue == this);
assert (!submitter->_next);
@@ -158,7 +157,6 @@ threaded_queue::stop ()
void
threaded_queue::add (queue_request *const therequest)
{
- assert (this);
assert (therequest);
assert (!therequest->_next);
@@ -313,7 +311,6 @@ queue_submission_loop::~queue_submission_loop ()
bool
queue_submission_loop::start ()
{
- assert (this);
assert (!_hThread);
const bool was_running = _running;
@@ -337,7 +334,6 @@ queue_submission_loop::start ()
bool
queue_submission_loop::stop ()
{
- assert (this);
assert (_hThread && _hThread != INVALID_HANDLE_VALUE);
const bool was_running = _running;