Re: [PATCH weston 1/2] os: Check for EINTR on posix_fallocate()

2017-03-24 Thread Quentin Glidic
On 3/23/17 6:42 PM, Eric Engestrom wrote: On Thursday, 2017-03-23 11:59:22 -0500, Derek Foreman wrote: posix_fallocate() can return EINTR and need to be restarted - I've hit this when running weston-terminal under gdb. Signed-off-by: Derek Foreman Both patches are:

Re: [PATCH weston 1/2] os: Check for EINTR on posix_fallocate()

2017-03-23 Thread Eric Engestrom
On Thursday, 2017-03-23 11:59:22 -0500, Derek Foreman wrote: > posix_fallocate() can return EINTR and need to be restarted - I've hit > this when running weston-terminal under gdb. > > Signed-off-by: Derek Foreman Both patches are: Reviewed-by: Eric Engestrom

[PATCH weston 1/2] os: Check for EINTR on posix_fallocate()

2017-03-23 Thread Derek Foreman
posix_fallocate() can return EINTR and need to be restarted - I've hit this when running weston-terminal under gdb. Signed-off-by: Derek Foreman --- shared/os-compatibility.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shared/os-compatibility.c