popen on android NDK

前端 未结 2 923
南笙
南笙 2020-12-18 11:00

Is popen not supported by android NDK?

I read this page and wondering if this is true

The same is possible with POSIX popen() but it is not cu

2条回答
  •  天命终不由人
    2020-12-18 11:30

    I think it depends on what version of the NDK you are using

    Also looking in the gingerbread source tree for bionic I did find an implementation of popen. The implementation might not be 100% posix of libc correct, but it is at least functional to some degree.

    Using NDK v6, the following example compiles without any problems, and it runs on my android device.

    #include 
    #include 
    int main()
    {
     FILE *fpipe;
     char *command="/system/bin/ps";
     char line[256];
     if ( !(fpipe = (FILE*)popen(command,"r")) ) exit(1)
     while ( fgets( line, sizeof line, fpipe))
     {
       puts(line);
     }
     pclose(fpipe);
    }
    

    UPDATE: Seems than popen on pre ICS versions used vfork() instead of fork(), and those vfork() are known to cause stack corruption.

    So from ICS onward popen should be save to use, but on earlier android versions it is available but verry buggy.

提交回复
热议问题