Skip to content

Commit 495345c

Browse files
authored
Fix bsd_errno definition in chapter2.adoc (#15)
Added a missing semicolon to the definition of bsd_errno in TX_THREAD_EXTENSION_3.
1 parent 8266ced commit 495345c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rtos-docs/netx-duo/netx-duo-bsd/chapter2.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ In order to use NetX Duo BSD the entire distribution mentioned previously should
4444
The ThreadX library must define `bsd_errno` in the thread local storage. We recommend the following procedure:
4545
4646
. In _tx_port.h_, set one of the TX_THREAD_EXTENSION macros as follows:
47-
** `#define TX_THREAD_EXTENSION_3 int bsd_errno`
47+
** `#define TX_THREAD_EXTENSION_3 int bsd_errno;`
4848
. Rebuild the ThreadX library.
4949
5050
NOTE: If TX_THREAD_EXTENSION_3 is already used, the user is free to use one of the other TX_THREAD_EXTENSION macros.

0 commit comments

Comments
 (0)