mirror of
https://github.com/apache/nuttx.git
synced 2026-09-20 21:06:58 +08:00
Fix numerous typos in configuration variable names. Tracked down by Alan Carvalho de Assis
This commit is contained in:
+1
-1
@@ -56,7 +56,7 @@ namespace std
|
||||
|
||||
// Environment variable support
|
||||
|
||||
#ifndef CONFIG_DISABLE_ENIVRON
|
||||
#ifndef CONFIG_DISABLE_ENVIRON
|
||||
using ::get_environ_ptr;
|
||||
using ::getenv;
|
||||
using ::putenv;
|
||||
|
||||
@@ -217,7 +217,7 @@ void net_initialize(void);
|
||||
|
||||
/****************************************************************************
|
||||
* Critical section management. The NuttX configuration setting
|
||||
* CONFIG_NET_NOINT indicates that uIP not called from the interrupt level.
|
||||
* CONFIG_NET_NOINTS indicates that uIP not called from the interrupt level.
|
||||
* If CONFIG_NET_NOINTS is defined, then these will map to semaphore
|
||||
* controls. Otherwise, it assumed that uIP will be called from interrupt
|
||||
* level handling and these will map to interrupt enable/disable controls.
|
||||
|
||||
+2
-2
@@ -76,7 +76,7 @@
|
||||
* can be used in its place.
|
||||
*/
|
||||
|
||||
#ifndef CONFIG_DISABLE_ENIVRON
|
||||
#ifndef CONFIG_DISABLE_ENVIRON
|
||||
# define environ get_environ_ptr()
|
||||
#endif
|
||||
|
||||
@@ -120,7 +120,7 @@ int rand(void);
|
||||
|
||||
/* Environment variable support */
|
||||
|
||||
#ifndef CONFIG_DISABLE_ENIVRON
|
||||
#ifndef CONFIG_DISABLE_ENVIRON
|
||||
FAR char **get_environ_ptr( void );
|
||||
FAR char *getenv(FAR const char *name);
|
||||
int putenv(FAR const char *string);
|
||||
|
||||
@@ -362,7 +362,7 @@
|
||||
# define SYS_pthread_setspecific (__SYS_pthread+26)
|
||||
# define SYS_pthread_yield (__SYS_pthread+27)
|
||||
|
||||
# ifndef CONFIG_DISABLE_SIGNAL
|
||||
# ifndef CONFIG_DISABLE_SIGNALS
|
||||
# define SYS_pthread_cond_timedwait (__SYS_pthread+28)
|
||||
# define SYS_pthread_kill (__SYS_pthread+29)
|
||||
# define SYS_pthread_sigmask (__SYS_pthread+30)
|
||||
|
||||
Reference in New Issue
Block a user