-
-
[求助]这样的C代码如何写成arm代码
-
发表于:
2014-3-12 19:32
7610
-
#define LOG_FILE_PATH "/data/local/tmp/test.db"
void writeLog( const char * lpText )
{
int nTestFd = -1;
nTestFd = open(LOG_FILE_PATH,O_RDWR|O_APPEND);
if( nTestFd == -1 )
{
nTestFd = open(LOG_FILE_PATH,O_CREAT);
if(nTestFd == -1)
return ;
close(nTestFd);
nTestFd = open(LOG_FILE_PATH,O_RDWR|O_APPEND);
}
if(nTestFd == -1)
{
printf("@@@@@@@@@@@@open log file: failed@@@@@@@@@@@@\n");
return ;
}
write(nTestFd,lpText,strlen(lpText));
close(nTestFd);
}
[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课