tasks_def.h 2.7 KB
Newer Older
1 2 3 4 5
/*
 * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The OpenAirInterface Software Alliance licenses this file to You under
6
 * the OAI Public License, Version 1.1  (the "License"); you may not use this file
7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.openairinterface.org/?page_id=698
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *-------------------------------------------------------------------------------
 * For more information about the OpenAirInterface (OAI) Software Alliance:
 *      contact@openairinterface.org
 */
21

22
// This task is mandatory and must always be placed in first position
23
TASK_DEF(TASK_TIMER,    TASK_PRIORITY_MAX,          10)
24 25 26

// Other possible tasks in the process

winckel's avatar
winckel committed
27 28
// Common tasks:

29 30
///   Bearers Manager task
TASK_DEF(TASK_BM,       TASK_PRIORITY_MED,          200)
winckel's avatar
winckel committed
31 32 33

// eNodeB tasks and sub-tasks:

34 35
///   Radio Resource Control task
TASK_DEF(TASK_RRC_ENB,  TASK_PRIORITY_MED,          200)
oai's avatar
oai committed
36 37 38 39

// Define here for now
TASK_DEF(TASK_RRC_ENB_NB_IoT,  TASK_PRIORITY_MED,          200)

40
///   S1ap task
41 42 43
/// RAL task for ENB
TASK_DEF(TASK_RAL_ENB, TASK_PRIORITY_MED, 200)

44 45 46 47
// UDP TASK
TASK_DEF(TASK_UDP,      TASK_PRIORITY_MED,          1000)
// GTP_V1U task
TASK_DEF(TASK_GTPV1_U,  TASK_PRIORITY_MED,          1000)
Haruki NAOI's avatar
Haruki NAOI committed
48 49
//TASK_DEF(TASK_S1AP,     TASK_PRIORITY_MED,          200)
TASK_DEF(TASK_S1AP,     TASK_PRIORITY_MED,         2000)
50 51
TASK_DEF(TASK_CU_F1,     TASK_PRIORITY_MED,          200)
TASK_DEF(TASK_DU_F1,     TASK_PRIORITY_MED,          200)
52 53 54 55 56 57
///   X2ap task, acts as both source and target
TASK_DEF(TASK_X2AP,     TASK_PRIORITY_MED,          200)
///   Sctp task (Used by both S1AP and X2AP)
TASK_DEF(TASK_SCTP,     TASK_PRIORITY_MED,          200)
///   eNB APP task
TASK_DEF(TASK_ENB_APP,  TASK_PRIORITY_MED,          200)
58
///   eNB Agent task
59
TASK_DEF(TASK_FLEXRAN_AGENT,  TASK_PRIORITY_MED,          200)
60
TASK_DEF(TASK_PROTO_AGENT,  TASK_PRIORITY_MED,          200)
winckel's avatar
winckel committed
61 62
// UE tasks and sub-tasks:

63 64 65 66 67
///   Radio Resource Control task
TASK_DEF(TASK_RRC_UE,   TASK_PRIORITY_MED,          200)
///   Non Access Stratum task
TASK_DEF(TASK_NAS_UE,   TASK_PRIORITY_MED,          200)
TASK_DEF(TASK_RAL_UE,   TASK_PRIORITY_MED,          200)
68

69 70 71
//MESSAGE GENERATOR TASK
TASK_DEF(TASK_MSC,      TASK_PRIORITY_MED,          200)