Re: userland clock_gettime proof of concept

2020-05-13 Thread Mark Kettenis
> Date: Wed, 13 May 2020 17:03:01 +0300 > From: Paul Irofti > > Hi, > > By far one of the most popular and frequently used system calls is > clock_gettime(2). As a result the cost of kernel-userland transitions > out weight the actual work, thus I am proposing we make the data > available direct

Re: userland clock_gettime proof of concept

2020-05-13 Thread Robert Nagy
On 13/05/20 17:03 +0300, Paul Irofti wrote: > Hi, > > By far one of the most popular and frequently used system calls is > clock_gettime(2). As a result the cost of kernel-userland transitions > out weight the actual work, thus I am proposing we make the data > available directly from userland wit

userland clock_gettime proof of concept

2020-05-13 Thread Paul Irofti
Hi, By far one of the most popular and frequently used system calls is clock_gettime(2). As a result the cost of kernel-userland transitions out weight the actual work, thus I am proposing we make the data available directly from userland without passing through a system call. This has been a sub

<    1   2   3