Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: aefbb96b0e3913acdbbce0fd2e0e2aff0bee27df (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*******************************************************************************
 * Copyright (c) 2011 protos software gmbh (http://www.protos.de).
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License 2.0
 * which accompanies this distribution, and is available at
 * https://www.eclipse.org/legal/epl-2.0/
 *
 * SPDX-License-Identifier: EPL-2.0
 *
 * CONTRIBUTORS:
 * 		Thomas Schuetz (initial contribution)
 * 		Henrik Rentz-Reichert
 *
 *******************************************************************************/

#ifndef _ETDATATYPES_H_
#define _ETDATATYPES_H_

/*
 * typedefs for platform specific datatypes
 * POSIX version
 */

#define ET_INT64
#define ET_FLOAT32
#define ET_FLOAT64

#include "etStdDatatypes.h"

#include <sys/types.h>
#include <unistd.h>
#include <signal.h>
#include <bits/siginfo.h>
#include <time.h>
#include <stdio.h>
#include <pthread.h>
#include <semaphore.h>

/*--- Data types for room.basic.types */

/*-----------------------------------------------------------*/

/*--- Data types for runtime */

#define etALIGNMENT		8	/* power of 2 and >= sizeof(int) ! */

typedef FILE* etFileHandle;

/* types for osal */
typedef pthread_mutex_t etOSMutexData;
typedef pthread_t etOSThreadData;
typedef pthread_t etOSThreadId;
typedef sem_t etOSSemaData;
typedef struct {
	void* next;
	timer_t timerid;
	sigevent_t te;
	etBool signaled;
} etOSTimerData;
typedef timer_t etOSTimerId;

/*-----------------------------------------------------------*/

#endif /* _DATATYPES_H_ */

Back to the top