VxWorks动态加载.out文件_虚拟存储器_新浪博客

//Device.cpp
#include "other.h"
#ifdef __cplusplus
extern "C" {
#endif
 int initDevice(char *arg);
#ifdef __cplusplus
}
#endif

int initDevice(char *arg)

{
 printf("%s\n", arg);
}

生成的.out文件需对其使用如下命令
 chmod.exe a+rx Device.out

int dynLoadOut( )
{
 char szDeviceOutPath[128] = "/ata0a/App/Device.out";
 for (int j = 0; j < 3; j++)
 {
  int fdX = open (szDeviceOutPath, O_RDONLY, 0644);
  
  if (fdX == ERROR )
  {
   printf("openfile error:%s\n", szDeviceOutPath);
   taskDelay(1000);
   continue;
  }
  else
  
   MODULE_ID modID = loadModule (fdX, LOAD_ALL_SYMBOLS);
   close (fdX);

   if (modID == 0)
   {
    printf("loadModule error\n");
    return 1;
   }
   break;
  }
 }
 printf("loadModule ok\n");

 extern SYMTAB_ID sysSymTbl;
 FUNCPTR deviceEntry = 0;
 SYM_TYPE type;
 STATUS stus = symFindByName(sysSymTbl, "initDevice", (char**)&deviceEntry, &type);
 if (stus == ERROR)
 {
  printf("symFindByName error\n");
  return 1;
 }
 else
 {
  printf("deviceEntry = 0x%x, type = %d\n", (int)deviceEntry, (int)type);
  char szPara[128] = "have a test!"
  (*deviceEntry)(szPara);
 }
}

 

已投稿到:
郑重声明:资讯 【VxWorks动态加载.out文件_虚拟存储器_新浪博客】由 发布,版权归原作者及其所在单位,其原创性以及文中陈述文字和内容未经(企业库qiyeku.com)证实,请读者仅作参考,并请自行核实相关内容。若本文有侵犯到您的版权, 请你提供相关证明及申请并与我们联系(qiyeku # qq.com)或【在线投诉】,我们审核后将会尽快处理。
—— 相关资讯 ——