Lines Matching full:available
111 #define osFeature_MainThread 1 ///< main thread 1=main can be thread, 0=not available
112 #define osFeature_Pool 1 ///< Memory Pools: 1=available, 0=not available
113 #define osFeature_MailQ 1 ///< Mail Queues: 1=available, 0=not available
114 #define osFeature_MessageQ 1 ///< Message Queues: 1=available, 0=not available
115 #define osFeature_Signals 8 ///< maximum number of Signal Flags available per thread
117 #define osFeature_Wait 1 ///< osWait function: 1=available, 0=not available
156 …orResource = 0x81, ///< resource not available: a specified resource was not availa…
157 …Resource = 0xC1, ///< resource not available within given time: a specified resource was n…
376 #if (defined (osFeature_Wait) && (osFeature_Wait != 0)) // Generic Wait available
384 #endif // Generic Wait available
488 /// Wait until a Mutex becomes available
509 #if (defined (osFeature_Semaphore) && (osFeature_Semaphore != 0)) // Semaphore available
532 /// \param[in] count number of available resources.
537 /// Wait until a Semaphore token becomes available
540 /// \return number of available tokens, or -1 in case of incorrect parameters.
550 #endif // Semaphore available
554 #if (defined (osFeature_Pool) && (osFeature_Pool != 0)) // Memory Pool Management available
586 /// \return address of the allocated memory block or NULL in case of no memory available.
592 /// \return address of the allocated memory block or NULL in case of no memory available.
603 #endif // Memory Pool Management available
608 #if (defined (osFeature_MessageQ) && (osFeature_MessageQ != 0)) // Message Queues available
654 #endif // Message Queues available
659 #if (defined (osFeature_MailQ) && (osFeature_MailQ != 0)) // Mail Queues available
725 #endif // Mail Queues available