Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 4c6829b447bc7719178bb4c366c6db6c56359bfd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*******************************************************************************
 * Copyright (c) 2012 Draeger Medical GmbH (http://www.draeger.com).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * CONTRIBUTORS:
 * 		Peter Karlitschek (initial contribution)
 *
 *******************************************************************************/

#include "common/modelbase/EventReceiver.h"

namespace etRuntime {

EventReceiver::EventReceiver(IRTObject* parent, const String& name) :
		RTObject(parent, name),
		m_thread(-1) {
}

int EventReceiver::getThread() {
	if (m_thread < 0) {
		m_thread = getThreadForPath(getInstancePath());
		if (m_thread < 0) {
			IEventReceiver* parent = dynamic_cast<IEventReceiver*>(getParent());
			if (parent != 0)
				m_thread = parent->getThread();
			else
				m_thread = 0;
		}
	}

	return m_thread;
}

} /* namespace etRuntime */

Back to the top