vxWorks中如何使用环境变量?
在 vxWorks Real-Time 进程中,您可以将环境变量作为 main 例程的参数之一传递。
如何在内核上下文中使用环境变量?
In a vxWorks Real-Time process, you can pass environment variables as one of the parameter of the main routine.
How do you use the environment variables in the kernel context?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Vxworks环境变量支持由envLib提供。
使用 putenv("VAR=value") 设置环境变量的值。
使用 char* var = getenv("VAR") 检索值。
Vxworks environment variable support is provided by the envLib.
use putenv("VAR=value") to set the value of the environment variable.
use char* var = getenv("VAR") to retrieve the value.
直接从 VxWorks shell 调用:
替换为您的环境变量名称和您想要设置的值。
Call this directly from the VxWorks shell:
replace with your environment variable name and with the value you want to set it to.