]> rtime.felk.cvut.cz Git - frescor/fosa.git/blobdiff - src_marte/fosa_threads_and_signals.c
Migrating FOSA trunk to d-ac2v2. Phase 1 moving FRSH-FOSA to FOSA
[frescor/fosa.git] / src_marte / fosa_threads_and_signals.c
index 39af09b952cb12c5836b2ca775eb99e2934eb5ad..bb35efffc77d4cb46369f3df723cab18f58ab0fc 100644 (file)
@@ -137,7 +137,7 @@ void init_keys() {
  * Compare two thread identifiers to determine if they refer to the 
  * same thread
  **/
-bool fosa_thread_equal(frsh_thread_id_t t1, frsh_thread_id_t t2)
+bool fosa_thread_equal(fosa_thread_id_t t1, fosa_thread_id_t t2)
 {
   return pthread_equal(t1,t2);
 }
@@ -148,11 +148,103 @@ bool fosa_thread_equal(frsh_thread_id_t t1, frsh_thread_id_t t2)
  *
  * Return the thread id of the calling thread
  **/
-frsh_thread_id_t fosa_thread_self()
+fosa_thread_id_t fosa_thread_self()
 {
   return pthread_self();
 }
 
+/*************************
+ * Thread attributes
+ *************************/ 
+
+/**
+ * fosa_thread_attr_init()
+ *
+ * Initialize a thread attributes object
+ *
+ * This function initializes the object pointed to by attr to all 
+ * the default values defined by FRSH
+ *
+ * @return 0 if successful; otherwise it returns \n
+ *   FOSA_ENOMEM: insufficient memory exists to initialize the thread 
+ *           attributes object
+ **/
+int fosa_thread_attr_init(fosa_thread_attr_t *attr)
+{
+  int ret_value;
+
+  ret_value=pthread_attr_init(attr);
+  if (ret_value==0) {
+    // set the default values
+
+    // detachstate = detached thread (no join operation allowed)
+    CHK(pthread_attr_setdetachstate(attr,PTHREAD_CREATE_DETACHED));
+
+    // inheritsched = explicit, so that we can explicitly set the attributes
+    CHK(pthread_attr_setinheritsched(attr,PTHREAD_EXPLICIT_SCHED));
+
+    // schedpolicy = fixed priorities
+    CHK(pthread_attr_setschedpolicy(attr,SCHED_FIFO));
+
+    // detachstate = detached thread (no join operation allowed)
+    CHK(pthread_attr_setdetachstate(attr,PTHREAD_CREATE_DETACHED));
+
+  }
+  return ret_value;
+}
+
+/**
+ * fosa_thread_attr_destroy()
+ *
+ * Destroy a thread attributes object
+ *
+ * This function is used to destroy the thread attributes object,
+ * pointed to by attr, and deallocate any system resources allocated for it
+ * 
+ * Returns 0
+ */
+int fosa_thread_attr_destroy(fosa_thread_attr_t *attr)
+{
+  return pthread_attr_destroy(attr);
+}
+
+/**
+ * fosa_thread_attr_set_stacksize()
+ *
+ * Set the thread minimum stack size in a thread attributes object
+ *
+ * This function sets the minimum stack size of the thread attributes
+ * object attr to the value given by stacksize, in bytes. This
+ * function has no runtime effect on the stack size, except when the
+ * attributes object is used to create a thread, when it will be
+ * created with the specified minimum stack size
+ * 
+ * @return 0 if successful, or the following error code:
+ *    FOSA_EINVAL: the specified stacksize  value is not supported in
+ *            this implementation
+ */
+int fosa_thread_attr_set_stacksize
+     (fosa_thread_attr_t *attr, size_t stacksize)
+{
+  return pthread_attr_setstacksize(attr,stacksize);
+}
+
+/**
+ * fosa_thread_attr_get_stacksize()
+ *
+ * Get the thread minimum stack size from a thread attributes object
+ *
+ * This function sets the variable pointed to by stacksize to the
+ * minimum stack size stored in the thread attributes object attr.
+ * 
+ * @return 0
+ */
+int fosa_thread_attr_get_stacksize
+      (const fosa_thread_attr_t *attr, size_t *stacksize)
+{
+  return pthread_attr_getstacksize(attr,stacksize);
+}
+
 
 /*************************
  * Thread creation and termination
@@ -184,8 +276,8 @@ frsh_thread_id_t fosa_thread_self()
  *
  **/
  int fosa_thread_create
-    (frsh_thread_id_t *tid, const frsh_thread_attr_t *attr, 
-     frsh_thread_code_t code, void * arg)
+    (fosa_thread_id_t *tid, const fosa_thread_attr_t *attr, 
+     fosa_thread_code_t code, void * arg)
 {
   return pthread_create(tid,attr,code,arg);
 }
@@ -226,6 +318,7 @@ int fosa_key_create(int *key)
   int i,ret_value;
   bool found=false;
 
+  ret_value = 0;
   // initialize the keys data structure if needed
   CHK(pthread_once(&keys_initialized, init_keys));
 
@@ -296,7 +389,7 @@ int fosa_key_destroy(int key)
  * implementation and dependant applications
  **/
  int fosa_thread_set_specific_data
-       (int key, frsh_thread_id_t tid, const void * value)
+       (int key, fosa_thread_id_t tid, const void * value)
 {
   return pthread_setspecific_for(key_list[key],tid,value);
 }
@@ -316,7 +409,7 @@ int fosa_key_destroy(int key)
  * notify it to the system console and then terminate the FRSH
  * implementation and dependant applications
  **/
-int fosa_thread_get_specific_data(int key, frsh_thread_id_t tid, 
+int fosa_thread_get_specific_data(int key, fosa_thread_id_t tid, 
                                   void ** value)
 {
   return pthread_getspecific_from(key_list[key],tid,value);
@@ -373,7 +466,7 @@ int fosa_get_priority_min()
  * notify it to the system console and then terminate the FRSH
  * implementation and dependant applications
  **/
-int fosa_thread_attr_set_prio(frsh_thread_attr_t *attr, int prio)
+int fosa_thread_attr_set_prio(fosa_thread_attr_t *attr, int prio)
 {
   struct sched_param param;
 
@@ -392,7 +485,7 @@ int fosa_thread_attr_set_prio(frsh_thread_attr_t *attr, int prio)
  * Returns 0
  **/
 int fosa_thread_attr_get_prio
-          (const frsh_thread_attr_t *attr, int *prio)
+          (const fosa_thread_attr_t *attr, int *prio)
 {
   struct sched_param param;
   int ret_value;
@@ -420,7 +513,7 @@ int fosa_thread_attr_get_prio
  * notify it to the system console and then terminate the FRSH
  * implementation and dependant applications
  **/
-int fosa_thread_set_prio(frsh_thread_id_t tid, int prio)
+int fosa_thread_set_prio(fosa_thread_id_t tid, int prio)
 {
   struct sched_param param;
   int policy, ret_value;
@@ -442,7 +535,7 @@ int fosa_thread_set_prio(frsh_thread_id_t tid, int prio)
  * 
  * Returns 0
  **/
-int fosa_thread_get_prio (frsh_thread_id_t tid, int *prio)
+int fosa_thread_get_prio (fosa_thread_id_t tid, int *prio)
 {
   struct sched_param param;
   int policy, ret_value;
@@ -464,7 +557,7 @@ int fosa_thread_get_prio (frsh_thread_id_t tid, int *prio)
  * synchronously wait. Signals carry an associated piece of
  * information (an integer or a pointer) and are queued until they are
  * accepted.  Signals are identified by an integer signal number (of
- * the type frsh_signal_t) in the range FOSA_SIGNAL_MIN,
+ * the type fosa_signal_t) in the range FOSA_SIGNAL_MIN,
  * FOSA_SIGNAL_MAX.  This range is required to have at least <tbd>
  * values.
  *******************************************************************/
@@ -487,7 +580,7 @@ int fosa_thread_get_prio (frsh_thread_id_t tid, int *prio)
  * notify it to the system console and then terminate the FRSH
  * implementation and dependant applications
  **/
-int fosa_set_accepted_signals(frsh_signal_t set[], int size)
+int fosa_set_accepted_signals(fosa_signal_t set[], int size)
 {
   sigset_t signalset;
   int i;
@@ -541,8 +634,8 @@ int fosa_set_accepted_signals(frsh_signal_t set[], int size)
  * implementation and dependant applications
  **/
 int fosa_signal_queue
-       (frsh_signal_t signal, frsh_signal_info_t info,
-        frsh_thread_id_t receiver)
+       (fosa_signal_t signal, fosa_signal_info_t info,
+        fosa_thread_id_t receiver)
 {
   // note: in MaRTE OS the signal is sent to any interested thread
   pid_t pid=1; // dummy value; the pid is ignored in MaRTE OS
@@ -583,8 +676,8 @@ int fosa_signal_queue
  * implementation and dependant applications
  **/
 int fosa_signal_wait
-      (frsh_signal_t set[], int size, frsh_signal_t *signal_received, 
-       frsh_signal_info_t *info)
+      (fosa_signal_t set[], int size, fosa_signal_t *signal_received, 
+       fosa_signal_info_t *info)
 {
   int err,i;
   sigset_t signalset;
@@ -598,7 +691,7 @@ int fosa_signal_wait
   err=sigwaitinfo(&signalset,&siginfo);
   if (err!=-1) {
     *signal_received=siginfo.si_signo;
-    *info=*((frsh_signal_info_t *)(&siginfo.si_value));
+    *info=*((fosa_signal_info_t *)(&siginfo.si_value));
     return 0;
   } else {
     return errno;
@@ -625,8 +718,8 @@ int fosa_signal_wait
  * FRSH implementation and dependant applications
  **/
  int fosa_signal_timedwait
-      (frsh_signal_t set[], int size, frsh_signal_t *signal_received, 
-       frsh_signal_info_t *info, const struct timespec *timeout)
+      (fosa_signal_t set[], int size, fosa_signal_t *signal_received, 
+       fosa_signal_info_t *info, const struct timespec *timeout)
 {
 
   // the implementation of sigtimedwait is not yet available in MaRTE OS