summaryrefslogtreecommitdiff
path: root/cesar/cp2/cco/action
diff options
context:
space:
mode:
authorboure2008-06-11 11:19:28 +0000
committerboure2008-06-11 11:19:28 +0000
commitb6491fa98d57d776f29ef5b1a578a5294db0d468 (patch)
tree79d2a6bd6d026356539e8f53091075486313dc6d /cesar/cp2/cco/action
parentbab563d7acfbd531077bda079c1cd83ce50b6e29 (diff)
Modification of the context in the functions
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@2280 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar/cp2/cco/action')
-rw-r--r--cesar/cp2/cco/action/cco_conn/cco_action.h18
-rw-r--r--cesar/cp2/cco/action/cco_conn/inc/cco_action.h3
2 files changed, 10 insertions, 11 deletions
diff --git a/cesar/cp2/cco/action/cco_conn/cco_action.h b/cesar/cp2/cco/action/cco_conn/cco_action.h
index 841bb8cfbe..f34b2c4758 100644
--- a/cesar/cp2/cco/action/cco_conn/cco_action.h
+++ b/cesar/cp2/cco/action/cco_conn/cco_action.h
@@ -38,7 +38,7 @@ typedef struct cp_cco_action_t cp_cco_action_t;
* manager to redo the schedule Call cp_cco_action_mme_conn_cnf()
*/
void
-cp_cco_action_process_cc_link_new_req (cp_cco_action_t *ctx, cp_t* ctx, cp_mme_rx_t* mme);
+cp_cco_action_process_cc_link_new_req (cp_t* ctx, cp_mme_rx_t* mme);
/**
* Process a CC_LINK_REL.
@@ -51,7 +51,7 @@ cp_cco_action_process_cc_link_new_req (cp_cco_action_t *ctx, cp_t* ctx, cp_mme_r
* the bandwidth manager to redo the schedule
*/
void
-cp_cco_action_process_cc_link_rel_req (cp_cco_action_t *ctx, cp_t* ctx, cp_mme_rx_t* mme);
+cp_cco_action_process_cc_link_rel_req (cp_t* ctx, cp_mme_rx_t* mme);
/**
* Send a CC_LINK_SQZ.
@@ -63,7 +63,7 @@ cp_cco_action_process_cc_link_rel_req (cp_cco_action_t *ctx, cp_t* ctx, cp_mme_r
* targeted
*/
void
-cp_cco_action_process_cc_link_sqz_req_tx (cp_cco_action_t *ctx, cp_t* ctx, cp_mme_tx_t* mme);
+cp_cco_action_process_cc_link_sqz_req_tx (cp_t* ctx, cp_mme_tx_t* mme);
/**
* Process a CC_LINK_SQZ.
@@ -76,7 +76,7 @@ cp_cco_action_process_cc_link_sqz_req_tx (cp_cco_action_t *ctx, cp_t* ctx, cp_mm
* Send the CNF with the result
*/
void
-cp_cco_action_process_cc_link_sqz_req_rx (cp_cco_action_t *ctx, cp_t* ctx, cp_mme_rx_t* mme);
+cp_cco_action_process_cc_link_sqz_req_rx (cp_t* ctx, cp_mme_rx_t* mme);
/**
* Process a CC_LINK_MOD.
@@ -89,7 +89,7 @@ cp_cco_action_process_cc_link_sqz_req_rx (cp_cco_action_t *ctx, cp_t* ctx, cp_mm
* the schedule Send the MME CNF with the result
*/
void
-cp_cco_action_process_cc_link_mod_req (cp_cco_action_t *ctx, cp_t* ctx, cp_mme_rx_t* mme);
+cp_cco_action_process_cc_link_mod_req (cp_t* ctx, cp_mme_rx_t* mme);
/**
* Process a CC_ALLOC_MOVE.
@@ -105,7 +105,7 @@ cp_cco_action_process_cc_link_mod_req (cp_cco_action_t *ctx, cp_t* ctx, cp_mme_r
* list Call the bandwidth manager to redo the schedule Call cp_cco_action_mme_conn_cnf()
*/
void
-cp_cco_action_process_cc_alloc_move_req (cp_cco_action_t *ctx, cp_t* ctx, cp_mme_rx_t* mme);
+cp_cco_action_process_cc_alloc_move_req (cp_t* ctx, cp_mme_rx_t* mme);
/**
* Init function of the CCo.
@@ -114,7 +114,7 @@ cp_cco_action_process_cc_alloc_move_req (cp_cco_action_t *ctx, cp_t* ctx, cp_mme
*
*/
void
-cp_cco_action_init (cp_cco_action_t *ctx, cp_t* ctx);
+cp_cco_action_init (cp_t* ctx);
/**
* Uninit the cco action module (call the uninit function of lower ctx).
@@ -122,7 +122,7 @@ cp_cco_action_init (cp_cco_action_t *ctx, cp_t* ctx);
*
*/
void
-cp_cco_action_uninit (cp_cco_action_t *ctx);
+cp_cco_action_uninit (cp_t *ctx);
/**
* Process of a CC_BLE_UPDATE.
@@ -134,6 +134,6 @@ cp_cco_action_uninit (cp_cco_action_t *ctx);
* Manager to redo the schedule
*/
void
-cp_cco_action_process_cc_ble_update_ind (cp_cco_action_t *ctx, cp_t* ctx, cp_mme_rx_t* mme);
+cp_cco_action_process_cc_ble_update_ind (cp_t* ctx, cp_mme_rx_t* mme);
#endif /* cp_cco_action_h */
diff --git a/cesar/cp2/cco/action/cco_conn/inc/cco_action.h b/cesar/cp2/cco/action/cco_conn/inc/cco_action.h
index 6339a8bd9e..0f0649b573 100644
--- a/cesar/cp2/cco/action/cco_conn/inc/cco_action.h
+++ b/cesar/cp2/cco/action/cco_conn/inc/cco_action.h
@@ -26,7 +26,6 @@ struct cp_cco_action_private_t
/** Public data. */
cp_cco_action_t public_data;
-
};
typedef struct cp_cco_action_private_t cp_cco_action_private_t;
@@ -40,6 +39,6 @@ typedef struct cp_cco_action_private_t cp_cco_action_private_t;
* After sending those MMEs it clears the status.
*/
void
-cp_cco_action_mme_conn_cnf (cp_cco_action_t *ctx, cp_t* ctx);
+cp_cco_action_mme_conn_cnf (cp_t* ctx);
#endif /* cp_cco_action_private_h */