mirror of
https://github.com/apache/nuttx.git
synced 2026-05-20 20:44:39 +08:00
Add basic tasking support for environment variables
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@291 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
+22
-1
@@ -40,6 +40,7 @@
|
||||
* Included Files
|
||||
************************************************************/
|
||||
|
||||
#include <nuttx/config.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
/************************************************************
|
||||
@@ -54,6 +55,15 @@
|
||||
#define EXIT_SUCCESS 0
|
||||
#define EXIT_FAILURE 1
|
||||
|
||||
/* The environ variable, normally 'extern char **environ;' is
|
||||
* not implemented as a function call. However, get_environ_ptr()
|
||||
* can be used in its place.
|
||||
*/
|
||||
|
||||
#ifndef CONFIG_DISABLE_ENIVRON
|
||||
# define environ get_environ_ptr()
|
||||
#endif
|
||||
|
||||
/************************************************************
|
||||
* Global Type Definitions
|
||||
************************************************************/
|
||||
@@ -70,6 +80,10 @@ struct mallinfo
|
||||
* by free (not in use) chunks.*/
|
||||
};
|
||||
|
||||
/************************************************************
|
||||
* Global Function Prototypes
|
||||
************************************************************/
|
||||
|
||||
/************************************************************
|
||||
* Global Function Prototypes
|
||||
************************************************************/
|
||||
@@ -89,7 +103,14 @@ EXTERN int rand(void);
|
||||
|
||||
/* Environment variable support */
|
||||
|
||||
EXTERN char *getenv(const char *name);
|
||||
#ifndef CONFIG_DISABLE_ENIVRON
|
||||
EXTERN FAR char **get_environ_ptr( void );
|
||||
EXTERN FAR char *getenv(const char *name);
|
||||
EXTERN int putenv(char *string);
|
||||
EXTERN int clearenv(void);
|
||||
EXTERN int setenv(const char *name, const char *value, int overwrite);
|
||||
EXTERN int unsetenv(const char *name);
|
||||
#endif
|
||||
|
||||
/* Process exit functions */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user