From: sangorrin Date: Mon, 26 Nov 2007 12:04:02 +0000 (+0000) Subject: monotonic X-Git-Url: https://rtime.felk.cvut.cz/gitweb/frescor/fosa.git/commitdiff_plain/266df36acf68722673e02a9a502e29869b8c8c8c monotonic git-svn-id: http://www.frescor.org/private/svn/frescor/fosa/trunk@886 35b4ef3e-fd22-0410-ab77-dab3279adceb --- diff --git a/src_marte/fosa_mutexes_and_condvars.c b/src_marte/fosa_mutexes_and_condvars.c index 27d5e22..59acd21 100644 --- a/src_marte/fosa_mutexes_and_condvars.c +++ b/src_marte/fosa_mutexes_and_condvars.c @@ -279,6 +279,7 @@ int fosa_mutex_unlock(frsh_mutex_t *mutex) int fosa_cond_init(fosa_cond_t *cond) { // initialize condition variable with default attributes + // TODO: cond var attr timer to monotonic when supported by marte return pthread_cond_init(cond,NULL); }