Skip to content

Commit c2fd71b

Browse files
committed
update to 10.4.6 - 7 August 2022 snapshot (LTS)
1 parent f8a9117 commit c2fd71b

File tree

1 file changed

+0
-22
lines changed

1 file changed

+0
-22
lines changed

src/queue.h

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1426,28 +1426,6 @@ BaseType_t xQueueIsQueueEmptyFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FU
14261426
BaseType_t xQueueIsQueueFullFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION;
14271427
UBaseType_t uxQueueMessagesWaitingFromISR( const QueueHandle_t xQueue ) PRIVILEGED_FUNCTION;
14281428

1429-
/*
1430-
* The functions defined above are for passing data to and from tasks. The
1431-
* functions below are the equivalents for passing data to and from
1432-
* co-routines.
1433-
*
1434-
* These functions are called from the co-routine macro implementation and
1435-
* should not be called directly from application code. Instead use the macro
1436-
* wrappers defined within croutine.h.
1437-
*/
1438-
BaseType_t xQueueCRSendFromISR( QueueHandle_t xQueue,
1439-
const void * pvItemToQueue,
1440-
BaseType_t xCoRoutinePreviouslyWoken );
1441-
BaseType_t xQueueCRReceiveFromISR( QueueHandle_t xQueue,
1442-
void * pvBuffer,
1443-
BaseType_t * pxTaskWoken );
1444-
BaseType_t xQueueCRSend( QueueHandle_t xQueue,
1445-
const void * pvItemToQueue,
1446-
TickType_t xTicksToWait );
1447-
BaseType_t xQueueCRReceive( QueueHandle_t xQueue,
1448-
void * pvBuffer,
1449-
TickType_t xTicksToWait );
1450-
14511429
/*
14521430
* For internal use only. Use xSemaphoreCreateMutex(),
14531431
* xSemaphoreCreateCounting() or xSemaphoreGetMutexHolder() instead of calling

0 commit comments

Comments
 (0)