graphene icon indicating copy to clipboard operation
graphene copied to clipboard

Add syscalls for process times

Open dimakuv opened this issue 5 years ago • 0 comments

Below APIs are used by the openSSL speed test:

clock_t now = times(&rus);
sysconf(_SC_CLK_TCK);
getrusage(RUSAGE_SELF, &rus);

See https://github.com/openssl/openssl/blob/6514dee7264d30be1ab9ab07f9798071184e7b7a/apps/lib/apps.c#L2246

We need to implement these APIs/syscalls in Graphene.

dimakuv avatar Oct 20 '20 14:10 dimakuv