Re: [PATCH v3] linux-user: Implement starttime field in self stat emulation

2022-01-28 Thread Laurent Vivier
Le 28/01/2022 à 01:12, Cameron Esfahani a écrit : Instead of always returning 0, return actual starttime. v3: Fix formatting issues v2: Use clock_gettime() instead of scanning /proc/self/stat For your next contribution: move version information after the "---" to not clutter the commit messag

Re: [PATCH v3] linux-user: Implement starttime field in self stat emulation

2022-01-28 Thread Laurent Vivier
Le 28/01/2022 à 01:12, Cameron Esfahani a écrit : Instead of always returning 0, return actual starttime. v3: Fix formatting issues v2: Use clock_gettime() instead of scanning /proc/self/stat Signed-off-by: Cameron Esfahani --- linux-user/main.c| 14 ++ linux-user/qemu.h

[PATCH v3] linux-user: Implement starttime field in self stat emulation

2022-01-27 Thread Cameron Esfahani
Instead of always returning 0, return actual starttime. v3: Fix formatting issues v2: Use clock_gettime() instead of scanning /proc/self/stat Signed-off-by: Cameron Esfahani --- linux-user/main.c| 14 ++ linux-user/qemu.h| 3 +++ linux-user/syscall.c | 3 +++ 3 files chang