]> git.sur5r.net Git - freertos/commitdiff
Correct use of xStreamBufferRead() to xStreamBufferReceive() in code comments - no...
authorrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 30 Dec 2019 20:00:49 +0000 (20:00 +0000)
committerrtel <rtel@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 30 Dec 2019 20:00:49 +0000 (20:00 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@2778 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

FreeRTOS/Source/include/stream_buffer.h

index eccc817f0f363c6269e54b36ec11dff40d2ffab2..72fa2d33a789e50a87a95df35ac94034ea7f15e9 100644 (file)
@@ -43,7 +43,7 @@
  * (such as xStreamBufferSend()) inside a critical section and set the send\r
  * block time to 0.  Likewise, if there are to be multiple different readers\r
  * then the application writer must place each call to a reading API function\r
- * (such as xStreamBufferRead()) inside a critical section section and set the\r
+ * (such as xStreamBufferReceive()) inside a critical section section and set the\r
  * receive block time to 0.\r
  *\r
  */\r
@@ -241,7 +241,7 @@ size_t xStreamBufferSend( StreamBufferHandle_t xStreamBuffer,
  * (such as xStreamBufferSend()) inside a critical section and set the send\r
  * block time to 0.  Likewise, if there are to be multiple different readers\r
  * then the application writer must place each call to a reading API function\r
- * (such as xStreamBufferRead()) inside a critical section and set the receive\r
+ * (such as xStreamBufferReceive()) inside a critical section and set the receive\r
  * block time to 0.\r
  *\r
  * Use xStreamBufferSend() to write to a stream buffer from a task.  Use\r
@@ -339,7 +339,7 @@ size_t xStreamBufferSendFromISR( StreamBufferHandle_t xStreamBuffer,
  * (such as xStreamBufferSend()) inside a critical section and set the send\r
  * block time to 0.  Likewise, if there are to be multiple different readers\r
  * then the application writer must place each call to a reading API function\r
- * (such as xStreamBufferRead()) inside a critical section and set the receive\r
+ * (such as xStreamBufferReceive()) inside a critical section and set the receive\r
  * block time to 0.\r
  *\r
  * Use xStreamBufferSend() to write to a stream buffer from a task.  Use\r
@@ -439,7 +439,7 @@ size_t xStreamBufferReceive( StreamBufferHandle_t xStreamBuffer,
  * (such as xStreamBufferSend()) inside a critical section and set the send\r
  * block time to 0.  Likewise, if there are to be multiple different readers\r
  * then the application writer must place each call to a reading API function\r
- * (such as xStreamBufferRead()) inside a critical section and set the receive\r
+ * (such as xStreamBufferReceive()) inside a critical section and set the receive\r
  * block time to 0.\r
  *\r
  * Use xStreamBufferReceive() to read from a stream buffer from a task.  Use\r