Add TODO for priority values

This commit is contained in:
Sebastian Huber
2013-10-24 16:38:58 +02:00
parent 11b7f58408
commit e8592316b3
2 changed files with 4 additions and 1 deletions

View File

@@ -91,6 +91,9 @@ the current Git submodule commit is this
* get_cyclecount(): The implementation is a security problem.
* What to do with the priority parameter present in the FreeBSD synchronization
primitives?
[listing]
----
/* sysinit section? */

View File

@@ -178,7 +178,7 @@ cv_broadcastpri(struct cv *cv, int pri)
{
int rv = 0;
BSD_ASSERT(pri == 0);
/* FIXME: What to do with "pri"? */
rv = pthread_cond_broadcast(&cv->cv_id);
BSD_ASSERT_RV(rv);