Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEugene Tarassov2011-11-11 01:19:02 +0000
committerEugene Tarassov2011-11-11 01:19:02 +0000
commita107edc216f94c5ec059fdf74541908bc7e979bb (patch)
treea0d9a448043cf5b969c2ede059b7d19a3aa64b71 /agent/tcf/framework/mdep-threads.h
parent07c7a005cded9e4b4ec842d756d0e4d79dade149 (diff)
downloadorg.eclipse.tcf.agent-a107edc216f94c5ec059fdf74541908bc7e979bb.tar.gz
org.eclipse.tcf.agent-a107edc216f94c5ec059fdf74541908bc7e979bb.tar.xz
org.eclipse.tcf.agent-a107edc216f94c5ec059fdf74541908bc7e979bb.zip
Agent code is moved into separate "agent" directory, all C code moved into "tcf" directory.
Diffstat (limited to 'agent/tcf/framework/mdep-threads.h')
-rw-r--r--agent/tcf/framework/mdep-threads.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/agent/tcf/framework/mdep-threads.h b/agent/tcf/framework/mdep-threads.h
new file mode 100644
index 00000000..ed6db5a5
--- /dev/null
+++ b/agent/tcf/framework/mdep-threads.h
@@ -0,0 +1,49 @@
+/*******************************************************************************
+ * Copyright (c) 2007, 2011 Wind River Systems, Inc. and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * and Eclipse Distribution License v1.0 which accompany this distribution.
+ * The Eclipse Public License is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ * and the Eclipse Distribution License is available at
+ * http://www.eclipse.org/org/documents/edl-v10.php.
+ * You may elect to redistribute this code under either of these licenses.
+ *
+ * Contributors:
+ * Wind River Systems - initial API and implementation
+ * Nokia - Symbian support
+ *******************************************************************************/
+
+/*
+ * Machine and OS dependend definitions for threads.
+ */
+
+#ifndef D_mdep_threads
+#define D_mdep_threads
+
+#if defined(WIN32) || defined(__CYGWIN__)
+
+#ifdef DISABLE_PTHREADS_WIN32
+# include <pthread.h>
+#else
+# include <system/Windows/pthreads-win32.h>
+#endif
+
+#elif defined(_WRS_KERNEL)
+
+#include <pthread.h>
+
+#elif defined __SYMBIAN32__
+
+#include <pthreadtypes.h>
+#include <pthread.h>
+
+#else
+
+#include <pthread.h>
+
+#endif
+
+extern pthread_attr_t pthread_create_attr;
+
+#endif /* D_mdep_threads */

Back to the top