]> git.cworth.org Git - apitrace/commitdiff
os_posix: Fix return value for os::execute()
authorCarl Worth <cworth@cworth.org>
Tue, 3 Apr 2012 22:58:50 +0000 (15:58 -0700)
committerJosé Fonseca <jose.r.fonseca@gmail.com>
Wed, 11 Apr 2012 13:57:55 +0000 (14:57 +0100)
Previously, this was returning the status value from waitpid directly.

That is incorrect as the actual exit status from the executed program
is likely to be in high-order bits of that status value. Instead, use
the WEXITSTATUS macro to return the actual exit status value.

Signed-off-by: José Fonseca <jose.r.fonseca@gmail.com>

No differences found