mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-10-15 13:32:16 +08:00
Add TODO for priority values
This commit is contained in:
@@ -91,6 +91,9 @@ the current Git submodule commit is this
|
|||||||
|
|
||||||
* get_cyclecount(): The implementation is a security problem.
|
* get_cyclecount(): The implementation is a security problem.
|
||||||
|
|
||||||
|
* What to do with the priority parameter present in the FreeBSD synchronization
|
||||||
|
primitives?
|
||||||
|
|
||||||
[listing]
|
[listing]
|
||||||
----
|
----
|
||||||
/* sysinit section? */
|
/* sysinit section? */
|
||||||
|
@@ -178,7 +178,7 @@ cv_broadcastpri(struct cv *cv, int pri)
|
|||||||
{
|
{
|
||||||
int rv = 0;
|
int rv = 0;
|
||||||
|
|
||||||
BSD_ASSERT(pri == 0);
|
/* FIXME: What to do with "pri"? */
|
||||||
|
|
||||||
rv = pthread_cond_broadcast(&cv->cv_id);
|
rv = pthread_cond_broadcast(&cv->cv_id);
|
||||||
BSD_ASSERT_RV(rv);
|
BSD_ASSERT_RV(rv);
|
||||||
|
Reference in New Issue
Block a user