comparison packages/kernel/current/cdl/synch.cdl @ 191:678094f34118

Merge from eCos master repository on 2001-10-19-06:43:02-BST
author jlarmour
date Fri, 19 Oct 2001 07:02:26 +0000
parents aa8364213009
children e0c0827131d1
comparison
equal deleted inserted replaced
190:7e4874fa4fbe 191:678094f34118
181 a statically associated mutex. This option permits wait (and timed wait 181 a statically associated mutex. This option permits wait (and timed wait
182 if CYGMFN_KERNEL_SYNCH_CONDVAR_TIMED_WAIT is enabled) to provide a 182 if CYGMFN_KERNEL_SYNCH_CONDVAR_TIMED_WAIT is enabled) to provide a
183 different mutex as an argument. This makes no difference to the semantics 183 different mutex as an argument. This makes no difference to the semantics
184 the wait operation except that a different mutex will be used during it." 184 the wait operation except that a different mutex will be used during it."
185 } 185 }
186
187 cdl_option CYGIMP_KERNEL_SYNCH_MQUEUE_NOT_INLINE {
188 display "Avoid inlines in mqueue implementation"
189 default_value 0
190 description "
191 With this option disabled, the 'mqueue' message queue implementation
192 provides most of its implementation via inlines. However this can
193 adversely affect code size in application that make lots of mqueue
194 calls from different places, so enabling this option provides
195 non-inline versions to be used instead."
196 compile sync/mqueue.cxx
197 }