File tree 1 file changed +5
-0
lines changed
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,10 @@ typedef void (* TaskFunction_t)( void * );
44
44
45
45
#define pdFALSE ( ( BaseType_t ) 0 )
46
46
#define pdTRUE ( ( BaseType_t ) 1 )
47
+ #define pdFALSE_SIGNED ( ( BaseType_t ) 0 )
48
+ #define pdTRUE_SIGNED ( ( BaseType_t ) 1 )
49
+ #define pdFALSE_UNSIGNED ( ( UBaseType_t ) 0 )
50
+ #define pdTRUE_UNSIGNED ( ( UBaseType_t ) 1 )
47
51
48
52
#define pdPASS ( pdTRUE )
49
53
#define pdFAIL ( pdFALSE )
@@ -100,6 +104,7 @@ typedef void (* TaskFunction_t)( void * );
100
104
#define pdFREERTOS_ERRNO_ENOTEMPTY 90 /* Directory not empty */
101
105
#define pdFREERTOS_ERRNO_ENAMETOOLONG 91 /* File or path name too long */
102
106
#define pdFREERTOS_ERRNO_EOPNOTSUPP 95 /* Operation not supported on transport endpoint */
107
+ #define pdFREERTOS_ERRNO_EAFNOSUPPORT 97 /* Address family not supported by protocol */
103
108
#define pdFREERTOS_ERRNO_ENOBUFS 105 /* No buffer space available */
104
109
#define pdFREERTOS_ERRNO_ENOPROTOOPT 109 /* Protocol not available */
105
110
#define pdFREERTOS_ERRNO_EADDRINUSE 112 /* Address already in use */
You can’t perform that action at this time.
0 commit comments