]> rtime.felk.cvut.cz Git - frescor/fosa.git/blobdiff - src_aquosa/fosa_group_clocks.c
Allow for mutexes and condvars to be shared among different processes.
[frescor/fosa.git] / src_aquosa / fosa_group_clocks.c
index f0e8a38ed0c47e47e3e309038328c9f083734e7f..20c8832d61f53f25455a93da044176fcf5ed12d7 100644 (file)
@@ -87,7 +87,7 @@
  **/
 int fosa_thread_set_create(fosa_thread_set_id_t *set)
 {
-       return EINVAL;
+       return FOSA_EINVAL;
 }
     
 
@@ -111,7 +111,7 @@ int fosa_thread_set_create(fosa_thread_set_id_t *set)
  **/
 int fosa_thread_set_destroy(fosa_thread_set_id_t set)
 {
-       return EINVAL;
+       return FOSA_EINVAL;
 }
 
 
@@ -135,7 +135,7 @@ int fosa_thread_set_destroy(fosa_thread_set_id_t set)
  **/
 int fosa_thread_set_add(fosa_thread_set_id_t set, fosa_thread_id_t thread_id)
 {
-       return EINVAL;
+       return FOSA_EINVAL;
 }
 
 
@@ -159,7 +159,7 @@ int fosa_thread_set_add(fosa_thread_set_id_t set, fosa_thread_id_t thread_id)
 
 int fosa_thread_set_del(fosa_thread_set_id_t set, fosa_thread_id_t thread_id)
 {
-       return EINVAL;
+       return FOSA_EINVAL;
 }
 
 
@@ -184,6 +184,6 @@ int fosa_thread_set_del(fosa_thread_set_id_t set, fosa_thread_id_t thread_id)
 int fosa_get_groupcpu_clock(const fosa_thread_set_id_t set,
                            fosa_clock_id_t *clock_id)
 {
-       return EINVAL;
+       return FOSA_EINVAL;
 }