Should have a space between // and comment "whitespace/comments"
This commit is contained in:
parent
e1608f94a8
commit
75f21588e5
39 changed files with 225 additions and 224 deletions
|
@ -34,7 +34,7 @@ EventHandler::~EventHandler(void) {
|
|||
|
||||
std::list<EventRef>::const_iterator it = d->eventList.begin();
|
||||
for(; it != d->eventList.end(); ++it) {
|
||||
//We clear the handler if someone else still has a reference to the event
|
||||
// We clear the handler if someone else still has a reference to the event
|
||||
(*it)->clearHandler();
|
||||
}
|
||||
|
||||
|
@ -62,7 +62,7 @@ bool EventHandler::listIsSignalled() {
|
|||
|
||||
void EventHandler::signal(Event *event) {
|
||||
pthread_mutex_lock(&d->mutex);
|
||||
//event->setSignaled();
|
||||
// event->setSignaled();
|
||||
pthread_cond_signal(&d->event);
|
||||
pthread_mutex_unlock(&d->mutex);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue