Merge change 7697

* changes:
  Pretend to be root by intercepting getuid() in the simulator, so we don't have to litter the framework with if(Process.supportsProcesses()).
This commit is contained in:
Android (Google) Code Review
2009-07-17 11:05:12 -07:00

View File

@@ -823,6 +823,16 @@ int setpriority(__priority_which_t which, id_t who, int what)
return 0;
}
/*
* Pretend to be running as root, so the Android framework
* doesn't complain about permission problems all over the
* place.
*/
uid_t getuid(void)
{
return 0;
}
#if 0
/*
* Create a pipe. (Only needed for debugging an fd leak.)