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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/*******************************************************************************
Eurecom OpenAirInterface
Copyright(c) 1999 - 2013 Eurecom
This program is free software; you can redistribute it and/or modify it
under the terms and conditions of the GNU General Public License,
version 2, as published by the Free Software Foundation.
This program is distributed in the hope it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
The full GNU General Public License is included in this distribution in
the file called "COPYING".
Contact Information
Openair Admin: openair_admin@eurecom.fr
Openair Tech : openair_tech@eurecom.fr
Forums : http://forums.eurecom.fr/openairinterface
Address : EURECOM, Campus SophiaTech, 450 Route des Chappes
06410 Biot FRANCE
*******************************************************************************/
#if defined(ENABLE_ITTI)
# include "intertask_interface.h"
# include "create_tasks.h"
# include "log.h"
# ifdef OPENAIR2
# if defined(ENABLE_USE_MME)
# include "sctp_eNB_task.h"
# include "s1ap_eNB.h"
# include "nas_ue_task.h"
# include "udp_eNB_task.h"
# include "gtpv1u_eNB_task.h"
# endif
# if defined(ENABLE_RAL)
# include "lteRALue.h"
# include "lteRALenb.h"
# endif
# include "RRC/LITE/defs.h"
# endif
# include "enb_app.h"
int create_tasks(uint32_t enb_nb, uint32_t ue_nb)
{
itti_wait_ready(1);
# ifdef OPENAIR2
{
# if defined(ENABLE_USE_MME)
{
if (enb_nb > 0)
{
if (itti_create_task (TASK_SCTP, sctp_eNB_task, NULL) < 0)
{
LOG_E(EMU, "Create task for SCTP failed\n");
return -1;
}
if (itti_create_task (TASK_S1AP, s1ap_eNB_task, NULL) < 0)
{
LOG_E(EMU, "Create task for S1AP failed\n");
return -1;
}
if (itti_create_task (TASK_UDP, udp_eNB_task, NULL) < 0)
{
LOG_E(EMU, "Create task for UDP failed\n");
return -1;
}
if (itti_create_task (TASK_GTPV1_U, >pv1u_eNB_task, NULL) < 0)
{
LOG_E(EMU, "Create task for GTPV1U failed\n");
return -1;
}
}
if (ue_nb > 0)
{
if (itti_create_task (TASK_NAS_UE, nas_ue_task, NULL) < 0)
{
LOG_E(EMU, "Create task for NAS UE failed\n");
return -1;
}
}
}
# endif
if (enb_nb > 0)
{
if (itti_create_task (TASK_RRC_ENB, rrc_enb_task, NULL) < 0)
{
LOG_E(EMU, "Create task for RRC eNB failed\n");
return -1;
}
# if defined(ENABLE_RAL)
if (itti_create_task (TASK_RAL_ENB, eRAL_task, NULL) < 0) {
LOG_E(EMU, "Create task for RAL eNB failed\n");
return -1;
}
# endif
}
if (ue_nb > 0)
{
if (itti_create_task (TASK_RRC_UE, rrc_ue_task, NULL) < 0)
{
LOG_E(EMU, "Create task for RRC UE failed\n");
return -1;
}
# if defined(ENABLE_RAL)
if (itti_create_task (TASK_RAL_UE, mRAL_task, NULL) < 0) {
LOG_E(EMU, "Create task for RAL UE failed\n");
return -1;
}
# endif
}
}
# endif
if (itti_create_task (TASK_L2L1, l2l1_task, NULL) < 0)
{
LOG_E(EMU, "Create task for L2L1 failed\n");
return -1;
}
if (enb_nb > 0)
{
/* Last task to create, others task must be ready before its start */
if (itti_create_task (TASK_ENB_APP, eNB_app_task, NULL) < 0)
{
LOG_E(EMU, "Create task for eNB APP failed\n");
return -1;
}
}
itti_wait_ready(0);
return 0;
}
#endif