]> rtime.felk.cvut.cz Git - frescor/frsh-include.git/blobdiff - frsh_hierarchical.h
const
[frescor/frsh-include.git] / frsh_hierarchical.h
index 560cd71c68297fd44a2c4659e8007f8ed92aa2c7..179ce0283a733e07294f76f6c2e45787570d36ca 100644 (file)
 #include "frsh_hierarchical_types.h"
 #include "frsh_core.h"
 
+FRSH_CPP_BEGIN_DECLS
 
 #define FRSH_HIERARCHICAL_MODULE_SUPPORTED       1
 
+/**
+ * @file frsh_hierarchical.h
+ **/
 
 /**
  * @defgroup hierarchical Hierarchical Scheduling Module
  *
  * This module includes the types and functions to use local
- * schedulers within servers allowing to attach more than one thread
- * to a server and define an scheduling policy within.
+ * schedulers within vres allowing to attach more than one thread
+ * to a vres and define an scheduling policy within.
  * 
  * @{
  **/
 
 /**
- * frsh_init_local_scheduler()
+ * frsh_local_scheduler_init()
  *
  *  This call has the following effects:
- *    FP:  none
- *    EDF: none
+ *    FP:  none \n
+ *    EDF: none \n
  *    TABLE_DRIVEN :
  *       Records the schedule duration, and starts the
  *       schedule at the time of the call. After the
  *       schedule duration has elapsed, the schedule in
  *       the table is repeated.
  *
- *  @return
- *    FRSH_ERR_BAD_ARGUMENT : if the value of the server argument is not in range,
- *      or info is NULL
+ *  @return 0 if no error \n
+ *    FRSH_ERR_BAD_ARGUMENT : if the value of the vres argument is not in range,
+ *      or info is NULL \n
  *    FRSH_ERR_NOT_SCHEDULED_CALLING_THREAD : if the calling thread is not
- *      scheduled under the FRSH
- *    FRSH_ERR_INVALID_SCHEDULER_REPLY : the scheduler is wrong or not running
- *    FRSH_ERR_NOT_CONTRACTED_SERVER : if the server of the calling thread 
+ *      scheduled under the FRSH \n
+ *    FRSH_ERR_INVALID_SCHEDULER_REPLY : the scheduler is wrong or not
+ *      running \n
+ *    FRSH_ERR_NOT_CONTRACTED_VRES : if the vres of the calling thread 
  *      has been cancelled or it is not valid
  **/
-int frsh_init_local_scheduler(
-   frsh_server_id_t       server,
+int frsh_local_scheduler_init(
+   frsh_vres_id_t       vres,
    frsh_sched_init_info_t info);
 
 
 /**
- * frsh_set_contract_scheduling_policy()
+ * frsh_contract_set_sched_policy()
  *
  *  The operation updates the specified contract parameters object by
  *  setting its scheduling policy to the specified input parameter.
  *  The default policy is FRSH_NONE, which means that only one thread
- *  may be bound to the server
+ *  may be bound to the vres
  *
- *  @return
+ *  @return 0 if no error \n
  *    FRSH_ERR_BAD_ARGUMENT : if sched_policy is not in range,
  *     or contract is NULL
  **/
-int frsh_set_contract_scheduling_policy
-  (frsh_contract_parameters_t *contract,
+int frsh_contract_set_sched_policy
+  (frsh_contract_t *contract,
    frsh_sched_policy_t         sched_policy);
 
 
 /**
- * frsh_get_contract_scheduling_policy()
+ * frsh_contract_get_sched_policy()
  *
  * This operation obtains from the specified contract parameters
  * object its scheduling policy, and copies it to the place pointed to
  * by the corresponding input parameter.
  *
- *  @return
+ *  @return 0 if no error \n
  *     FRSH_ERR_BAD_ARGUMENT : if sched_policy or contract are NULL
  **/
-int frsh_get_contract_scheduling_policy
-  (const frsh_contract_parameters_t *contract,
+int frsh_contract_get_sched_policy
+  (const frsh_contract_t *contract,
    frsh_sched_policy_t              *sched_policy);
 
 
 /**
- * frsh_create_local_thread()
+ * frsh_thread_create_local()
  *
  * This operation creates a thread and binds it to the specified
- * server, which must have a policy different than FRSH_NONE. The new
+ * vres, which must have a policy different than FRSH_NONE. The new
  * thread is created with the arguments thread, attr, thread_code and
  * arg as they are defined for the pthread_create() POSIX function
  * call, and its local scheduling parameters are set to the value
  * stored in the variable pointed to by sched_params, which must be
- * compatible with the server's scheduling policy. Then, the function
- * binds the created thread to the new server. The attr /parameter is
+ * compatible with the vres's scheduling policy. Then, the function
+ * binds the created thread to the new vres. The attr /parameter is
  * overwritten as necessary to introduce the adequate scheduling
  * policy and priority, according to the preemption level given in the
  * contract and the frsh_priority_map() function defined by the user.
  *
- * @return
- *   FRSH_ERR_BAD_ARGUMENT : if the value of the server argument is not in range,
- *     or sched_params is NULL
+ * @return 0 if no error \n
+ *   FRSH_ERR_BAD_ARGUMENT : if the value of the vres argument is not in range,
+ *     or sched_params is NULL \n
  *   FRSH_ERR_SCHED_POLICY_NOT_COMPATIBLE : if the scheduling policy 
- *     in sched_params is not compatible to the server's one.
+ *     in sched_params is not compatible to the vres's one \n
  *   FRSH_ERR_INTERNAL_ERROR : erroneous binding or malfunction of the FRSH
- *     main scheduler
- *   FRSH_ERR_NOT_CONTRACTED_SERVER : if the referenced server is not valid
- *   FRSH_ERR_SERVER_WORKLOAD_NOT_COMPATIBLE: if the kind of workload
- *     of the server is FRSH_OVERHEAD
- *    
+ *     main scheduler \n
+ *   FRSH_ERR_NOT_CONTRACTED_VRES : if the referenced vres is not
+ *     valid \n
+ *   FRSH_ERR_VRES_WORKLOAD_NOT_COMPATIBLE: if the kind of workload
+ *     of the vres is FRSH_OVERHEAD \n
+ *   . 
  *   It may also return any of  the errors that may be returned by the
  *   pthread_create()POSIX function call
  **/
-int frsh_create_local_thread(frsh_server_id_t      server,
+int frsh_thread_create_local(frsh_vres_id_t      vres,
                              frsh_sched_params_t   *sched_params,
                              frsh_thread_id_t             *thread,
                              frsh_thread_attr_t        *attr,
@@ -185,16 +191,16 @@ int frsh_create_local_thread(frsh_server_id_t      server,
                              void                  *arg);
 
 /**
- * frsh_bind_local_thread_to_server()
+ * frsh_thread_bind_local()
  *
- * This operation associates a thread with a server, which must have a
+ * This operation associates a thread with a vres, which must have a
  * policy different than FRSH_NONE. The thread's local scheduling
  * parameters are set to the value stored in the variable pointed to
- * by sched_params, which must be compatible with the server's
+ * by sched_params, which must be compatible with the vres's
  * scheduling policy. After the call the thread starts consuming the
- * server's budget and is executed according to the contract
- * established for that server and to its scheduling policy. If the
- * thread was already bound to another server, it is effectively
+ * vres's budget and is executed according to the contract
+ * established for that vres and to its scheduling policy. If the
+ * thread was already bound to another vres, it is effectively
  * unbound from it and bound to the specified one. 
  *
  * Implementation dependent issue: In order to allow the usage of
@@ -202,66 +208,71 @@ int frsh_create_local_thread(frsh_server_id_t      server,
  * scheduling policy SCHED_APP and at the same time be attached to an
  * application scheduler different than the frsh scheduler. 
  *
- * @return
- *   FRSH_ERR_BAD_ARGUMENT : if the server argument does not complain with
+ * @return 0 if no error \n
+ *   FRSH_ERR_BAD_ARGUMENT : if the vres argument does not complain with
  *     the expected format or valid range, the given thread does not exist,
- *     or sched_params is NULL
+ *     or sched_params is NULL \n
  *   FRSH_ERR_SCHED_POLICY_NOT_COMPATIBLE : if the scheduling policy 
- *     in sched_params is not compatible to the server's one.
+ *     in sched_params is not compatible to the vres's one. \n
  *   FRSH_ERR_INTERNAL_ERROR : erroneous binding or malfunction of the FRSH
- *     main scheduler
+ *     main scheduler \n
  *   FRSH_ERR_UNKNOWN_APPSCHEDULED_THREAD : if the thread is attached to
- *     an application defined scheduler different than the frsh scheduler
- *   FRSH_ERR_NOT_CONTRACTED_SERVER : if the referenced server is not valid
- *   FRSH_ERR_SERVER_WORKLOAD_NOT_COMPATIBLE: if the kind of workload
- *     of the server is FRSH_OVERHEAD
+ *     an application defined scheduler different than the frsh
+ *     scheduler \n
+ *   FRSH_ERR_NOT_CONTRACTED_VRES : if the referenced vres is not
+ *     valid \n
+ *   FRSH_ERR_VRES_WORKLOAD_NOT_COMPATIBLE: if the kind of workload
+ *     of the vres is FRSH_OVERHEAD
  **/
-int frsh_bind_local_thread_to_server(frsh_server_id_t      server,
-                                     frsh_thread_id_t            thread,
-                                     frsh_sched_params_t  *sched_params);
+int frsh_thread_bind_local(frsh_vres_id_t      vres,
+                           frsh_thread_id_t            thread,
+                           frsh_sched_params_t  *sched_params);
      
 
 /**
- * frsh_set_local_thread_sched_parameters()
+ * frsh_thread_set_local_sched_params()
  *
  * This function changes the local scheduling parameters of the thread
  * to the value pointed to by sched_params. This value must be
- * compatible with the scheduling policy of the server to which the
+ * compatible with the scheduling policy of the vres to which the
  * thread is bound.
  *
- * @return
+ * @return 0 if no error \n
  *   FRSH_ERR_BAD_ARGUMENT : if the given thread does not exist,
- *     or sched_params is NULL
+ *     or sched_params is NULL \n
  *   FRSH_ERR_SCHED_POLICY_NOT_COMPATIBLE : if the thread is already bound
  *     and the scheduling policy in sched_params is not compatible to the
- *     one of the thread's server.
+ *     one of the thread's vres. \n
  *   FRSH_ERR_NOT_SCHEDULED_THREAD : if the given thread is not scheduled 
- *     under the FRSH
+ *     under FRSH \n
  *   FRSH_ERR_INTERNAL_ERROR : erroneous binding or malfunction of the FRSH
- *     main scheduler
+ *     main scheduler \n
  *   FRSH_ERR_UNKNOWN_APPSCHEDULED_THREAD : if the thread is attached to
- *     an application defined scheduler different than the frsh scheduler
- *   FRSH_ERR_NOT_CONTRACTED_SERVER : if the thread is bound and its server
+ *     an application defined scheduler different than the frsh
+ *     scheduler \n
+ *   FRSH_ERR_NOT_CONTRACTED_VRES : if the thread is bound and its vres
  *     is not valid
  **/
-int frsh_set_local_thread_sched_parameters (frsh_thread_id_t thread,
+int frsh_thread_set_local_sched_params (frsh_thread_id_t thread,
                           const frsh_sched_params_t  *sched_params);
 
 /**
- * frsh_get_local_thread_sched_parameters()
+ * frsh_thread_get_local_sched_params()
  *
  * This function stores the local scheduling parameters of the
  * specified thread in the variable pointed to by sched_params.
  *
- * @return
+ * @return 0 if no error \n
  *   FRSH_ERR_BAD_ARGUMENT : if sched_params is NULL or the thread does
- *      not exist
+ *      not exist \n
  *   FRSH_ERR_NOT_SCHEDULED_THREAD : if the given thread is not scheduled 
- *      under the FRSH
+ *      under FRSH
  **/
-int frsh_get_local_thread_sched_parameters(frsh_thread_id_t            thread,
+int frsh_thread_get_local_sched_params(frsh_thread_id_t            thread,
                                        frsh_sched_params_t  *sched_params);
 
 /*}*/
 
+FRSH_CPP_END_DECLS
+
 #endif // _FRSH_HIERARCHICAL_H_